diff options
author | Christoph Hellwig <hch@lst.de> | 2015-01-14 04:42:37 -0500 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2015-01-20 16:03:05 -0500 |
commit | b83ae6d421435c6204150300f1c25bfbd39cd62b (patch) | |
tree | 99c6b661ab7de05c2fd49aa62624d2d6bf8abc69 /include/linux/fs.h | |
parent | de1414a654e66b81b5348dbc5259ecf2fb61655e (diff) |
fs: remove mapping->backing_dev_info
Now that we never use the backing_dev_info pointer in struct address_space
we can simply remove it and save 4 to 8 bytes in every inode.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Reviewed-by: Tejun Heo <tj@kernel.org>
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 1dada399aa23..65d02de342e1 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -34,6 +34,7 @@ | |||
34 | #include <asm/byteorder.h> | 34 | #include <asm/byteorder.h> |
35 | #include <uapi/linux/fs.h> | 35 | #include <uapi/linux/fs.h> |
36 | 36 | ||
37 | struct backing_dev_info; | ||
37 | struct export_operations; | 38 | struct export_operations; |
38 | struct hd_geometry; | 39 | struct hd_geometry; |
39 | struct iovec; | 40 | struct iovec; |
@@ -394,7 +395,6 @@ int pagecache_write_end(struct file *, struct address_space *mapping, | |||
394 | loff_t pos, unsigned len, unsigned copied, | 395 | loff_t pos, unsigned len, unsigned copied, |
395 | struct page *page, void *fsdata); | 396 | struct page *page, void *fsdata); |
396 | 397 | ||
397 | struct backing_dev_info; | ||
398 | struct address_space { | 398 | struct address_space { |
399 | struct inode *host; /* owner: inode, block_device */ | 399 | struct inode *host; /* owner: inode, block_device */ |
400 | struct radix_tree_root page_tree; /* radix tree of all pages */ | 400 | struct radix_tree_root page_tree; /* radix tree of all pages */ |
@@ -409,7 +409,6 @@ struct address_space { | |||
409 | pgoff_t writeback_index;/* writeback starts here */ | 409 | pgoff_t writeback_index;/* writeback starts here */ |
410 | const struct address_space_operations *a_ops; /* methods */ | 410 | const struct address_space_operations *a_ops; /* methods */ |
411 | unsigned long flags; /* error bits/gfp mask */ | 411 | unsigned long flags; /* error bits/gfp mask */ |
412 | struct backing_dev_info *backing_dev_info; /* device readahead, etc */ | ||
413 | spinlock_t private_lock; /* for use by the address_space */ | 412 | spinlock_t private_lock; /* for use by the address_space */ |
414 | struct list_head private_list; /* ditto */ | 413 | struct list_head private_list; /* ditto */ |
415 | void *private_data; /* ditto */ | 414 | void *private_data; /* ditto */ |