summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_diskqueue.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/raidframe/rf_diskqueue.c b/sys/dev/raidframe/rf_diskqueue.c
index 2f8f56b47a1..1eec20486f6 100644
--- a/sys/dev/raidframe/rf_diskqueue.c
+++ b/sys/dev/raidframe/rf_diskqueue.c
@@ -392,6 +392,9 @@ rf_CreateDiskQueueData(RF_IoType_t typ, RF_SectorNum_t ssect,
buf_init(p->bp);
SET(p->bp->b_cflags, BC_BUSY); /* mark buffer busy */
+#ifdef LOCKDOC_VFS
+ lockdoc_log_lock(P_WRITE, &(p->bp->b_cflags), __FILE__, __LINE__, __func__, "b_cflags", 0);
+#endif
if (mbp) {
SET(p->bp->b_flags, mbp->b_flags & rf_b_pass);
p->bp->b_proc = mbp->b_proc;
011-11-19 22:51:18 +0000'>2011-11-19First step of random number subsystem rework described intls 2011-02-08Remove clause 3 (UCB advertising clause) from the University of Utahrmind 2009-09-12- fix warnings of printf(9) format and void pointer arithmetictsutsui 2009-05-12struct device * -> device_t, no functional changes intended.cegger 2009-05-12struct cfdata * -> cfdata_t, no functional changes intended.cegger 2009-03-14ANSIfy another 1261 function definitions.dsl 2009-03-14Change about 4500 of the K&R function definitions to ANSI ones.dsl 2009-01-13g/c BUFQ_FOO() macros and use bufq_foo() directly.yamt 2008-06-11- use device_lookup_private to get softccegger 2008-04-28Remove clause 3 and 4 from TNF licensesmartin 2008-04-08use aprint_*_dev and device_xnamecegger 2007-10-08Merge disk init changes from the vmlocking branch. These seperate init /ad 2007-07-29It's not a good idea for device drivers to modify b_flags, as they don'tad 2007-07-09Merge some of the less invasive changes from the vmlocking branch:ad 2007-03-04Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.christos 2007-01-13Complete initializers, teach drivers that we moved from struct proc tocube 2006-05-14integrate kauth.elad 2006-04-14Make i/o statistics collection more generic, include tape drives andblymn 2006-03-29Use device_private().thorpej 2006-03-28Use device_unit().thorpej 2006-03-25Use device_parent().thorpej 2006-02-25Fix some typos.wiz 2005-12-11merge ktrace-lwp.christos 2005-10-15- change the way to specify a bufq strategy. (by string rather than by number)yamt 2005-02-27nuke trailing whitespaceperry 2004-10-28move buffer queue related stuffs from buf.h to their own header, bufq.h.yamt 2004-08-28Remove the last vestiges of COMPAT_NOLABEL. It's been 10 years; labelthorpej 2003-08-07Move UCB-licensed code from 4-clause to 3-clause licence.agc 2003-06-02Port hp300 driver for HPIB/GPIB disks to MI gpib framework.gmcgarry