Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Jul 2002 15:03:09 -0700 (PDT)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 14792 for review
Message-ID:  <200207232203.g6NM39LG060922@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=14792

Change 14792 by rwatson@rwatson_paprika on 2002/07/23 15:02:18

	Disable the null v_mount warnings in non deadfs cases, since
	this is an expected result following device revocation.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/kern/kern_mac.c#191 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/kern/kern_mac.c#191 (text+ko) ====

@@ -1220,7 +1220,7 @@
 		mac_update_vnode_deadfs(vp);
 		return (0);
  */
-		printf("vn_refreshlabel: null v_mount\n");
+		/* printf("vn_refreshlabel: null v_mount\n"); */
 		if (vp->v_tag != VT_NON)
 			printf(
 			    "vn_refreshlabel: null v_mount with non-VT_NON\n");
@@ -2675,7 +2675,7 @@
 	int error;
 
 	if (vp->v_mount == NULL) {
-		printf("vn_setlabel: null v_mount\n");
+		/* printf("vn_setlabel: null v_mount\n"); */
 		if (vp->v_tag != VT_NON)
 			printf("vn_setlabel: null v_mount with non-VT_NON\n");
 		return (EBADF);

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200207232203.g6NM39LG060922>