diff mbox series

[02/11] fs/ntfs3: Missed le32_to_cpu conversion

Message ID 45365ee4-44da-46a7-9edb-a641f0900076@paragon-software.com (mailing list archive)
State New
Headers show
Series Bugfix and refactoring | expand

Commit Message

Konstantin Komarov April 17, 2024, 1:04 p.m. UTC
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
---
  fs/ntfs3/fslog.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

      /* The log page data offset and record header length must be 
quad-aligned. */
diff mbox series

Patch

diff --git a/fs/ntfs3/fslog.c b/fs/ntfs3/fslog.c
index 855519713bf7..d9d08823de62 100644
--- a/fs/ntfs3/fslog.c
+++ b/fs/ntfs3/fslog.c
@@ -517,7 +517,7 @@  static inline bool is_rst_area_valid(const struct 
RESTART_HDR *rhdr)
          seq_bits -= 1;
      }

-    if (seq_bits != ra->seq_num_bits)
+    if (seq_bits != le32_to_cpu(ra->seq_num_bits))
          return false;