diff options
author | Dmitry Monakhov <dmonakhov@openvz.org> | 2010-02-16 08:31:50 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2010-03-05 00:20:26 +0100 |
commit | 8ddd69d6df4758bf0cab981481af24cc84419567 (patch) | |
tree | 126eb5877e092963b7ed1cf143e3ce0bac6a7c85 /include/linux/quota.h | |
parent | ad1e6e8da9fe8cb7ecfde8eabacedc3b50fceae4 (diff) | |
download | op-kernel-dev-8ddd69d6df4758bf0cab981481af24cc84419567.zip op-kernel-dev-8ddd69d6df4758bf0cab981481af24cc84419567.tar.gz |
quota: generalize quota transfer interface
Current quota transfer interface support only uid/gid.
This patch extend interface in order to support various quotas types
The goal is accomplished without changes in most frequently used
vfs_dq_transfer() func.
Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'include/linux/quota.h')
-rw-r--r-- | include/linux/quota.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/quota.h b/include/linux/quota.h index 92547a5..edf34f2 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h @@ -301,7 +301,7 @@ struct dquot_operations { int (*alloc_inode) (const struct inode *, qsize_t); int (*free_space) (struct inode *, qsize_t); int (*free_inode) (const struct inode *, qsize_t); - int (*transfer) (struct inode *, struct iattr *); + int (*transfer) (struct inode *, qid_t *, unsigned long); int (*write_dquot) (struct dquot *); /* Ordinary dquot write */ struct dquot *(*alloc_dquot)(struct super_block *, int); /* Allocate memory for new dquot */ void (*destroy_dquot)(struct dquot *); /* Free memory for dquot */ |