From c3c76f8185fd7f9995646dc6cb44a1777d80eabb Mon Sep 17 00:00:00 2001 From: phk Date: Tue, 15 Mar 2005 20:57:25 +0000 Subject: Eliminate cdev pointer in inodes, they're not used or needed. The cdev could have been pulled out of the mountpoint cheaper back when it was used anyway. --- sys/fs/msdosfs/msdosfs_denode.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sys/fs/msdosfs/msdosfs_denode.c') diff --git a/sys/fs/msdosfs/msdosfs_denode.c b/sys/fs/msdosfs/msdosfs_denode.c index 043e8e6..35e62cc 100644 --- a/sys/fs/msdosfs/msdosfs_denode.c +++ b/sys/fs/msdosfs/msdosfs_denode.c @@ -75,7 +75,7 @@ static MALLOC_DEFINE(M_MSDOSFSNODE, "MSDOSFS node", "MSDOSFS vnode private part" * If deget() succeeds it returns with the gotten denode locked(). * * pmp - address of msdosfsmount structure of the filesystem containing - * the denode of interest. The pm_dev field and the address of + * the denode of interest. The address of * the msdosfsmount structure are used. * dirclust - which cluster bp contains, if dirclust is 0 (root directory) * diroffset is relative to the beginning of the root directory, @@ -92,7 +92,6 @@ deget(pmp, dirclust, diroffset, depp) { int error; u_int hash; - struct cdev *dev = pmp->pm_dev; struct mount *mntp = pmp->pm_mountp; struct direntry *direntptr; struct denode *ldep; @@ -155,7 +154,6 @@ deget(pmp, dirclust, diroffset, depp) nvp->v_data = ldep; ldep->de_vnode = nvp; ldep->de_flag = 0; - ldep->de_dev = dev; ldep->de_dirclust = dirclust; ldep->de_diroffset = diroffset; fc_purge(ldep, 0); /* init the fat cache for this denode */ -- cgit v1.1