[<prev] [next>] [day] [month] [year] [list]
Message-ID: <159006658996.105720.14023071485286413229.stgit@warthog.procyon.org.uk>
Date: Thu, 21 May 2020 14:09:49 +0100
From: David Howells <dhowells@...hat.com>
To: viro@...iv.linux.org.uk
Cc: linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] Adjust comments in linux/fs_parser.h
Fix some comments in linux/fs_parser.h that have not kept up with the
changes.
Signed-off-by: David Howells <dhowells@...hat.com>
---
include/linux/fs_parser.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/linux/fs_parser.h b/include/linux/fs_parser.h
index 2eab6d5f6736..784f4bfa2aa2 100644
--- a/include/linux/fs_parser.h
+++ b/include/linux/fs_parser.h
@@ -53,10 +53,10 @@ struct fs_parameter_spec {
struct fs_parse_result {
bool negated; /* T if param was "noxxx" */
union {
- bool boolean; /* For spec_bool */
- int int_32; /* For spec_s32/spec_enum */
- unsigned int uint_32; /* For spec_u32{,_octal,_hex}/spec_enum */
- u64 uint_64; /* For spec_u64 */
+ bool boolean; /* For fs_param_is_bool */
+ int int_32; /* For fs_param_is_{s32,enum} */
+ unsigned int uint_32; /* For fs_param_is_{u32*,enum,fd) */
+ u64 uint_64; /* For fs_param_is_u64 */
};
};
Powered by blists - more mailing lists