Re: some options in src.conf has no effect (RELENG_8)

2009-12-08 Thread Gonzalo Nemmi
On Tue, Dec 8, 2009 at 5:26 PM,   wrote:
> Hi all.
>
> I've found out that some options in src.conf has no effect.
>
> Here is my src.conf file:
> --CUT--
> WITHOUT_ASSERT_DEBUG="YES"
> WITHOUT_ATM="YES"
> WITHOUT_CTM="YES"
> WITHOUT_CVS="YES"
> WITHOUT_FREEBSD_UPDATE="YES"
> WITHOUT_GPIB="YES"
> WITH_IDEA="YES"
> WITHOUT_IPFILTER="YES"
> WITHOUT_IPFW="YES"
> WITHOUT_IPX="YES"
> WITHOUT_LPR="YES"
> WITHOUT_PORTSNAP="YES"
> WITHOUT_RCS="YES"
> WITHOUT_ROUTED="YES"
> --CUT--
>
> And there are options that have no effect:
> WITHOUT_CTM
> WITHOUT_CVS
> WITHOUT_FREEBSD_UPDATE
> WITHOUT_IPFW
> WITHOUT_PORTSNAP
> WITHOUT_RCS
> WITHOUT_ROUTED
>
>
> I've done "make delete-old" and "make delete-old-libs" during upgrade.
>
> Can somebody comment this?

You'll find some interesting comments about that in here:
http://lists.freebsd.org/pipermail/freebsd-current/2009-November/013561.html

Best Regards
Gonzalo
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: Broadcom BCM5784M Support ?

2009-08-27 Thread Gonzalo Nemmi
On Thu, Aug 27, 2009 at 9:18 AM, Kurt Jaeger  wrote:

> Hello,
>
> > > Can anyone point me to patches to support this broadcom device on
> > > fbsd 7.2 ?
> > >
> > > no...@pci0:3:0:0:   class=0x02 card=0x11651734
> > > chip=0x169814e4 rev=0x10 hdr=0x00 vendor = 'Broadcom Corporation'
> > > class  = network
> > > subclass   = ethernet
> > >
> > > What would be required to get this going ?
> > >
> > > Thanks!
> >
> > Hope this helps. Please let us know if it did.
> >
> > http://forums.freebsd.org/showthread.php?t=6081
>
> Looks very fine, thank you very much!
>

Anytime dude !

Best!
Gonzalo
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: Broadcom BCM5784M Support ?

2009-08-27 Thread Gonzalo Nemmi
On Thursday 30 July 2009 5:05:05 pm Kurt Jaeger wrote:
> Hi!
>
> Can anyone point me to patches to support this broadcom device on
> fbsd 7.2 ?
>
> no...@pci0:3:0:0:   class=0x02 card=0x11651734
> chip=0x169814e4 rev=0x10 hdr=0x00 vendor = 'Broadcom Corporation'
> class  = network
> subclass   = ethernet
>
> What would be required to get this going ?
>
> Thanks!

Hope this helps. Please let us know if it did.

http://forums.freebsd.org/showthread.php?t=6081

Best Regards
-- 
Blessings
Gonzalo Nemmi
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: ext2 inode size patch - RE: PR kern/124621

2008-12-04 Thread Gonzalo Nemmi
On Wednesday 03 December 2008 8:53:43 pm Josh Carroll wrote:
> > Ok, I describe my concern once more. I do not object against the checking
> > of the inode size. But, if inode size is changed, then some data is added
> > to the inode, that could (and usually does, otherwise why extend it ?)
> > change intrerpetation of the inode. Thus, we need a verification of the
> > fact that simply ignoring added fields does not damage filesystem or
> > cause user data corruption. Verification != testing.
>
> Let me take another crack at explaining why I think this patch is not
> dangerous.
>
> The inode size is determined by reading the following member:
>
> __u16   s_inode_size;
>
> of the ext2_super_block structure.
>
> I took a look at the Linux 2.6.27.7 kernel source, and indeed they do
> something very similar if not the same:
>
> #define EXT2_INODE_SIZE(s)  (EXT2_SB(s)->s_inode_size)
>
> If you compare to what I did:
>
> #define EXT2_INODE_SIZE(s)  ((s)->u.ext2_sb.s_inode_size)
>
> This is really the same thing, since EXT2_SB is defined (in the Linux
> kernel src as):
>
> #ifdef __KERNEL__
> #include 
> static inline struct ext2_sb_info *EXT2_SB(struct super_block *sb)
> {
> return sb->s_fs_info;
> }
>
> And struct ext2_sb_info has the following member:
>
> int s_inode_size;
>
> Essentially, the changes I made simply query the existing information
> from the filesystem, which is what the Linux kernel does as well.
>
> The inode size, blocks per group, etc are all defined at filesystem
> creation time by mke2fs and it ensures the sanity of the relationship
> between the inodes/blocks/block groups.
>
> The first diagram here:
>
> http://sunsite.nus.sg/LDP/LDP/tlk/node95.html
>
> Makes it clear that as long as the number of inodes per block and the
> blocks per group is is sane during fs creation, looking up the inode
> size as my patch does is fine, since the creation of the filesystem is
> ensures a correct by construction situation.  We're simply reading the
> size of the inode based on the filesystem.
>
> I hope this is sufficient to convince some further thought about
> committing this.
>
> For those interested in the relevant Linux kernel source, you can have
> a look at line 105 of include/linux/ext2_fs.h from the linux-2.6.27.7
> kernel source.
>
> Thanks,
> Josh

