diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2013-08-20 07:20:12 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@fusionio.com> | 2013-09-01 08:16:13 -0400 |
commit | 1473b24ee0cb43d4b48aa0c5f1b8417928910a4d (patch) | |
tree | 0f47db30e14eef426ebb06064503af2ec375ebf3 /fs/btrfs/ctree.h | |
parent | 410ba3a291081d98f0e58a868e1305110d986903 (diff) |
Btrfs: Make btrfs_device_fsid() return unsigned long
All callers of btrfs_device_fsid() cast its return type to unsigned long.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r-- | fs/btrfs/ctree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index b4e70537cada..b71bc3a99342 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h | |||
@@ -2169,9 +2169,9 @@ static inline unsigned long btrfs_device_uuid(struct btrfs_dev_item *d) | |||
2169 | return (unsigned long)d + offsetof(struct btrfs_dev_item, uuid); | 2169 | return (unsigned long)d + offsetof(struct btrfs_dev_item, uuid); |
2170 | } | 2170 | } |
2171 | 2171 | ||
2172 | static inline char *btrfs_device_fsid(struct btrfs_dev_item *d) | 2172 | static inline unsigned long btrfs_device_fsid(struct btrfs_dev_item *d) |
2173 | { | 2173 | { |
2174 | return (char *)d + offsetof(struct btrfs_dev_item, fsid); | 2174 | return (unsigned long)d + offsetof(struct btrfs_dev_item, fsid); |
2175 | } | 2175 | } |
2176 | 2176 | ||
2177 | BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64); | 2177 | BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64); |