Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/fs/udf No IO_NODELOCKED for unlocked vnode.



details:   https://anonhg.NetBSD.org/src/rev/8bb461e81867
branches:  trunk
changeset: 365913:8bb461e81867
user:      hannken <hannken%NetBSD.org@localhost>
date:      Tue May 03 07:35:43 2022 +0000

description:
No IO_NODELOCKED for unlocked vnode.

diffstat:

 sys/fs/udf/udf_vnops.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 28da0457b41b -r 8bb461e81867 sys/fs/udf/udf_vnops.c
--- a/sys/fs/udf/udf_vnops.c    Tue May 03 07:34:38 2022 +0000
+++ b/sys/fs/udf/udf_vnops.c    Tue May 03 07:35:43 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_vnops.c,v 1.123 2022/04/10 09:50:46 andvar Exp $ */
+/* $NetBSD: udf_vnops.c,v 1.124 2022/05/03 07:35:43 hannken Exp $ */
 
 /*
  * Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: udf_vnops.c,v 1.123 2022/04/10 09:50:46 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udf_vnops.c,v 1.124 2022/05/03 07:35:43 hannken Exp $");
 #endif /* not lint */
 
 
@@ -1701,7 +1701,7 @@
        /* write out structure on the new file */
        error = vn_rdwr(UIO_WRITE, udf_node->vnode,
                pathbuf, pathlen, 0,
-               UIO_SYSSPACE, IO_NODELOCKED | IO_ALTSEMANTICS,
+               UIO_SYSSPACE, IO_ALTSEMANTICS,
                FSCRED, NULL, NULL);
 
        /* return status of symlink contents writeout */



Home | Main Index | Thread Index | Old Index