]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
ext4: move struct ext4_xattr_inode_array to xattr.h
authorTahsin Erdogan <tahsin@google.com>
Thu, 22 Jun 2017 14:28:38 +0000 (10:28 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 22 Jun 2017 14:28:38 +0000 (10:28 -0400)
Since this is a xattr specific data structure it is cleaner to keep it in
xattr header file.

Signed-off-by: Tahsin Erdogan <tahsin@google.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/ext4.h
fs/ext4/xattr.h

index 144a2863ba27e894e679146257da143177fac397..6b7c517498c9e03f1c379b89cafbf103a7a858c8 100644 (file)
@@ -2243,10 +2243,6 @@ struct mmpd_data {
 # define ATTRIB_NORET  __attribute__((noreturn))
 # define NORET_AND     noreturn,
 
-struct ext4_xattr_inode_array {
-       unsigned int count;             /* # of used items in the array */
-       struct inode *inodes[0];
-};
 /* bitmap.c */
 extern unsigned int ext4_count_free(char *bitmap, unsigned numchars);
 void ext4_inode_bitmap_csum_set(struct super_block *sb, ext4_group_t group,
index 323eba54f72f936579a751e64c5a6e3711438210..adf761518a73210e2e8e3da854707bce7788361c 100644 (file)
@@ -117,6 +117,11 @@ struct ext4_xattr_ibody_find {
        struct ext4_iloc iloc;
 };
 
+struct ext4_xattr_inode_array {
+       unsigned int count;             /* # of used items in the array */
+       struct inode *inodes[0];
+};
+
 extern const struct xattr_handler ext4_xattr_user_handler;
 extern const struct xattr_handler ext4_xattr_trusted_handler;
 extern const struct xattr_handler ext4_xattr_security_handler;