Fri Aug 7 00:07:39 2009 UTC ()
Put the entire expression that DK_BUSY() evaluates to in parentheses
for safety.


(dyoung)
diff -r1.13 -r1.14 src/sys/dev/dkvar.h

cvs diff -r1.13 -r1.14 src/sys/dev/dkvar.h (switch to unified diff)

--- src/sys/dev/dkvar.h 2008/04/28 20:23:46 1.13
+++ src/sys/dev/dkvar.h 2009/08/07 00:07:39 1.14
@@ -1,114 +1,114 @@ @@ -1,114 +1,114 @@
1/* $NetBSD: dkvar.h,v 1.13 2008/04/28 20:23:46 martin Exp $ */ 1/* $NetBSD: dkvar.h,v 1.14 2009/08/07 00:07:39 dyoung Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2002 The NetBSD Foundation, Inc. 4 * Copyright (c) 2002 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Roland C. Dowdeswell. 8 * by Roland C. Dowdeswell.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright 15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the 16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution. 17 * documentation and/or other materials provided with the distribution.
18 * 18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE. 29 * POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32struct dk_geom { 32struct dk_geom {
33 u_int32_t pdg_secsize; 33 u_int32_t pdg_secsize;
34 u_int32_t pdg_nsectors; 34 u_int32_t pdg_nsectors;
35 u_int32_t pdg_ntracks; 35 u_int32_t pdg_ntracks;
36 u_int32_t pdg_ncylinders; 36 u_int32_t pdg_ncylinders;
37}; 37};
38 38
39/* literally this is not a softc, but is intended to be included in 39/* literally this is not a softc, but is intended to be included in
40 * the pseudo-disk's softc and passed to calls in dksubr.c. It 40 * the pseudo-disk's softc and passed to calls in dksubr.c. It
41 * should include the common elements of the pseudo-disk's softc. 41 * should include the common elements of the pseudo-disk's softc.
42 * All elements that are included here should describe the external 42 * All elements that are included here should describe the external
43 * representation of the disk to the higher layers, and flags that 43 * representation of the disk to the higher layers, and flags that
44 * are common to each of the pseudo-disk drivers. 44 * are common to each of the pseudo-disk drivers.
45 */ 45 */
46struct dk_softc { 46struct dk_softc {
47 void *sc_osc; /* the softc of the underlying 47 void *sc_osc; /* the softc of the underlying
48 * driver */ 48 * driver */
49 u_int32_t sc_flags; /* flags */ 49 u_int32_t sc_flags; /* flags */
50 size_t sc_size; /* size of disk */ 50 size_t sc_size; /* size of disk */
51 struct dk_geom sc_geom; /* geometry info */ 51 struct dk_geom sc_geom; /* geometry info */
52#define DK_XNAME_SIZE 8 52#define DK_XNAME_SIZE 8
53 char sc_xname[DK_XNAME_SIZE]; /* external name */ 53 char sc_xname[DK_XNAME_SIZE]; /* external name */
54 struct disk sc_dkdev; /* generic disk info */ 54 struct disk sc_dkdev; /* generic disk info */
55 struct bufq_state *sc_bufq; /* buffer queue */ 55 struct bufq_state *sc_bufq; /* buffer queue */
56}; 56};
57 57
58/* sc_flags: 58/* sc_flags:
59 * We separate the flags into two varieties, those that dksubr.c 59 * We separate the flags into two varieties, those that dksubr.c
60 * understands and manipulates and those that it does not. 60 * understands and manipulates and those that it does not.
61 */ 61 */
62 62
63#define DKF_INITED 0x00010000 /* unit has been initialised */ 63#define DKF_INITED 0x00010000 /* unit has been initialised */
64#define DKF_WLABEL 0x00020000 /* label area is writable */ 64#define DKF_WLABEL 0x00020000 /* label area is writable */
65#define DKF_LABELLING 0x00040000 /* unit is currently being labeled */ 65#define DKF_LABELLING 0x00040000 /* unit is currently being labeled */
66#define DKF_WARNLABEL 0x00080000 /* warn if disklabel not present */ 66#define DKF_WARNLABEL 0x00080000 /* warn if disklabel not present */
67#define DKF_LABELSANITY 0x00100000 /* warn if disklabel not sane */ 67#define DKF_LABELSANITY 0x00100000 /* warn if disklabel not sane */
68#define DKF_TAKEDUMP 0x00200000 /* allow dumping */ 68#define DKF_TAKEDUMP 0x00200000 /* allow dumping */
69 69
70/* Mask of flags that dksubr.c understands, other flags are fair game */ 70/* Mask of flags that dksubr.c understands, other flags are fair game */
71#define DK_FLAGMASK 0xffff0000 71#define DK_FLAGMASK 0xffff0000
72 72
73/* 73/*
74 * This defines the interface to the routines in dksubr.c. This 74 * This defines the interface to the routines in dksubr.c. This
75 * should be a single static structure per pseudo-disk driver. 75 * should be a single static structure per pseudo-disk driver.
76 * We only define the functions that we currently need. 76 * We only define the functions that we currently need.
77 */ 77 */
78struct dk_intf { 78struct dk_intf {
79 int di_dtype; /* disk type */ 79 int di_dtype; /* disk type */
80 const char *di_dkname; /* disk type name */ 80 const char *di_dkname; /* disk type name */
81 int (*di_open)(dev_t, int, int, struct lwp *); 81 int (*di_open)(dev_t, int, int, struct lwp *);
82 int (*di_close)(dev_t, int, int, struct lwp *); 82 int (*di_close)(dev_t, int, int, struct lwp *);
83 void (*di_strategy)(struct buf *); 83 void (*di_strategy)(struct buf *);
84 int (*di_diskstart)(struct dk_softc *, struct buf *); 84 int (*di_diskstart)(struct dk_softc *, struct buf *);
85}; 85};
86 86
87#define DK_BUSY(_dksc, _pmask) \ 87#define DK_BUSY(_dksc, _pmask) \
88 ((_dksc)->sc_dkdev.dk_openmask & ~(_pmask)) || \ 88 (((_dksc)->sc_dkdev.dk_openmask & ~(_pmask)) || \
89 ((_dksc)->sc_dkdev.dk_bopenmask & (_pmask) && \ 89 ((_dksc)->sc_dkdev.dk_bopenmask & (_pmask) && \
90 ((_dksc)->sc_dkdev.dk_copenmask & (_pmask))) 90 ((_dksc)->sc_dkdev.dk_copenmask & (_pmask))))
91 91
92/* 92/*
93 * Functions that are exported to the pseudo disk implementations: 93 * Functions that are exported to the pseudo disk implementations:
94 */ 94 */
95 95
96void dk_sc_init(struct dk_softc *, void *, const char *); 96void dk_sc_init(struct dk_softc *, void *, const char *);
97 97
98int dk_open(struct dk_intf *, struct dk_softc *, dev_t, 98int dk_open(struct dk_intf *, struct dk_softc *, dev_t,
99 int, int, struct lwp *); 99 int, int, struct lwp *);
100int dk_close(struct dk_intf *, struct dk_softc *, dev_t, 100int dk_close(struct dk_intf *, struct dk_softc *, dev_t,
101 int, int, struct lwp *); 101 int, int, struct lwp *);
102void dk_strategy(struct dk_intf *, struct dk_softc *, struct buf *); 102void dk_strategy(struct dk_intf *, struct dk_softc *, struct buf *);
103void dk_start(struct dk_intf *, struct dk_softc *); 103void dk_start(struct dk_intf *, struct dk_softc *);
104void dk_iodone(struct dk_intf *, struct dk_softc *); 104void dk_iodone(struct dk_intf *, struct dk_softc *);
105int dk_size(struct dk_intf *, struct dk_softc *, dev_t); 105int dk_size(struct dk_intf *, struct dk_softc *, dev_t);
106int dk_ioctl(struct dk_intf *, struct dk_softc *, dev_t, 106int dk_ioctl(struct dk_intf *, struct dk_softc *, dev_t,
107 u_long, void *, int, struct lwp *); 107 u_long, void *, int, struct lwp *);
108int dk_dump(struct dk_intf *, struct dk_softc *, dev_t, 108int dk_dump(struct dk_intf *, struct dk_softc *, dev_t,
109 daddr_t, void *, size_t); 109 daddr_t, void *, size_t);
110void dk_getdisklabel(struct dk_intf *, struct dk_softc *, dev_t); 110void dk_getdisklabel(struct dk_intf *, struct dk_softc *, dev_t);
111void dk_getdefaultlabel(struct dk_intf *, struct dk_softc *, 111void dk_getdefaultlabel(struct dk_intf *, struct dk_softc *,
112 struct disklabel *); 112 struct disklabel *);
113 113
114int dk_lookup(const char *, struct lwp *, struct vnode **, enum uio_seg); 114int dk_lookup(const char *, struct lwp *, struct vnode **, enum uio_seg);