summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2013-10-18 19:55:37 +0000
committerchristos <christos@NetBSD.org>2013-10-18 19:55:37 +0000
commit89fec2de0f5803d8d93083dc580d43975fa72834 (patch)
treeeefa8e724459fdc4a3fd430d34f668a28086da41 /sys
parentc57437a67d8196011ed55229113890f5c4c24f6b (diff)
move code inside ifdef
Diffstat (limited to 'sys')
-rw-r--r--sys/ufs/ufs/ufs_quota.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/sys/ufs/ufs/ufs_quota.c b/sys/ufs/ufs/ufs_quota.c
index b78f901c134..13602c6e651 100644
--- a/sys/ufs/ufs/ufs_quota.c
+++ b/sys/ufs/ufs/ufs_quota.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ufs_quota.c,v 1.112 2012/09/09 04:27:49 manu Exp $ */
+/* $NetBSD: ufs_quota.c,v 1.113 2013/10/18 19:55:37 christos Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993, 1995
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ufs_quota.c,v 1.112 2012/09/09 04:27:49 manu Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ufs_quota.c,v 1.113 2013/10/18 19:55:37 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_quota.h"
@@ -641,13 +641,9 @@ quota_handle_cmd_quotaon(struct mount *mp, struct lwp *l,
struct quotactl_args *args)
{
struct ufsmount *ump = VFSTOUFS(mp);
- int idtype;
- const char *qfile;
int error;
KASSERT(args->qc_op == QUOTACTL_QUOTAON);
- idtype = args->u.quotaon.qc_idtype;
- qfile = args->u.quotaon.qc_quotafile;
if ((ump->um_flags & UFS_QUOTA2) != 0)
return EBUSY;
@@ -658,6 +654,8 @@ quota_handle_cmd_quotaon(struct mount *mp, struct lwp *l,
return error;
}
#ifdef QUOTA
+ int idtype = args->u.quotaon.qc_idtype;
+ const char *qfile = args->u.quotaon.qc_quotafile;
error = quota1_handle_cmd_quotaon(l, ump, idtype, qfile);
#else
error = EOPNOTSUPP;
@@ -671,11 +669,9 @@ quota_handle_cmd_quotaoff(struct mount *mp, struct lwp *l,
struct quotactl_args *args)
{
struct ufsmount *ump = VFSTOUFS(mp);
- int idtype;
int error;
KASSERT(args->qc_op == QUOTACTL_QUOTAOFF);
- idtype = args->u.quotaoff.qc_idtype;
if ((ump->um_flags & UFS_QUOTA2) != 0)
return EOPNOTSUPP;
@@ -686,6 +682,7 @@ quota_handle_cmd_quotaoff(struct mount *mp, struct lwp *l,
return error;
}
#ifdef QUOTA
+ int idtype = args->u.quotaoff.qc_idtype;
error = quota1_handle_cmd_quotaoff(l, ump, idtype);
#else
error = EOPNOTSUPP;