Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/ufs/ufs kern.maxvnodes (and hence desireddquot) depends ...



details:   https://anonhg.NetBSD.org/src/rev/863816985c4f
branches:  trunk
changeset: 494325:863816985c4f
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Wed Jul 05 17:08:14 2000 +0000

description:
kern.maxvnodes (and hence desireddquot) depends more directly on NVNODE than
on NPROC, adjust the hint to tablefull() accordingly

diffstat:

 sys/ufs/ufs/ufs_quota.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r ecb555b2afff -r 863816985c4f sys/ufs/ufs/ufs_quota.c
--- a/sys/ufs/ufs/ufs_quota.c   Wed Jul 05 16:54:19 2000 +0000
+++ b/sys/ufs/ufs/ufs_quota.c   Wed Jul 05 17:08:14 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ufs_quota.c,v 1.18 2000/07/04 20:31:55 mjacob Exp $    */
+/*     $NetBSD: ufs_quota.c,v 1.19 2000/07/05 17:08:14 jdolecek Exp $  */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993, 1995
@@ -753,7 +753,7 @@
        } else {
                if ((dq = dqfreelist.tqh_first) == NULL) {
                        tablefull("dquot",
-                           "increase kern.maxvnodes or NPROC");
+                           "increase kern.maxvnodes or NVNODE");
                        *dqp = NODQUOT;
                        return (EUSERS);
                }



Home | Main Index | Thread Index | Old Index