Re: svn commit: r269523 - head/sys/fs/ext2fs

2014-08-04 Thread Pedro Giffuni
Il giorno 04/ago/2014, alle ore 14:01, Bruce Evans ha scritto: > On Mon, 4 Aug 2014, Pedro F. Giffuni wrote: > >> Log: >> set EXT2_LINK_MAX to LINK_MAX >> >> In linux EXT4_LINK_MAX is now 64000. We can't really do that >> since i_nlink and va_nlink are signed so setting higher values >> is l

Re: svn commit: r269523 - head/sys/fs/ext2fs

2014-08-04 Thread Bruce Evans
On Mon, 4 Aug 2014, Pedro F. Giffuni wrote: Log: set EXT2_LINK_MAX to LINK_MAX In linux EXT4_LINK_MAX is now 64000. We can't really do that since i_nlink and va_nlink are signed so setting higher values is likely to cause trouble. Hmm, va_nlink doesn't use nlink_t and is inconsistent wit

svn commit: r269523 - head/sys/fs/ext2fs

2014-08-04 Thread Pedro F . Giffuni
Author: pfg Date: Mon Aug 4 16:41:06 2014 New Revision: 269523 URL: http://svnweb.freebsd.org/changeset/base/269523 Log: set EXT2_LINK_MAX to LINK_MAX In linux EXT4_LINK_MAX is now 64000. We can't really do that since i_nlink and va_nlink are signed so setting higher values is likely