diff options
author | Jan Kara <jack@suse.cz> | 2008-11-25 09:31:31 -0500 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2009-01-05 11:40:25 -0500 |
commit | 5cd9d5bb86daf632a40f90e2321ea9379e42f073 (patch) | |
tree | dd8baa659c18e61b94c1c366b93f161611cec8bd /include/linux | |
parent | 9a2f3866c825c67c3a5806799cdc93fb7517f0c4 (diff) |
quota: Unexport dqblk_v1.h and dqblk_v2.h
Unexport header files dqblk_v[12].h since except for quota format ID they
don't contain information userspace should be interested in. Move ID
definitions to quota.h.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/Kbuild | 2 | ||||
-rw-r--r-- | include/linux/dqblk_v1.h | 3 | ||||
-rw-r--r-- | include/linux/dqblk_v2.h | 3 | ||||
-rw-r--r-- | include/linux/quota.h | 4 |
4 files changed, 4 insertions, 8 deletions
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index 900a787cbae9..39da666067b9 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
@@ -56,8 +56,6 @@ header-y += dlm_device.h | |||
56 | header-y += dlm_netlink.h | 56 | header-y += dlm_netlink.h |
57 | header-y += dm-ioctl.h | 57 | header-y += dm-ioctl.h |
58 | header-y += dn.h | 58 | header-y += dn.h |
59 | header-y += dqblk_v1.h | ||
60 | header-y += dqblk_v2.h | ||
61 | header-y += dqblk_xfs.h | 59 | header-y += dqblk_xfs.h |
62 | header-y += efs_fs_sb.h | 60 | header-y += efs_fs_sb.h |
63 | header-y += elf-fdpic.h | 61 | header-y += elf-fdpic.h |
diff --git a/include/linux/dqblk_v1.h b/include/linux/dqblk_v1.h index 9cea901f5bba..3713a7232dd8 100644 --- a/include/linux/dqblk_v1.h +++ b/include/linux/dqblk_v1.h | |||
@@ -5,9 +5,6 @@ | |||
5 | #ifndef _LINUX_DQBLK_V1_H | 5 | #ifndef _LINUX_DQBLK_V1_H |
6 | #define _LINUX_DQBLK_V1_H | 6 | #define _LINUX_DQBLK_V1_H |
7 | 7 | ||
8 | /* Id of quota format */ | ||
9 | #define QFMT_VFS_OLD 1 | ||
10 | |||
11 | /* Root squash turned on */ | 8 | /* Root squash turned on */ |
12 | #define V1_DQF_RSQUASH 1 | 9 | #define V1_DQF_RSQUASH 1 |
13 | 10 | ||
diff --git a/include/linux/dqblk_v2.h b/include/linux/dqblk_v2.h index ff8af1b4bda7..18000a542677 100644 --- a/include/linux/dqblk_v2.h +++ b/include/linux/dqblk_v2.h | |||
@@ -7,9 +7,6 @@ | |||
7 | 7 | ||
8 | #include <linux/dqblk_qtree.h> | 8 | #include <linux/dqblk_qtree.h> |
9 | 9 | ||
10 | /* Id number of quota format */ | ||
11 | #define QFMT_VFS_V0 2 | ||
12 | |||
13 | /* Numbers of blocks needed for updates */ | 10 | /* Numbers of blocks needed for updates */ |
14 | #define V2_INIT_ALLOC QTREE_INIT_ALLOC | 11 | #define V2_INIT_ALLOC QTREE_INIT_ALLOC |
15 | #define V2_INIT_REWRITE QTREE_INIT_REWRITE | 12 | #define V2_INIT_REWRITE QTREE_INIT_REWRITE |
diff --git a/include/linux/quota.h b/include/linux/quota.h index ec82beb10424..d72d5d84fde5 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h | |||
@@ -70,6 +70,10 @@ | |||
70 | #define Q_GETQUOTA 0x800007 /* get user quota structure */ | 70 | #define Q_GETQUOTA 0x800007 /* get user quota structure */ |
71 | #define Q_SETQUOTA 0x800008 /* set user quota structure */ | 71 | #define Q_SETQUOTA 0x800008 /* set user quota structure */ |
72 | 72 | ||
73 | /* Quota format type IDs */ | ||
74 | #define QFMT_VFS_OLD 1 | ||
75 | #define QFMT_VFS_V0 2 | ||
76 | |||
73 | /* Size of block in which space limits are passed through the quota | 77 | /* Size of block in which space limits are passed through the quota |
74 | * interface */ | 78 | * interface */ |
75 | #define QIF_DQBLKSIZE_BITS 10 | 79 | #define QIF_DQBLKSIZE_BITS 10 |