diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2021-08-01 17:53:12 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2021-09-03 01:08:35 +0000 |
commit | 7b81dd6f3d6df9ad40b46cdbc8b0a46e911a326d (patch) | |
tree | c38fd508cea94be0f9b27e245a562ec0b57d6c12 /sys/fs/msdosfs/denode.h | |
parent | 3abc8ac68a98bc370d07b60b83f6b5f53ba029a4 (diff) |
msdosfs deget(): add locking flags argument
(cherry picked from commit ae7e8a02e6e93455e026036132c4d053b2c12ad9)
Diffstat (limited to 'sys/fs/msdosfs/denode.h')
-rw-r--r-- | sys/fs/msdosfs/denode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/msdosfs/denode.h b/sys/fs/msdosfs/denode.h index e179bcfa7dd5..fae05749bede 100644 --- a/sys/fs/msdosfs/denode.h +++ b/sys/fs/msdosfs/denode.h @@ -273,7 +273,7 @@ int msdosfs_lookup_ino(struct vnode *vdp, struct vnode **vpp, /* * Internal service routine prototypes. */ -int deget(struct msdosfsmount *, u_long, u_long, struct denode **); +int deget(struct msdosfsmount *, u_long, u_long, int, struct denode **); int uniqdosname(struct denode *, struct componentname *, u_char *); int readep(struct msdosfsmount *pmp, u_long dirclu, u_long dirofs, struct buf **bpp, struct direntry **epp); |