fs/9p: remove erroneous nlink init from legacy stat2inode
authorEric Van Hensbergen <ericvh@kernel.org>
Tue, 9 Apr 2024 23:53:00 +0000 (23:53 +0000)
committerEric Van Hensbergen <ericvh@kernel.org>
Tue, 9 Apr 2024 23:53:00 +0000 (23:53 +0000)
commit6e45a30fe5e7cf5d42ac07262a3d97644f23dc68
treef56306df9cd14bcda1eb4dd1c8b70830c8cd1b53
parent7a84602297d36617dbdadeba55a2567031e5165b
fs/9p: remove erroneous nlink init from legacy stat2inode

In 9p2000 legacy mode, stat2inode initializes nlink to 1,
which is redundant with what alloc_inode should have already set.
9p2000.u overrides this with extensions if present in the stat
structure, and 9p2000.L incorporates nlink into its stat structure.

At the very least this probably messes with directory nlink
accounting in legacy mode.

Signed-off-by: Eric Van Hensbergen <ericvh@kernel.org>
fs/9p/vfs_inode.c