summaryrefslogtreecommitdiffstats
path: root/sys/fs/nullfs
diff options
context:
space:
mode:
authortrasz <trasz@FreeBSD.org>2016-11-03 15:01:23 +0000
committertrasz <trasz@FreeBSD.org>2016-11-03 15:01:23 +0000
commit88bc4f2b8729ab1f547b2cf6cbbec356bfc29a88 (patch)
tree8ba204a3814dd0a5724966c6cdb3eed7e73269cb /sys/fs/nullfs
parentb4c4940510a04f78502ad4eb1f631e593b7b5f63 (diff)
downloadFreeBSD-src-88bc4f2b8729ab1f547b2cf6cbbec356bfc29a88.zip
FreeBSD-src-88bc4f2b8729ab1f547b2cf6cbbec356bfc29a88.tar.gz
MFC r305834:
Change the getnewvnode(9) tag for nullfs from "null" to "nullfs". It's more consistent, and besides, the "null" alone looks weird. MFC after: 1 month
Diffstat (limited to 'sys/fs/nullfs')
-rw-r--r--sys/fs/nullfs/null_subr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/nullfs/null_subr.c b/sys/fs/nullfs/null_subr.c
index 4d29add..39aa689 100644
--- a/sys/fs/nullfs/null_subr.c
+++ b/sys/fs/nullfs/null_subr.c
@@ -238,7 +238,7 @@ null_nodeget(mp, lowervp, vpp)
*/
xp = malloc(sizeof(struct null_node), M_NULLFSNODE, M_WAITOK);
- error = getnewvnode("null", mp, &null_vnodeops, &vp);
+ error = getnewvnode("nullfs", mp, &null_vnodeops, &vp);
if (error) {
vput(lowervp);
free(xp, M_NULLFSNODE);
OpenPOWER on IntegriCloud