--- zzzz-none-000/linux-4.9.276/fs/squashfs/xattr.c 2021-07-20 14:21:16.000000000 +0000 +++ falcon-5530-750/linux-4.9.276/fs/squashfs/xattr.c 2023-04-05 08:19:02.000000000 +0000 @@ -65,8 +65,8 @@ if (err < 0) goto failed; - name_size = le16_to_cpu(entry.size); - handler = squashfs_xattr_handler(le16_to_cpu(entry.type)); + name_size = squash_le16_to_cpu(entry.size); + handler = squashfs_xattr_handler(squash_le16_to_cpu(entry.type)); if (handler && (!handler->list || handler->list(d))) { const char *prefix = handler->prefix ?: handler->name; size_t prefix_size = strlen(prefix); @@ -104,7 +104,7 @@ goto failed; err = squashfs_read_metadata(sb, NULL, &start, &offset, - le32_to_cpu(val.vsize)); + squash_le32_to_cpu(val.vsize)); if (err < 0) goto failed; } @@ -142,8 +142,8 @@ if (err < 0) goto failed; - name_size = le16_to_cpu(entry.size); - type = le16_to_cpu(entry.type); + name_size = squash_le16_to_cpu(entry.size); + type = squash_le16_to_cpu(entry.type); prefix = type & SQUASHFS_XATTR_PREFIX_MASK; if (prefix == name_index && name_size == name_len) @@ -170,7 +170,7 @@ &start, &offset, sizeof(xattr_val)); if (err < 0) goto failed; - xattr = le64_to_cpu(xattr_val); + xattr = squash_le64_to_cpu(xattr_val); start = SQUASHFS_XATTR_BLK(xattr) + msblk->xattr_table; offset = SQUASHFS_XATTR_OFFSET(xattr); @@ -181,7 +181,7 @@ if (err < 0) goto failed; - vsize = le32_to_cpu(val.vsize); + vsize = squash_le32_to_cpu(val.vsize); if (buffer) { if (vsize > buffer_size) { err = -ERANGE; @@ -201,7 +201,7 @@ if (err < 0) goto failed; err = squashfs_read_metadata(sb, NULL, &start, &offset, - le32_to_cpu(val.vsize)); + squash_le32_to_cpu(val.vsize)); if (err < 0) goto failed; }