udf_get_node(): fix typo and honor "lktype" argument.

This commit is contained in:
hannken 2020-04-06 14:31:06 +00:00
parent 94c50ac97f
commit aa1a83f41d
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: udf_subr.c,v 1.149 2020/02/27 22:12:54 ad Exp $ */ /* $NetBSD: udf_subr.c,v 1.150 2020/04/06 14:31:06 hannken Exp $ */
/* /*
* Copyright (c) 2006, 2008 Reinoud Zandijk * Copyright (c) 2006, 2008 Reinoud Zandijk
@ -29,7 +29,7 @@
#include <sys/cdefs.h> #include <sys/cdefs.h>
#ifndef lint #ifndef lint
__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.149 2020/02/27 22:12:54 ad Exp $"); __KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.150 2020/04/06 14:31:06 hannken Exp $");
#endif /* not lint */ #endif /* not lint */
@ -5641,7 +5641,7 @@ udf_get_node(struct udf_mount *ump, struct long_ad *node_icb_loc,
sizeof(node_icb_loc->loc), &vp); sizeof(node_icb_loc->loc), &vp);
if (error) if (error)
return error; return error;
error = vn_lock(vp, LK_EXCLUSIVE); error = vn_lock(vp, lktype);
if (error) { if (error) {
vrele(vp); vrele(vp);
return error; return error;