From 90499e3f8eb3ad46cecd13f6219e89c28e330a34 Mon Sep 17 00:00:00 2001 From: jhb Date: Fri, 27 Feb 2009 20:00:15 +0000 Subject: - Hold a reference on the cdev a filesystem is mounted from in the mount. - Remove the cdev pointers from the denode and instead use the mountpoint's reference to call dev2udev() in getattr(). Reviewed by: kib, julian --- sys/fs/msdosfs/denode.h | 1 - 1 file changed, 1 deletion(-) (limited to 'sys/fs/msdosfs/denode.h') diff --git a/sys/fs/msdosfs/denode.h b/sys/fs/msdosfs/denode.h index 4e03e9a..5d68d6f 100644 --- a/sys/fs/msdosfs/denode.h +++ b/sys/fs/msdosfs/denode.h @@ -139,7 +139,6 @@ struct fatcache { struct denode { struct vnode *de_vnode; /* addr of vnode we are part of */ u_long de_flag; /* flag bits */ - struct cdev *de_dev; /* device where direntry lives */ u_long de_dirclust; /* cluster of the directory file containing this entry */ u_long de_diroffset; /* offset of this entry in the directory cluster */ u_long de_fndoffset; /* offset of found dir entry */ -- cgit v1.1