diff options
author | Jan Kara <jack@suse.cz> | 2017-08-07 18:07:28 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2017-08-17 23:00:59 +0300 |
commit | 0ed60de34a975804a256fb3fe233b1466c603be6 (patch) | |
tree | 84c23183aedae3501aa0dec48f804f3f0270bb15 /include/linux/quotaops.h | |
parent | 91389240a252ba3ced356404f0e3426958d619e4 (diff) | |
download | linux-0ed60de34a975804a256fb3fe233b1466c603be6.tar.xz |
quota: Inline functions into their callsites
inode_add_rsv_space() and inode_sub_rsv_space() had only one callsite.
Inline them there directly. inode_claim_rsv_space() and
inode_reclaim_rsv_space() had two callsites so inline them there as
well. This will simplify further locking changes.
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'include/linux/quotaops.h')
-rw-r--r-- | include/linux/quotaops.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index dda22f45fc1b..0ce6fc49962e 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h @@ -38,11 +38,6 @@ void __quota_error(struct super_block *sb, const char *func, /* * declaration of quota_function calls in kernel. */ -void inode_add_rsv_space(struct inode *inode, qsize_t number); -void inode_claim_rsv_space(struct inode *inode, qsize_t number); -void inode_sub_rsv_space(struct inode *inode, qsize_t number); -void inode_reclaim_rsv_space(struct inode *inode, qsize_t number); - int dquot_initialize(struct inode *inode); bool dquot_initialize_needed(struct inode *inode); void dquot_drop(struct inode *inode); |