Could you please point me to your patch and an explanation on how to apply it 
and test it?

I've been following your las emails referencing it ( on @questions and 
@hackers or current i think it was ... ) and I'd like to give it a spin in 
here ...

I've followed the "can't mount ext2/3" problem for a time (since I have that 
problem) and would like to know to what extent for patch solves the problem.

Here are some of the references:

mounting linux partitions
Fri May 9 18:05:26 UTC 2008
http://lists.freebsd.org/pipermail/freebsd-questions/2008-May/174588.html

bad file descriptor when mounting an ext2fs.
Tue Jun 10 11:08:46 UTC 2008
http://lists.freebsd.org/pipermail/freebsd-questions/2008-June/176506.html

mounting ext2fs partitions on FBSD7 ( third time a charm?)
Fri Jul 4 23:33:53 UTC 2008
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/178219.html

My case:

[EMAIL PROTECTED]:~ # ls -l /dev/ad4s
ad4s1%  ad4s2%  ad4s3%  ad4s3a% ad4s3b% ad4s3c% ad4s3d% ad4s3e% ad4s3f% ad4s4%  
ad4s5%  ad4s6%  ad4s7%  ad4s8%
[EMAIL PROTECTED]:~ # ls -l /dev/ad4s
[EMAIL PROTECTED]:~ # tune2fs -l /dev/ad4s1 | grep "Inode size"
Inode size:   256
[EMAIL PROTECTED]:~ # tune2fs -l /dev/ad4s6 | grep "Inode size"
Inode size:   256
[EMAIL PROTECTED]:~ # tune2fs -l /dev/ad4s7 | grep "Inode size"
Inode size:   256
[EMAIL PROTECTED]:~ # tune2fs -l /dev/ad4s8 | grep "Inode size"
Inode size:   256
[EMAIL PROTECTED]:~ # tune2fs -l /dev/ad4s9 | grep "Inode size"

BTW: I'm willing to run any tests you need me too, even if they imply a 
serious risk of loosing data on the 256 inode partitions.

Regards
-- 
Blessings
Gonzalo Nemmi
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Would anybody port DragonFlyBSD's HAMMER fs to FreeBSD?

2008-09-30 Thread Gonzalo Nemmi
On Wed, Oct 1, 2008 at 1:53 AM, lhmwzy <[EMAIL PROTECTED]> wrote:

> I think port HAMMER fs to FreeBSD is easier than any other fs like ZFS.
> Would anybody do this?
> I do not have the skill or I will do this.:)
> links: http://www.dragonflybsd.org/hammer/index.shtml
> http://www.dragonflybsd.org/hammer/hammer.pdf
>

I've been wanting to ask the same question since July 6, 2008 ...
http://leaf.dragonflybsd.org/mailarchive/kernel/2008-07/msg00015.html
... specially in the light of the all the effort that went (and goes on) on
ZFS ...

I, for once, don't care at all about ZFS, but would really like to see
HAMMER ported over to FreeBSD (just as much as I'd like to see sysctl
hw.sensors framework or so called framework... whereas it comes from
Murenin's code or from code with a more "FreeBSD feel to it" .. or from a
better implementation or solution or unameit). But I'm still too new to
FreeBSD ...
Would really like to see some resources redirected in HAMMER fs direction
though ...

--
Blessings
Gonzalo Nemmi
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "[EMAIL PROTECTED]"