From 311b95bbcda7b8b3314e599b61ae538da3305517 Mon Sep 17 00:00:00 2001 From: Robert Wing Date: Sat, 23 Oct 2021 16:13:20 -0800 Subject: [PATCH] sys/mount.h: remove dead prototype vfs_getrootfsid() was removed in 245efbba4d6a3e60a0d6d16d18d9a5fad6260733 Reviewed by: mjg Differential Revision: https://reviews.freebsd.org/D32606 --- sys/sys/mount.h | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/sys/mount.h b/sys/sys/mount.h index 8368595b685..68211785b7c 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -1014,7 +1014,6 @@ void vfs_deallocate_syncvnode(struct mount *); int vfs_donmount(struct thread *td, uint64_t fsflags, struct uio *fsoptions); void vfs_getnewfsid(struct mount *); -struct cdev *vfs_getrootfsid(struct mount *); struct mount *vfs_getvfs(fsid_t *); /* return vfs given fsid */ struct mount *vfs_busyfs(fsid_t *); int vfs_modevent(module_t, int, void *);