Re: [PATCH] stat nlink resolution fix

From: Jörn Engel
Date: Tue Jun 15 2004 - 09:58:44 EST


On Mon, 14 June 2004 22:55:07 -0700, Chris Wedgwood wrote:
>
> Some filesystems can get overflows when their link-count exceeds
> 65534. This patch increases the kernels internal resolution for this
> and also has a check for the old-system call paths to return and error
> (-EOVERFLOW) as required (as suggested by Al Viro).
>
> Signed-off-by: Chris Wedgwood <cw@xxxxxxxx>
>
> diff -Nru a/include/linux/stat.h b/include/linux/stat.h
> --- a/include/linux/stat.h 2004-06-14 17:40:21 -07:00
> +++ b/include/linux/stat.h 2004-06-14 17:40:21 -07:00
> @@ -60,7 +60,7 @@
> unsigned long ino;
> dev_t dev;
> umode_t mode;
> - nlink_t nlink;
> + unsigned int nlink;
> uid_t uid;
> gid_t gid;
> dev_t rdev;

Just for me to get a clue, what would break if the definition of
nlink_t changed?

Jörn

--
Fancy algorithms are buggier than simple ones, and they're much harder
to implement. Use simple algorithms as well as simple data structures.
-- Rob Pike
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/