Commit bf84c82d000b9820b01f516d13d328f354f8a8ee

Authored by Jan Kara
1 parent 90c0af05a5

quota: Remove uppercase aliases for quota functions.

Since all users have been converted, remove uppercase names of quota functions.

Signed-off-by: Jan Kara <jack@suse.cz>

Showing 1 changed file with 0 additions and 31 deletions Side-by-side Diff

include/linux/quotaops.h
... ... @@ -454,36 +454,5 @@
454 454 vfs_dq_free_space(inode, nr << inode->i_blkbits);
455 455 }
456 456  
457   -/*
458   - * Define uppercase equivalents for compatibility with old function names
459   - * Can go away when we think all users have been converted (15/04/2008)
460   - */
461   -#define DQUOT_INIT(inode) vfs_dq_init(inode)
462   -#define DQUOT_DROP(inode) vfs_dq_drop(inode)
463   -#define DQUOT_PREALLOC_SPACE_NODIRTY(inode, nr) \
464   - vfs_dq_prealloc_space_nodirty(inode, nr)
465   -#define DQUOT_PREALLOC_SPACE(inode, nr) vfs_dq_prealloc_space(inode, nr)
466   -#define DQUOT_ALLOC_SPACE_NODIRTY(inode, nr) \
467   - vfs_dq_alloc_space_nodirty(inode, nr)
468   -#define DQUOT_ALLOC_SPACE(inode, nr) vfs_dq_alloc_space(inode, nr)
469   -#define DQUOT_PREALLOC_BLOCK_NODIRTY(inode, nr) \
470   - vfs_dq_prealloc_block_nodirty(inode, nr)
471   -#define DQUOT_PREALLOC_BLOCK(inode, nr) vfs_dq_prealloc_block(inode, nr)
472   -#define DQUOT_ALLOC_BLOCK_NODIRTY(inode, nr) \
473   - vfs_dq_alloc_block_nodirty(inode, nr)
474   -#define DQUOT_ALLOC_BLOCK(inode, nr) vfs_dq_alloc_block(inode, nr)
475   -#define DQUOT_ALLOC_INODE(inode) vfs_dq_alloc_inode(inode)
476   -#define DQUOT_FREE_SPACE_NODIRTY(inode, nr) \
477   - vfs_dq_free_space_nodirty(inode, nr)
478   -#define DQUOT_FREE_SPACE(inode, nr) vfs_dq_free_space(inode, nr)
479   -#define DQUOT_FREE_BLOCK_NODIRTY(inode, nr) \
480   - vfs_dq_free_block_nodirty(inode, nr)
481   -#define DQUOT_FREE_BLOCK(inode, nr) vfs_dq_free_block(inode, nr)
482   -#define DQUOT_FREE_INODE(inode) vfs_dq_free_inode(inode)
483   -#define DQUOT_TRANSFER(inode, iattr) vfs_dq_transfer(inode, iattr)
484   -#define DQUOT_SYNC(sb) vfs_dq_sync(sb)
485   -#define DQUOT_OFF(sb, remount) vfs_dq_off(sb, remount)
486   -#define DQUOT_ON_REMOUNT(sb) vfs_dq_quota_on_remount(sb)
487   -
488 457 #endif /* _LINUX_QUOTAOPS_ */