]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
Btrfs: Remove unused xattr code
authorJosef Bacik <jbacik@redhat.com>
Thu, 24 Jul 2008 16:16:03 +0000 (12:16 -0400)
committerChris Mason <chris.mason@oracle.com>
Thu, 25 Sep 2008 15:04:05 +0000 (11:04 -0400)
Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/ctree.h
fs/btrfs/xattr.c

index beb05b1de54c524d30d311c5629240f2ced4b260..53d315bdd16dce9ce4193fff3e5cb9f0c24d3e81 100644 (file)
@@ -1689,8 +1689,7 @@ void btrfs_sysfs_del_super(struct btrfs_fs_info *root);
 
 /* xattr.c */
 ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
-int btrfs_delete_xattrs(struct btrfs_trans_handle *trans,
-                       struct btrfs_root *root, struct inode *inode);
+
 /* super.c */
 u64 btrfs_parse_size(char *str);
 int btrfs_parse_options(struct btrfs_root *root, char *options);
index 3e9eb91c3c89791f324917aabc6c9db87161e037..6730b59588442ab8d2dcf830253fe07a4025de0a 100644 (file)
@@ -378,57 +378,6 @@ err:
        return ret;
 }
 
-/*
- * delete all the xattrs associated with the inode.
- */
-int btrfs_delete_xattrs(struct btrfs_trans_handle *trans,
-                       struct btrfs_root *root, struct inode *inode)
-{
-       struct btrfs_path *path;
-       struct btrfs_key key, found_key;
-       struct btrfs_item *item;
-       struct extent_buffer *leaf;
-       int ret;
-
-       path = btrfs_alloc_path();
-       if (!path)
-               return -ENOMEM;
-       path->reada = -1;
-       key.objectid = inode->i_ino;
-       btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY);
-       key.offset = (u64)-1;
-
-       while(1) {
-               /* look for our next xattr */
-               ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
-               if (ret < 0)
-                       goto out;
-               BUG_ON(ret == 0);
-
-               if (path->slots[0] == 0)
-                       break;
-
-               path->slots[0]--;
-               leaf = path->nodes[0];
-               item = btrfs_item_nr(leaf, path->slots[0]);
-               btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
-
-               if (found_key.objectid != key.objectid)
-                       break;
-               if (btrfs_key_type(&found_key) != BTRFS_XATTR_ITEM_KEY)
-                       break;
-
-               ret = btrfs_del_item(trans, root, path);
-               BUG_ON(ret);
-               btrfs_release_path(root, path);
-       }
-       ret = 0;
-out:
-       btrfs_free_path(path);
-
-       return ret;
-}
-
 /*
  * Handler functions
  */