From 9b258fca273b5551a3b619dbde390ec46c0b3b47 Mon Sep 17 00:00:00 2001 From: Xin LI Date: Fri, 29 Jun 2007 05:23:15 +0000 Subject: MFp4: - Remove unnecessary NULL checks after M_WAITOK allocations. - Use VOP_ACCESS instead of hand-rolled suser_cred() calls. [1] - Use malloc(9) KPI to allocate memory for string. The optimization taken from NetBSD is not valid for FreeBSD because our malloc(9) already act that way. [2] Requested by: rwatson [1] Submitted by: Howard Su [2] Approved by: re (tmpfs blanket) --- sys/modules/tmpfs/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sys/modules/tmpfs') diff --git a/sys/modules/tmpfs/Makefile b/sys/modules/tmpfs/Makefile index 84feb88830f6..85aaaca856a0 100644 --- a/sys/modules/tmpfs/Makefile +++ b/sys/modules/tmpfs/Makefile @@ -4,7 +4,6 @@ KMOD= tmpfs SRCS= vnode_if.h \ - tmpfs_vnops.c tmpfs_fifoops.c tmpfs_vfsops.c tmpfs_subr.c \ - tmpfs_uma.c + tmpfs_vnops.c tmpfs_fifoops.c tmpfs_vfsops.c tmpfs_subr.c .include -- cgit v1.3