From owner-cvs-all@FreeBSD.ORG Sun Feb 4 06:46:57 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BDEAB16A403; Sun, 4 Feb 2007 06:46:57 +0000 (UTC) (envelope-from mpp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9733313C461; Sun, 4 Feb 2007 06:46:57 +0000 (UTC) (envelope-from mpp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l146kvXY008526; Sun, 4 Feb 2007 06:46:57 GMT (envelope-from mpp@repoman.freebsd.org) Received: (from mpp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l146kveU008525; Sun, 4 Feb 2007 06:46:57 GMT (envelope-from mpp) Message-Id: <200702040646.l146kveU008525@repoman.freebsd.org> From: Mike Pritchard Date: Sun, 4 Feb 2007 06:46:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/ufs/ufs ufs_quota.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Feb 2007 06:46:57 -0000 mpp 2007-02-04 06:46:57 UTC FreeBSD src repository Modified files: sys/ufs/ufs ufs_quota.c Log: If quotacheck or edquota reset the block or inode grace time for a user or group, when the kernel first sees this, it will update the grace time value. However, it never flags the quota as modified and the updated value never makes it to the quota data file unless the user actually makes some other change that would write the data out. Fixed to flag the quota as modified if the soft limit has actually been reached and should be now enforced. Revision Changes Path 1.89 +10 -2 src/sys/ufs/ufs/ufs_quota.c