diff options
author | Eric Sandeen <sandeen@sandeen.net> | 2016-06-01 07:38:15 (GMT) |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-06-01 07:38:15 (GMT) |
commit | 0d5a75e9e23ee39cd0d8a167393dcedb4f0f47b2 (patch) | |
tree | d9939f394f84061b34691df16c894d99ea29e731 /fs/xfs/libxfs/xfs_alloc.h | |
parent | 0c871f9a101a290e61af02df49087d118543caeb (diff) | |
download | linux-0d5a75e9e23ee39cd0d8a167393dcedb4f0f47b2.tar.xz |
xfs: make several functions static
Al Viro noticed that xfs_lock_inodes should be static, and
that led to ... a few more.
These are just the easy ones, others require moving functions
higher in source files, so that's not done here to keep
this review simple.
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_alloc.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_alloc.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/xfs/libxfs/xfs_alloc.h b/fs/xfs/libxfs/xfs_alloc.h index 135eb3d..92a66ba 100644 --- a/fs/xfs/libxfs/xfs_alloc.h +++ b/fs/xfs/libxfs/xfs_alloc.h @@ -212,13 +212,6 @@ xfs_free_extent( xfs_fsblock_t bno, /* starting block number of extent */ xfs_extlen_t len); /* length of extent */ -int /* error */ -xfs_alloc_lookup_le( - struct xfs_btree_cur *cur, /* btree cursor */ - xfs_agblock_t bno, /* starting block of extent */ - xfs_extlen_t len, /* length of extent */ - int *stat); /* success/failure */ - int /* error */ xfs_alloc_lookup_ge( struct xfs_btree_cur *cur, /* btree cursor */ |