diff options
author | Eric Biggers <ebiggers@google.com> | 2021-05-27 16:55:57 -0700 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2021-06-24 09:42:41 -0400 |
commit | 6d2424a84533d3563ef525cb6e19cfda13abc472 (patch) | |
tree | 83258ea2105a9f04d7175dd1b51c137ff5596d55 /fs/ext4 | |
parent | f9505c72b2ee80cb68af95449a5215906130e3be (diff) |
ext4: fix comment for s_hash_unsigned
Fix the comment for s_hash_unsigned to not be the opposite of what it
actually is.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Link: https://lore.kernel.org/r/20210527235557.2377525-1-ebiggers@kernel.org
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/ext4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index a646bfcbd0e8..8ff4ae3b5715 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h @@ -1486,7 +1486,7 @@ struct ext4_sb_info { unsigned int s_inode_goal; u32 s_hash_seed[4]; int s_def_hash_version; - int s_hash_unsigned; /* 3 if hash should be signed, 0 if not */ + int s_hash_unsigned; /* 3 if hash should be unsigned, 0 if not */ struct percpu_counter s_freeclusters_counter; struct percpu_counter s_freeinodes_counter; struct percpu_counter s_dirs_counter; |