svn commit: r191917 - in head/sys: kern netinet sys
Marko Zec
zec at FreeBSD.org
Fri May 8 14:34:26 UTC 2009
Author: zec
Date: Fri May 8 14:34:25 2009
New Revision: 191917
URL: http://svn.freebsd.org/changeset/base/191917
Log:
A NOP change: style / whitespace cleanup of the noise that slipped
into r191816.
Spotted by: bz
Approved by: julian (mentor) (an earlier version of the diff)
Modified:
head/sys/kern/kern_linker.c
head/sys/kern/uipc_socket.c
head/sys/kern/uipc_syscalls.c
head/sys/netinet/tcp_hostcache.c
head/sys/sys/proc.h
head/sys/sys/vimage.h
Modified: head/sys/kern/kern_linker.c
==============================================================================
--- head/sys/kern/kern_linker.c Fri May 8 14:28:06 2009 (r191916)
+++ head/sys/kern/kern_linker.c Fri May 8 14:34:25 2009 (r191917)
@@ -999,7 +999,7 @@ kern_kldload(struct thread *td, const ch
#endif
/*
- * It's possible that kldloaded module will attach a new ifnet,
+ * It is possible that kldloaded module will attach a new ifnet,
* so vnet context must be set when this ocurs.
*/
CURVNET_SET(TD_TO_VNET(td));
Modified: head/sys/kern/uipc_socket.c
==============================================================================
--- head/sys/kern/uipc_socket.c Fri May 8 14:28:06 2009 (r191916)
+++ head/sys/kern/uipc_socket.c Fri May 8 14:34:25 2009 (r191917)
@@ -286,7 +286,7 @@ soalloc(struct vnet *vnet)
so->so_gencnt = ++so_gencnt;
++numopensockets;
#ifdef VIMAGE
- ++vnet->sockcnt; /* locked with so_global_mtx */
+ ++vnet->sockcnt; /* Locked with so_global_mtx. */
so->so_vnet = vnet;
#endif
mtx_unlock(&so_global_mtx);
@@ -1306,7 +1306,7 @@ sosend(struct socket *so, struct sockadd
CURVNET_SET(so->so_vnet);
error = so->so_proto->pr_usrreqs->pru_sosend(so, addr, uio, top,
- control, flags, td);
+ control, flags, td);
CURVNET_RESTORE();
return (error);
}
Modified: head/sys/kern/uipc_syscalls.c
==============================================================================
--- head/sys/kern/uipc_syscalls.c Fri May 8 14:28:06 2009 (r191916)
+++ head/sys/kern/uipc_syscalls.c Fri May 8 14:34:25 2009 (r191917)
@@ -63,8 +63,8 @@ __FBSDID("$FreeBSD$");
#include <sys/syscallsubr.h>
#include <sys/sysctl.h>
#include <sys/uio.h>
-#include <sys/vnode.h>
#include <sys/vimage.h>
+#include <sys/vnode.h>
#ifdef KTRACE
#include <sys/ktrace.h>
#endif
Modified: head/sys/netinet/tcp_hostcache.c
==============================================================================
--- head/sys/netinet/tcp_hostcache.c Fri May 8 14:28:06 2009 (r191916)
+++ head/sys/netinet/tcp_hostcache.c Fri May 8 14:34:25 2009 (r191917)
@@ -637,7 +637,7 @@ tcp_hc_purge(void *arg)
CURVNET_SET((struct vnet *) arg);
INIT_VNET_INET(curvnet);
struct hc_metrics *hc_entry, *hc_next;
- int all = 0; /* XXX was: (intptr_t)arg - makes no sense? */
+ int all = 0;
int i;
if (V_tcp_hostcache.purgeall) {
Modified: head/sys/sys/proc.h
==============================================================================
--- head/sys/sys/proc.h Fri May 8 14:28:06 2009 (r191916)
+++ head/sys/sys/proc.h Fri May 8 14:34:25 2009 (r191917)
@@ -275,8 +275,8 @@ struct thread {
struct lpohead td_lprof[2]; /* (a) lock profiling objects. */
struct kdtrace_thread *td_dtrace; /* (*) DTrace-specific data. */
int td_errno; /* Error returned by last syscall. */
- struct vnet *td_vnet; /* (*) Effective vnet */
- const char *td_vnet_lpush; /* (*) Debugging vnet push / pop */
+ struct vnet *td_vnet; /* (*) Effective vnet. */
+ const char *td_vnet_lpush; /* (*) Debugging vnet push / pop. */
};
struct mtx *thread_lock_block(struct thread *);
Modified: head/sys/sys/vimage.h
==============================================================================
--- head/sys/sys/vimage.h Fri May 8 14:28:06 2009 (r191916)
+++ head/sys/sys/vimage.h Fri May 8 14:34:25 2009 (r191917)
@@ -200,51 +200,51 @@ extern struct vprocg vprocg_0;
#endif
#endif
-#define curvnet curthread->td_vnet
+#define curvnet curthread->td_vnet
-#define VNET_MAGIC_N 0x3e0d8f29
+#define VNET_MAGIC_N 0x3e0d8f29
#ifdef VIMAGE
#ifdef VNET_DEBUG
-#define VNET_ASSERT(condition) \
+#define VNET_ASSERT(condition) \
if (!(condition)) { \
printf("VNET_ASSERT @ %s:%d %s():\n", \
__FILE__, __LINE__, __FUNCTION__); \
panic(#condition); \
}
-#define CURVNET_SET_QUIET(arg) \
+#define CURVNET_SET_QUIET(arg) \
VNET_ASSERT((arg)->vnet_magic_n == VNET_MAGIC_N); \
struct vnet *saved_vnet = curvnet; \
const char *saved_vnet_lpush = curthread->td_vnet_lpush; \
curvnet = arg; \
curthread->td_vnet_lpush = __FUNCTION__;
-#define CURVNET_SET_VERBOSE(arg) \
+#define CURVNET_SET_VERBOSE(arg) \
CURVNET_SET_QUIET(arg) \
if (saved_vnet) \
- printf("curvnet_set(%p) in %s() on cpu %d, prev %p in %s()\n", curvnet, \
- curthread->td_vnet_lpush, curcpu, \
+ printf("CURVNET_SET(%p) in %s() on cpu %d, prev %p in %s()\n", \
+ curvnet, curthread->td_vnet_lpush, curcpu, \
saved_vnet, saved_vnet_lpush);
-#define CURVNET_SET(arg) CURVNET_SET_VERBOSE(arg)
+#define CURVNET_SET(arg) CURVNET_SET_VERBOSE(arg)
-#define CURVNET_RESTORE() \
+#define CURVNET_RESTORE() \
VNET_ASSERT(saved_vnet == NULL || \
saved_vnet->vnet_magic_n == VNET_MAGIC_N); \
curvnet = saved_vnet; \
curthread->td_vnet_lpush = saved_vnet_lpush;
#else /* !VNET_DEBUG */
-#define VNET_ASSERT(condition)
+#define VNET_ASSERT(condition)
-#define CURVNET_SET(arg) \
+#define CURVNET_SET(arg) \
struct vnet *saved_vnet = curvnet; \
curvnet = arg;
-#define CURVNET_SET_VERBOSE(arg) CURVNET_SET(arg)
-#define CURVNET_SET_QUIET(arg) CURVNET_SET(arg)
+#define CURVNET_SET_VERBOSE(arg) CURVNET_SET(arg)
+#define CURVNET_SET_QUIET(arg) CURVNET_SET(arg)
-#define CURVNET_RESTORE() \
+#define CURVNET_RESTORE() \
curvnet = saved_vnet;
#endif /* !VNET_DEBUG */
#else /* !VIMAGE */
More information about the svn-src-head
mailing list