Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Oct 2002 15:14:19 -0700 (PDT)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 20167 for review
Message-ID:  <200210252214.g9PMEJgx034731@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=20167

Change 20167 by rwatson@rwatson_tislabs on 2002/10/25 15:13:29

	More vertical whitespace compression for merge.

Affected files ...

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

Differences ...

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

@@ -3121,7 +3121,6 @@
 		return (error);
 
 	elements = malloc(mac.m_buflen, M_MACTEMP, M_WAITOK);
-
 	error = copyinstr(mac.m_string, elements, mac.m_buflen, NULL);
 	if (error) {
 		free(elements, M_MACTEMP);
@@ -3129,7 +3128,6 @@
 	}
 
 	buffer = malloc(mac.m_buflen, M_MACTEMP, M_WAITOK | M_ZERO);
-
 	error = mac_externalize_ifnet_label(&ifnet->if_label, elements,
 	    buffer, mac.m_buflen, M_WAITOK);
 	if (error == 0)
@@ -3159,7 +3157,6 @@
 		return (error);
 
 	buffer = malloc(mac.m_buflen, M_MACTEMP, M_WAITOK);
-
 	error = copyinstr(mac.m_string, buffer, mac.m_buflen, NULL);
 	if (error) {
 		free(buffer, M_MACTEMP);
@@ -3695,7 +3692,6 @@
 	}
 
 	buffer = malloc(mac.m_buflen, M_MACTEMP, M_WAITOK | M_ZERO);
-
 	mtx_lock(&Giant);				/* VFS */
 	NDINIT(&nd, LOOKUP, LOCKLEAF | FOLLOW, UIO_USERSPACE, uap->path_p,
 	    td);
@@ -3705,7 +3701,6 @@
 
 	mac_init_vnode_label(&intlabel);
 	mac_copy_vnode_label(&nd.ni_vp->v_label, &intlabel);
-
 	error = mac_externalize_vnode_label(&intlabel, elements, buffer,
 	    mac.m_buflen, M_WAITOK);
 
@@ -3752,7 +3747,6 @@
 	}
 
 	buffer = malloc(mac.m_buflen, M_MACTEMP, M_WAITOK | M_ZERO);
-
 	mtx_lock(&Giant);				/* VFS */
 	NDINIT(&nd, LOOKUP, LOCKLEAF | NOFOLLOW, UIO_USERSPACE, uap->path_p,
 	    td);
@@ -3762,10 +3756,8 @@
 
 	mac_init_vnode_label(&intlabel);
 	mac_copy_vnode_label(&nd.ni_vp->v_label, &intlabel);
-
 	error = mac_externalize_vnode_label(&intlabel, elements, buffer,
 	    mac.m_buflen, M_WAITOK);
-
 	NDFREE(&nd, 0);
 	mac_destroy_vnode_label(&intlabel);
 

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?200210252214.g9PMEJgx034731>