summaryrefslogtreecommitdiffstats
path: root/sys/fs/msdosfs/msdosfs_denode.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2005-03-15 20:57:25 +0000
committerphk <phk@FreeBSD.org>2005-03-15 20:57:25 +0000
commitc3c76f8185fd7f9995646dc6cb44a1777d80eabb (patch)
treeeb297a278155e0363fa141c673bde7ae86289c95 /sys/fs/msdosfs/msdosfs_denode.c
parent54d4b170ba58d9c68e9c061f308d68044a34056f (diff)
downloadFreeBSD-src-c3c76f8185fd7f9995646dc6cb44a1777d80eabb.zip
FreeBSD-src-c3c76f8185fd7f9995646dc6cb44a1777d80eabb.tar.gz
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.
Diffstat (limited to 'sys/fs/msdosfs/msdosfs_denode.c')
-rw-r--r--sys/fs/msdosfs/msdosfs_denode.c4
1 files changed, 1 insertions, 3 deletions
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 */
OpenPOWER on IntegriCloud