diff options
| author | riastradh <riastradh@NetBSD.org> | 2023-04-29 13:00:17 +0000 |
|---|---|---|
| committer | riastradh <riastradh@NetBSD.org> | 2023-04-29 13:00:17 +0000 |
| commit | 4812ee024b2d8dddf7c89536ca0b4f8afc84f001 (patch) | |
| tree | 1bfa53f1c8d8798f0370d9e80f3cfa21241eded7 /sys/dev | |
| parent | 7ecb6204265b67ffe9f501d3cb70c1598e3a17b4 (diff) | |
dk(4): Rename label for consistency. No functional change intended.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/dkwedge/dk.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sys/dev/dkwedge/dk.c b/sys/dev/dkwedge/dk.c index aa464a199ef..e244eb6d1bc 100644 --- a/sys/dev/dkwedge/dk.c +++ b/sys/dev/dkwedge/dk.c @@ -1,4 +1,4 @@ -/* $NetBSD: dk.c,v 1.151 2023/04/29 06:23:37 riastradh Exp $ */ +/* $NetBSD: dk.c,v 1.152 2023/04/29 13:00:17 riastradh Exp $ */ /*- * Copyright (c) 2004, 2005, 2006, 2007 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: dk.c,v 1.151 2023/04/29 06:23:37 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: dk.c,v 1.152 2023/04/29 13:00:17 riastradh Exp $"); #ifdef _KERNEL_OPT #include "opt_dkwedge.h" @@ -1282,12 +1282,12 @@ dkopen(dev_t dev, int flags, int fmt, struct lwp *l) if (sc->sc_dk.dk_openmask == 0) { error = dkfirstopen(sc, flags); if (error) - goto popen_fail; + goto out; } KASSERT(sc->sc_mode != 0); if (flags & ~sc->sc_mode & FWRITE) { error = EROFS; - goto popen_fail; + goto out; } if (fmt == S_IFCHR) sc->sc_dk.dk_copenmask |= 1; @@ -1296,8 +1296,7 @@ dkopen(dev_t dev, int flags, int fmt, struct lwp *l) sc->sc_dk.dk_openmask = sc->sc_dk.dk_copenmask | sc->sc_dk.dk_bopenmask; -popen_fail: - mutex_exit(&sc->sc_parent->dk_rawlock); +out: mutex_exit(&sc->sc_parent->dk_rawlock); mutex_exit(&sc->sc_dk.dk_openlock); return error; } |
