diff options
author | Christoph Hellwig <hch@lst.de> | 2014-04-23 07:11:51 +1000 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-04-23 07:11:51 +1000 |
commit | 1919adda0732e661c6163a6505dddb0bc423b8d8 (patch) | |
tree | 401679adbf7a8bbc883771d32b36ff9ea91c396d /fs/xfs/xfs_filestream.h | |
parent | 2cd2ef6a300b1ac912bb515b75451585c3d33ea9 (diff) | |
download | blackbird-op-linux-1919adda0732e661c6163a6505dddb0bc423b8d8.tar.gz blackbird-op-linux-1919adda0732e661c6163a6505dddb0bc423b8d8.zip |
xfs: don't create a slab cache for filestream items
We only have very few of these around, and allocation isn't that
much of a hot path. Remove the slab cache to simplify the code,
and to not waste any resources for the usual case of not having
any inodes that use the filestream allocator.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_filestream.h')
-rw-r--r-- | fs/xfs/xfs_filestream.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/xfs/xfs_filestream.h b/fs/xfs/xfs_filestream.h index e3a25f891d08..578d49e7cffc 100644 --- a/fs/xfs/xfs_filestream.h +++ b/fs/xfs/xfs_filestream.h @@ -22,8 +22,6 @@ struct xfs_mount; struct xfs_inode; struct xfs_bmalloca; -int xfs_filestream_init(void); -void xfs_filestream_uninit(void); int xfs_filestream_mount(struct xfs_mount *mp); void xfs_filestream_unmount(struct xfs_mount *mp); void xfs_filestream_deassociate(struct xfs_inode *ip); |