|
@@ -198,38 +198,38 @@ static __inline__ int DQUOT_OFF(struct super_block *sb)
|
|
|
#define DQUOT_SYNC(sb) do { } while(0)
|
|
|
#define DQUOT_OFF(sb) do { } while(0)
|
|
|
#define DQUOT_TRANSFER(inode, iattr) (0)
|
|
|
-extern __inline__ int DQUOT_PREALLOC_SPACE_NODIRTY(struct inode *inode, qsize_t nr)
|
|
|
+static inline int DQUOT_PREALLOC_SPACE_NODIRTY(struct inode *inode, qsize_t nr)
|
|
|
{
|
|
|
inode_add_bytes(inode, nr);
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-extern __inline__ int DQUOT_PREALLOC_SPACE(struct inode *inode, qsize_t nr)
|
|
|
+static inline int DQUOT_PREALLOC_SPACE(struct inode *inode, qsize_t nr)
|
|
|
{
|
|
|
DQUOT_PREALLOC_SPACE_NODIRTY(inode, nr);
|
|
|
mark_inode_dirty(inode);
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-extern __inline__ int DQUOT_ALLOC_SPACE_NODIRTY(struct inode *inode, qsize_t nr)
|
|
|
+static inline int DQUOT_ALLOC_SPACE_NODIRTY(struct inode *inode, qsize_t nr)
|
|
|
{
|
|
|
inode_add_bytes(inode, nr);
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-extern __inline__ int DQUOT_ALLOC_SPACE(struct inode *inode, qsize_t nr)
|
|
|
+static inline int DQUOT_ALLOC_SPACE(struct inode *inode, qsize_t nr)
|
|
|
{
|
|
|
DQUOT_ALLOC_SPACE_NODIRTY(inode, nr);
|
|
|
mark_inode_dirty(inode);
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-extern __inline__ void DQUOT_FREE_SPACE_NODIRTY(struct inode *inode, qsize_t nr)
|
|
|
+static inline void DQUOT_FREE_SPACE_NODIRTY(struct inode *inode, qsize_t nr)
|
|
|
{
|
|
|
inode_sub_bytes(inode, nr);
|
|
|
}
|
|
|
|
|
|
-extern __inline__ void DQUOT_FREE_SPACE(struct inode *inode, qsize_t nr)
|
|
|
+static inline void DQUOT_FREE_SPACE(struct inode *inode, qsize_t nr)
|
|
|
{
|
|
|
DQUOT_FREE_SPACE_NODIRTY(inode, nr);
|
|
|
mark_inode_dirty(inode);
|