Source-Changes-HG archive

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

[src/trunk]: src/sys/ufs/ufs Add missing second argument to tablefull call. I...



details:   https://anonhg.NetBSD.org/src/rev/a73ef6174f5d
branches:  trunk
changeset: 494271:a73ef6174f5d
user:      mjacob <mjacob%NetBSD.org@localhost>
date:      Tue Jul 04 20:31:55 2000 +0000

description:
Add missing second argument to tablefull call. I *think* the added
message makes sense- somebody might want to check it.

diffstat:

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

diffs (19 lines):

diff -r 2f20cf85361e -r a73ef6174f5d sys/ufs/ufs/ufs_quota.c
--- a/sys/ufs/ufs/ufs_quota.c   Tue Jul 04 20:27:35 2000 +0000
+++ b/sys/ufs/ufs/ufs_quota.c   Tue Jul 04 20:31:55 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ufs_quota.c,v 1.17 2000/05/27 04:52:42 thorpej Exp $   */
+/*     $NetBSD: ufs_quota.c,v 1.18 2000/07/04 20:31:55 mjacob Exp $    */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993, 1995
@@ -752,7 +752,8 @@
                numdquot++;
        } else {
                if ((dq = dqfreelist.tqh_first) == NULL) {
-                       tablefull("dquot");
+                       tablefull("dquot",
+                           "increase kern.maxvnodes or NPROC");
                        *dqp = NODQUOT;
                        return (EUSERS);
                }



Home | Main Index | Thread Index | Old Index