Message ID | 1406738303-24341-2-git-send-email-tiwai@suse.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/fs/btrfs/qgroup.c b/fs/btrfs/qgroup.c index b499f580d005..dc2665cb3f1b 100644 --- a/fs/btrfs/qgroup.c +++ b/fs/btrfs/qgroup.c @@ -99,9 +99,6 @@ struct btrfs_qgroup_list { struct btrfs_qgroup *member; }; -#define ptr_to_u64(x) ((u64)(uintptr_t)x) -#define u64_to_ptr(x) ((struct btrfs_qgroup *)(uintptr_t)x) - static int qgroup_rescan_init(struct btrfs_fs_info *fs_info, u64 progress_objectid, int init_flags);
These macros are no longer used after replacements of aux data type. Let's kill them. Signed-off-by: Takashi Iwai <tiwai@suse.de> --- fs/btrfs/qgroup.c | 3 --- 1 file changed, 3 deletions(-)