Skip to content

Commit

Permalink
quota: Unexport dqblk_v1.h and dqblk_v2.h
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jan Kara authored and Mark Fasheh committed Jan 5, 2009
1 parent 9a2f386 commit 5cd9d5b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
2 changes: 0 additions & 2 deletions include/linux/Kbuild
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ header-y += dlm_device.h
header-y += dlm_netlink.h
header-y += dm-ioctl.h
header-y += dn.h
header-y += dqblk_v1.h
header-y += dqblk_v2.h
header-y += dqblk_xfs.h
header-y += efs_fs_sb.h
header-y += elf-fdpic.h
Expand Down
3 changes: 0 additions & 3 deletions include/linux/dqblk_v1.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
#ifndef _LINUX_DQBLK_V1_H
#define _LINUX_DQBLK_V1_H

/* Id of quota format */
#define QFMT_VFS_OLD 1

/* Root squash turned on */
#define V1_DQF_RSQUASH 1

Expand Down
3 changes: 0 additions & 3 deletions include/linux/dqblk_v2.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@

#include <linux/dqblk_qtree.h>

/* Id number of quota format */
#define QFMT_VFS_V0 2

/* Numbers of blocks needed for updates */
#define V2_INIT_ALLOC QTREE_INIT_ALLOC
#define V2_INIT_REWRITE QTREE_INIT_REWRITE
Expand Down
4 changes: 4 additions & 0 deletions include/linux/quota.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@
#define Q_GETQUOTA 0x800007 /* get user quota structure */
#define Q_SETQUOTA 0x800008 /* set user quota structure */

/* Quota format type IDs */
#define QFMT_VFS_OLD 1
#define QFMT_VFS_V0 2

/* Size of block in which space limits are passed through the quota
* interface */
#define QIF_DQBLKSIZE_BITS 10
Expand Down

0 comments on commit 5cd9d5b

Please sign in to comment.