Eliminate 2 kernel-doc warnings by using the correct struct member name: include/linux/fs.h:1071: warning: Function parameter or struct member 'f_ref' not described in 'file' include/linux/fs.h:1071: warning: Excess struct member 'f_count' description in 'file' Fixes: c0390d541128 ("fs: pack struct file") Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Cc: Alexander Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Christian Brauner <brauner@xxxxxxxxxx> --- L: linux-fsdevel@xxxxxxxxxxxxxxx L: patches@xxxxxxxxxxxxxxx include/linux/fs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20241016.orig/include/linux/fs.h +++ linux-next-20241016/include/linux/fs.h @@ -1006,7 +1006,7 @@ static inline int ra_has_index(struct fi /** * struct file - Represents a file - * @f_count: reference count + * @f_ref: reference count * @f_lock: Protects f_ep, f_flags. Must not be taken from IRQ context. * @f_mode: FMODE_* flags often used in hotpaths * @f_op: file operations