|
|
| File: [cvs.NetBSD.org] / src / sys / ufs / ufs / quota1_subr.c (download)
Revision 1.7, Sun Jan 29 06:23:20 2012 UTC (15 months, 3 weeks ago) by dholland
Change dqblk_to_quotaval() from quota1_subr.c to dqblk_to_quotavals(), and pass in two single quotaval structs (for blocks and inodes) instead of an array of (implicitly) QUOTA_NLIMITS quotaval structs indexed by constants from quotaprop.h. Note: because this code is used by COMPAT_50 as well as ufs, this change requires a kernel version bump. (The code is also used by edquota, but via .PATH so it's not ABI-sensitive there.) |
/* $NetBSD: quota1_subr.c,v 1.7 2012/01/29 06:23:20 dholland Exp $ */
/*-
* Copyright (c) 2010 Manuel Bouyer
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: quota1_subr.c,v 1.7 2012/01/29 06:23:20 dholland Exp $");
#include <sys/types.h>
#include <machine/limits.h>
#include <sys/quota.h>
#include <ufs/ufs/quota1.h>
static uint64_t
dqblk2q2e_limit(uint32_t lim)
{
if (lim == 0)
return UQUAD_MAX;
else
return (lim - 1);
}
static uint32_t
q2e2dqblk_limit(uint64_t lim)
{
if (lim == UQUAD_MAX)
return 0;
else
return (lim + 1);
}
void
dqblk_to_quotavals(const struct dqblk *dqblk,
struct quotaval *blocks, struct quotaval *files)
{
/* XXX is qv_grace getting handled correctly? */
blocks->qv_hardlimit = dqblk2q2e_limit(dqblk->dqb_bhardlimit);
blocks->qv_softlimit = dqblk2q2e_limit(dqblk->dqb_bsoftlimit);
blocks->qv_usage = dqblk->dqb_curblocks;
blocks->qv_expiretime = dqblk->dqb_btime;
files->qv_hardlimit = dqblk2q2e_limit(dqblk->dqb_ihardlimit);
files->qv_softlimit = dqblk2q2e_limit(dqblk->dqb_isoftlimit);
files->qv_usage = dqblk->dqb_curinodes;
files->qv_expiretime = dqblk->dqb_itime;
}
void
quotavals_to_dqblk(const struct quotaval *blocks, const struct quotaval *files,
struct dqblk *dqblk)
{
/* XXX is qv_grace getting handled correctly? */
dqblk->dqb_bhardlimit = q2e2dqblk_limit(blocks->qv_hardlimit);
dqblk->dqb_bsoftlimit = q2e2dqblk_limit(blocks->qv_softlimit);
dqblk->dqb_curblocks = blocks->qv_usage;
dqblk->dqb_btime = blocks->qv_expiretime;
dqblk->dqb_ihardlimit = q2e2dqblk_limit(files->qv_hardlimit);
dqblk->dqb_isoftlimit = q2e2dqblk_limit(files->qv_softlimit);
dqblk->dqb_curinodes = files->qv_usage;
dqblk->dqb_itime = files->qv_expiretime;
}