aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojciech A. Koszek <wkoszek@FreeBSD.org>2007-03-05 00:21:40 +0000
committerWojciech A. Koszek <wkoszek@FreeBSD.org>2007-03-05 00:21:40 +0000
commit59f65a4ba6b82bb73eacc2e7c5e9a43c52fa02a1 (patch)
tree853cb6d6736cda2a274fe3079ca448d3e52e09e4
parent759ace7eca618417b219369bf05fe8177958e525 (diff)
Notes
-rw-r--r--sys/kern/vfs_cluster.c2
-rw-r--r--sys/nfsserver/nfs_syscalls.c7
2 files changed, 4 insertions, 5 deletions
diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c
index 10366298377b..226d80f98f18 100644
--- a/sys/kern/vfs_cluster.c
+++ b/sys/kern/vfs_cluster.c
@@ -58,7 +58,7 @@ SYSCTL_INT(_debug, OID_AUTO, rcluster, CTLFLAG_RW, &rcluster, 0,
"Debug VFS clustering code");
#endif
-static MALLOC_DEFINE(M_SEGMENT, "cluster_save_buffer", "cluster_save buffer");
+static MALLOC_DEFINE(M_SEGMENT, "cl_savebuf", "cluster_save buffer");
static struct cluster_save *
cluster_collectbufs(struct vnode *vp, struct buf *last_bp);
diff --git a/sys/nfsserver/nfs_syscalls.c b/sys/nfsserver/nfs_syscalls.c
index d3eb5a090662..4c6b7f0a3c02 100644
--- a/sys/nfsserver/nfs_syscalls.c
+++ b/sys/nfsserver/nfs_syscalls.c
@@ -76,11 +76,10 @@ __FBSDID("$FreeBSD$");
#include <security/mac/mac_framework.h>
-static MALLOC_DEFINE(M_NFSSVC, "nfsserver_srvsock", "Nfs server structure");
-
-MALLOC_DEFINE(M_NFSRVDESC, "nfsserver_srvdesc", "NFS server socket descriptor");
-MALLOC_DEFINE(M_NFSD, "nfsserver_daemon", "Nfs server daemon structure");
+static MALLOC_DEFINE(M_NFSSVC, "nfss_srvsock", "Nfs server structure");
+MALLOC_DEFINE(M_NFSRVDESC, "nfss_srvdesc", "NFS server socket descriptor");
+MALLOC_DEFINE(M_NFSD, "nfss_daemon", "Nfs server daemon structure");
#define TRUE 1
#define FALSE 0