1 // SPDX-License-Identifier: GPL-2.0
3 * buffered writeback throttling. loosely based on CoDel. We can't drop
4 * packets for IO scheduling, so the logic is something like this:
6 * - Monitor latencies in a defined window of time.
7 * - If the minimum latency in the above window exceeds some target, increment
8 * scaling step and scale down queue depth by a factor of 2x. The monitoring
9 * window is then shrunk to 100 / sqrt(scaling step + 1).
10 * - For any window where we don't have solid data on what the latencies
11 * look like, retain status quo.
12 * - If latencies look good, decrement scaling step.
13 * - If we're only doing writes, allow the scaling step to go negative. This
14 * will temporarily boost write performance, snapping back to a stable
15 * scaling step of 0 if reads show up or the heavy writers finish. Unlike
16 * positive scaling steps where we shrink the monitoring window, a negative
17 * scaling step retains the default step==0 window size.
19 * Copyright (C) 2016 Jens Axboe
22 #include <linux/kernel.h>
23 #include <linux/blk_types.h>
24 #include <linux/slab.h>
25 #include <linux/backing-dev.h>
26 #include <linux/swap.h>
29 #include "blk-rq-qos.h"
31 #define CREATE_TRACE_POINTS
32 #include <trace/events/wbt.h>
34 static inline void wbt_clear_state(struct request
*rq
)
39 static inline enum wbt_flags
wbt_flags(struct request
*rq
)
44 static inline bool wbt_is_tracked(struct request
*rq
)
46 return rq
->wbt_flags
& WBT_TRACKED
;
49 static inline bool wbt_is_read(struct request
*rq
)
51 return rq
->wbt_flags
& WBT_READ
;
56 * Default setting, we'll scale up (to 75% of QD max) or down (min 1)
57 * from here depending on device stats
64 RWB_WINDOW_NSEC
= 100 * 1000 * 1000ULL,
67 * Disregard stats, if we don't meet this minimum
69 RWB_MIN_WRITE_SAMPLES
= 3,
72 * If we have this number of consecutive windows with not enough
73 * information to scale up or down, scale up.
78 static inline bool rwb_enabled(struct rq_wb
*rwb
)
80 return rwb
&& rwb
->wb_normal
!= 0;
83 static void wb_timestamp(struct rq_wb
*rwb
, unsigned long *var
)
85 if (rwb_enabled(rwb
)) {
86 const unsigned long cur
= jiffies
;
94 * If a task was rate throttled in balance_dirty_pages() within the last
95 * second or so, use that to indicate a higher cleaning rate.
97 static bool wb_recent_wait(struct rq_wb
*rwb
)
99 struct bdi_writeback
*wb
= &rwb
->rqos
.q
->backing_dev_info
->wb
;
101 return time_before(jiffies
, wb
->dirty_sleep
+ HZ
);
104 static inline struct rq_wait
*get_rq_wait(struct rq_wb
*rwb
,
105 enum wbt_flags wb_acct
)
107 if (wb_acct
& WBT_KSWAPD
)
108 return &rwb
->rq_wait
[WBT_RWQ_KSWAPD
];
109 else if (wb_acct
& WBT_DISCARD
)
110 return &rwb
->rq_wait
[WBT_RWQ_DISCARD
];
112 return &rwb
->rq_wait
[WBT_RWQ_BG
];
115 static void rwb_wake_all(struct rq_wb
*rwb
)
119 for (i
= 0; i
< WBT_NUM_RWQ
; i
++) {
120 struct rq_wait
*rqw
= &rwb
->rq_wait
[i
];
122 if (wq_has_sleeper(&rqw
->wait
))
123 wake_up_all(&rqw
->wait
);
127 static void wbt_rqw_done(struct rq_wb
*rwb
, struct rq_wait
*rqw
,
128 enum wbt_flags wb_acct
)
132 inflight
= atomic_dec_return(&rqw
->inflight
);
135 * wbt got disabled with IO in flight. Wake up any potential
136 * waiters, we don't have to do more than that.
138 if (unlikely(!rwb_enabled(rwb
))) {
144 * For discards, our limit is always the background. For writes, if
145 * the device does write back caching, drop further down before we
148 if (wb_acct
& WBT_DISCARD
)
149 limit
= rwb
->wb_background
;
150 else if (rwb
->wc
&& !wb_recent_wait(rwb
))
153 limit
= rwb
->wb_normal
;
156 * Don't wake anyone up if we are above the normal limit.
158 if (inflight
&& inflight
>= limit
)
161 if (wq_has_sleeper(&rqw
->wait
)) {
162 int diff
= limit
- inflight
;
164 if (!inflight
|| diff
>= rwb
->wb_background
/ 2)
165 wake_up_all(&rqw
->wait
);
169 static void __wbt_done(struct rq_qos
*rqos
, enum wbt_flags wb_acct
)
171 struct rq_wb
*rwb
= RQWB(rqos
);
174 if (!(wb_acct
& WBT_TRACKED
))
177 rqw
= get_rq_wait(rwb
, wb_acct
);
178 wbt_rqw_done(rwb
, rqw
, wb_acct
);
182 * Called on completion of a request. Note that it's also called when
183 * a request is merged, when the request gets freed.
185 static void wbt_done(struct rq_qos
*rqos
, struct request
*rq
)
187 struct rq_wb
*rwb
= RQWB(rqos
);
189 if (!wbt_is_tracked(rq
)) {
190 if (rwb
->sync_cookie
== rq
) {
192 rwb
->sync_cookie
= NULL
;
196 wb_timestamp(rwb
, &rwb
->last_comp
);
198 WARN_ON_ONCE(rq
== rwb
->sync_cookie
);
199 __wbt_done(rqos
, wbt_flags(rq
));
204 static inline bool stat_sample_valid(struct blk_rq_stat
*stat
)
207 * We need at least one read sample, and a minimum of
208 * RWB_MIN_WRITE_SAMPLES. We require some write samples to know
209 * that it's writes impacting us, and not just some sole read on
210 * a device that is in a lower power state.
212 return (stat
[READ
].nr_samples
>= 1 &&
213 stat
[WRITE
].nr_samples
>= RWB_MIN_WRITE_SAMPLES
);
216 static u64
rwb_sync_issue_lat(struct rq_wb
*rwb
)
218 u64 now
, issue
= READ_ONCE(rwb
->sync_issue
);
220 if (!issue
|| !rwb
->sync_cookie
)
223 now
= ktime_to_ns(ktime_get());
234 static int latency_exceeded(struct rq_wb
*rwb
, struct blk_rq_stat
*stat
)
236 struct backing_dev_info
*bdi
= rwb
->rqos
.q
->backing_dev_info
;
237 struct rq_depth
*rqd
= &rwb
->rq_depth
;
241 * If our stored sync issue exceeds the window size, or it
242 * exceeds our min target AND we haven't logged any entries,
243 * flag the latency as exceeded. wbt works off completion latencies,
244 * but for a flooded device, a single sync IO can take a long time
245 * to complete after being issued. If this time exceeds our
246 * monitoring window AND we didn't see any other completions in that
247 * window, then count that sync IO as a violation of the latency.
249 thislat
= rwb_sync_issue_lat(rwb
);
250 if (thislat
> rwb
->cur_win_nsec
||
251 (thislat
> rwb
->min_lat_nsec
&& !stat
[READ
].nr_samples
)) {
252 trace_wbt_lat(bdi
, thislat
);
257 * No read/write mix, if stat isn't valid
259 if (!stat_sample_valid(stat
)) {
261 * If we had writes in this stat window and the window is
262 * current, we're only doing writes. If a task recently
263 * waited or still has writes in flights, consider us doing
264 * just writes as well.
266 if (stat
[WRITE
].nr_samples
|| wb_recent_wait(rwb
) ||
268 return LAT_UNKNOWN_WRITES
;
273 * If the 'min' latency exceeds our target, step down.
275 if (stat
[READ
].min
> rwb
->min_lat_nsec
) {
276 trace_wbt_lat(bdi
, stat
[READ
].min
);
277 trace_wbt_stat(bdi
, stat
);
282 trace_wbt_stat(bdi
, stat
);
287 static void rwb_trace_step(struct rq_wb
*rwb
, const char *msg
)
289 struct backing_dev_info
*bdi
= rwb
->rqos
.q
->backing_dev_info
;
290 struct rq_depth
*rqd
= &rwb
->rq_depth
;
292 trace_wbt_step(bdi
, msg
, rqd
->scale_step
, rwb
->cur_win_nsec
,
293 rwb
->wb_background
, rwb
->wb_normal
, rqd
->max_depth
);
296 static void calc_wb_limits(struct rq_wb
*rwb
)
298 if (rwb
->min_lat_nsec
== 0) {
299 rwb
->wb_normal
= rwb
->wb_background
= 0;
300 } else if (rwb
->rq_depth
.max_depth
<= 2) {
301 rwb
->wb_normal
= rwb
->rq_depth
.max_depth
;
302 rwb
->wb_background
= 1;
304 rwb
->wb_normal
= (rwb
->rq_depth
.max_depth
+ 1) / 2;
305 rwb
->wb_background
= (rwb
->rq_depth
.max_depth
+ 3) / 4;
309 static void scale_up(struct rq_wb
*rwb
)
311 rq_depth_scale_up(&rwb
->rq_depth
);
313 rwb
->unknown_cnt
= 0;
315 rwb_trace_step(rwb
, "scale up");
318 static void scale_down(struct rq_wb
*rwb
, bool hard_throttle
)
320 rq_depth_scale_down(&rwb
->rq_depth
, hard_throttle
);
322 rwb
->unknown_cnt
= 0;
323 rwb_trace_step(rwb
, "scale down");
326 static void rwb_arm_timer(struct rq_wb
*rwb
)
328 struct rq_depth
*rqd
= &rwb
->rq_depth
;
330 if (rqd
->scale_step
> 0) {
332 * We should speed this up, using some variant of a fast
333 * integer inverse square root calculation. Since we only do
334 * this for every window expiration, it's not a huge deal,
337 rwb
->cur_win_nsec
= div_u64(rwb
->win_nsec
<< 4,
338 int_sqrt((rqd
->scale_step
+ 1) << 8));
341 * For step < 0, we don't want to increase/decrease the
344 rwb
->cur_win_nsec
= rwb
->win_nsec
;
347 blk_stat_activate_nsecs(rwb
->cb
, rwb
->cur_win_nsec
);
350 static void wb_timer_fn(struct blk_stat_callback
*cb
)
352 struct rq_wb
*rwb
= cb
->data
;
353 struct rq_depth
*rqd
= &rwb
->rq_depth
;
354 unsigned int inflight
= wbt_inflight(rwb
);
357 status
= latency_exceeded(rwb
, cb
->stat
);
359 trace_wbt_timer(rwb
->rqos
.q
->backing_dev_info
, status
, rqd
->scale_step
,
363 * If we exceeded the latency target, step down. If we did not,
364 * step one level up. If we don't know enough to say either exceeded
365 * or ok, then don't do anything.
369 scale_down(rwb
, true);
374 case LAT_UNKNOWN_WRITES
:
376 * We started a the center step, but don't have a valid
377 * read/write sample, but we do have writes going on.
378 * Allow step to go negative, to increase write perf.
383 if (++rwb
->unknown_cnt
< RWB_UNKNOWN_BUMP
)
386 * We get here when previously scaled reduced depth, and we
387 * currently don't have a valid read/write sample. For that
388 * case, slowly return to center state (step == 0).
390 if (rqd
->scale_step
> 0)
392 else if (rqd
->scale_step
< 0)
393 scale_down(rwb
, false);
400 * Re-arm timer, if we have IO in flight
402 if (rqd
->scale_step
|| inflight
)
406 static void __wbt_update_limits(struct rq_wb
*rwb
)
408 struct rq_depth
*rqd
= &rwb
->rq_depth
;
411 rqd
->scaled_max
= false;
413 rq_depth_calc_max_depth(rqd
);
419 void wbt_update_limits(struct request_queue
*q
)
421 struct rq_qos
*rqos
= wbt_rq_qos(q
);
424 __wbt_update_limits(RQWB(rqos
));
427 u64
wbt_get_min_lat(struct request_queue
*q
)
429 struct rq_qos
*rqos
= wbt_rq_qos(q
);
432 return RQWB(rqos
)->min_lat_nsec
;
435 void wbt_set_min_lat(struct request_queue
*q
, u64 val
)
437 struct rq_qos
*rqos
= wbt_rq_qos(q
);
440 RQWB(rqos
)->min_lat_nsec
= val
;
441 RQWB(rqos
)->enable_state
= WBT_STATE_ON_MANUAL
;
442 __wbt_update_limits(RQWB(rqos
));
446 static bool close_io(struct rq_wb
*rwb
)
448 const unsigned long now
= jiffies
;
450 return time_before(now
, rwb
->last_issue
+ HZ
/ 10) ||
451 time_before(now
, rwb
->last_comp
+ HZ
/ 10);
454 #define REQ_HIPRIO (REQ_SYNC | REQ_META | REQ_PRIO)
456 static inline unsigned int get_limit(struct rq_wb
*rwb
, unsigned long rw
)
461 * If we got disabled, just return UINT_MAX. This ensures that
462 * we'll properly inc a new IO, and dec+wakeup at the end.
464 if (!rwb_enabled(rwb
))
467 if ((rw
& REQ_OP_MASK
) == REQ_OP_DISCARD
)
468 return rwb
->wb_background
;
471 * At this point we know it's a buffered write. If this is
472 * kswapd trying to free memory, or REQ_SYNC is set, then
473 * it's WB_SYNC_ALL writeback, and we'll use the max limit for
474 * that. If the write is marked as a background write, then use
475 * the idle limit, or go to normal if we haven't had competing
478 if ((rw
& REQ_HIPRIO
) || wb_recent_wait(rwb
) || current_is_kswapd())
479 limit
= rwb
->rq_depth
.max_depth
;
480 else if ((rw
& REQ_BACKGROUND
) || close_io(rwb
)) {
482 * If less than 100ms since we completed unrelated IO,
483 * limit us to half the depth for background writeback.
485 limit
= rwb
->wb_background
;
487 limit
= rwb
->wb_normal
;
492 struct wbt_wait_data
{
494 enum wbt_flags wb_acct
;
498 static bool wbt_inflight_cb(struct rq_wait
*rqw
, void *private_data
)
500 struct wbt_wait_data
*data
= private_data
;
501 return rq_wait_inc_below(rqw
, get_limit(data
->rwb
, data
->rw
));
504 static void wbt_cleanup_cb(struct rq_wait
*rqw
, void *private_data
)
506 struct wbt_wait_data
*data
= private_data
;
507 wbt_rqw_done(data
->rwb
, rqw
, data
->wb_acct
);
511 * Block if we will exceed our limit, or if we are currently waiting for
512 * the timer to kick off queuing again.
514 static void __wbt_wait(struct rq_wb
*rwb
, enum wbt_flags wb_acct
,
517 struct rq_wait
*rqw
= get_rq_wait(rwb
, wb_acct
);
518 struct wbt_wait_data data
= {
524 rq_qos_wait(rqw
, &data
, wbt_inflight_cb
, wbt_cleanup_cb
);
527 static inline bool wbt_should_throttle(struct rq_wb
*rwb
, struct bio
*bio
)
529 switch (bio_op(bio
)) {
532 * Don't throttle WRITE_ODIRECT
534 if ((bio
->bi_opf
& (REQ_SYNC
| REQ_IDLE
)) ==
535 (REQ_SYNC
| REQ_IDLE
))
545 static enum wbt_flags
bio_to_wbt_flags(struct rq_wb
*rwb
, struct bio
*bio
)
547 enum wbt_flags flags
= 0;
549 if (!rwb_enabled(rwb
))
552 if (bio_op(bio
) == REQ_OP_READ
) {
554 } else if (wbt_should_throttle(rwb
, bio
)) {
555 if (current_is_kswapd())
557 if (bio_op(bio
) == REQ_OP_DISCARD
)
558 flags
|= WBT_DISCARD
;
559 flags
|= WBT_TRACKED
;
564 static void wbt_cleanup(struct rq_qos
*rqos
, struct bio
*bio
)
566 struct rq_wb
*rwb
= RQWB(rqos
);
567 enum wbt_flags flags
= bio_to_wbt_flags(rwb
, bio
);
568 __wbt_done(rqos
, flags
);
572 * Returns true if the IO request should be accounted, false if not.
573 * May sleep, if we have exceeded the writeback limits. Caller can pass
574 * in an irq held spinlock, if it holds one when calling this function.
575 * If we do sleep, we'll release and re-grab it.
577 static void wbt_wait(struct rq_qos
*rqos
, struct bio
*bio
)
579 struct rq_wb
*rwb
= RQWB(rqos
);
580 enum wbt_flags flags
;
582 flags
= bio_to_wbt_flags(rwb
, bio
);
583 if (!(flags
& WBT_TRACKED
)) {
584 if (flags
& WBT_READ
)
585 wb_timestamp(rwb
, &rwb
->last_issue
);
589 __wbt_wait(rwb
, flags
, bio
->bi_opf
);
591 if (!blk_stat_is_active(rwb
->cb
))
595 static void wbt_track(struct rq_qos
*rqos
, struct request
*rq
, struct bio
*bio
)
597 struct rq_wb
*rwb
= RQWB(rqos
);
598 rq
->wbt_flags
|= bio_to_wbt_flags(rwb
, bio
);
601 static void wbt_issue(struct rq_qos
*rqos
, struct request
*rq
)
603 struct rq_wb
*rwb
= RQWB(rqos
);
605 if (!rwb_enabled(rwb
))
609 * Track sync issue, in case it takes a long time to complete. Allows us
610 * to react quicker, if a sync IO takes a long time to complete. Note
611 * that this is just a hint. The request can go away when it completes,
612 * so it's important we never dereference it. We only use the address to
613 * compare with, which is why we store the sync_issue time locally.
615 if (wbt_is_read(rq
) && !rwb
->sync_issue
) {
616 rwb
->sync_cookie
= rq
;
617 rwb
->sync_issue
= rq
->io_start_time_ns
;
621 static void wbt_requeue(struct rq_qos
*rqos
, struct request
*rq
)
623 struct rq_wb
*rwb
= RQWB(rqos
);
624 if (!rwb_enabled(rwb
))
626 if (rq
== rwb
->sync_cookie
) {
628 rwb
->sync_cookie
= NULL
;
632 void wbt_set_write_cache(struct request_queue
*q
, bool write_cache_on
)
634 struct rq_qos
*rqos
= wbt_rq_qos(q
);
636 RQWB(rqos
)->wc
= write_cache_on
;
640 * Enable wbt if defaults are configured that way
642 void wbt_enable_default(struct request_queue
*q
)
644 struct rq_qos
*rqos
= wbt_rq_qos(q
);
645 /* Throttling already enabled? */
649 /* Queue not registered? Maybe shutting down... */
650 if (!blk_queue_registered(q
))
653 if (queue_is_mq(q
) && IS_ENABLED(CONFIG_BLK_WBT_MQ
))
656 EXPORT_SYMBOL_GPL(wbt_enable_default
);
658 u64
wbt_default_latency_nsec(struct request_queue
*q
)
661 * We default to 2msec for non-rotational storage, and 75msec
662 * for rotational storage.
664 if (blk_queue_nonrot(q
))
670 static int wbt_data_dir(const struct request
*rq
)
672 const int op
= req_op(rq
);
674 if (op
== REQ_OP_READ
)
676 else if (op_is_write(op
))
683 static void wbt_queue_depth_changed(struct rq_qos
*rqos
)
685 RQWB(rqos
)->rq_depth
.queue_depth
= blk_queue_depth(rqos
->q
);
686 __wbt_update_limits(RQWB(rqos
));
689 static void wbt_exit(struct rq_qos
*rqos
)
691 struct rq_wb
*rwb
= RQWB(rqos
);
692 struct request_queue
*q
= rqos
->q
;
694 blk_stat_remove_callback(q
, rwb
->cb
);
695 blk_stat_free_callback(rwb
->cb
);
700 * Disable wbt, if enabled by default.
702 void wbt_disable_default(struct request_queue
*q
)
704 struct rq_qos
*rqos
= wbt_rq_qos(q
);
709 if (rwb
->enable_state
== WBT_STATE_ON_DEFAULT
) {
710 blk_stat_deactivate(rwb
->cb
);
714 EXPORT_SYMBOL_GPL(wbt_disable_default
);
716 #ifdef CONFIG_BLK_DEBUG_FS
717 static int wbt_curr_win_nsec_show(void *data
, struct seq_file
*m
)
719 struct rq_qos
*rqos
= data
;
720 struct rq_wb
*rwb
= RQWB(rqos
);
722 seq_printf(m
, "%llu\n", rwb
->cur_win_nsec
);
726 static int wbt_enabled_show(void *data
, struct seq_file
*m
)
728 struct rq_qos
*rqos
= data
;
729 struct rq_wb
*rwb
= RQWB(rqos
);
731 seq_printf(m
, "%d\n", rwb
->enable_state
);
735 static int wbt_id_show(void *data
, struct seq_file
*m
)
737 struct rq_qos
*rqos
= data
;
739 seq_printf(m
, "%u\n", rqos
->id
);
743 static int wbt_inflight_show(void *data
, struct seq_file
*m
)
745 struct rq_qos
*rqos
= data
;
746 struct rq_wb
*rwb
= RQWB(rqos
);
749 for (i
= 0; i
< WBT_NUM_RWQ
; i
++)
750 seq_printf(m
, "%d: inflight %d\n", i
,
751 atomic_read(&rwb
->rq_wait
[i
].inflight
));
755 static int wbt_min_lat_nsec_show(void *data
, struct seq_file
*m
)
757 struct rq_qos
*rqos
= data
;
758 struct rq_wb
*rwb
= RQWB(rqos
);
760 seq_printf(m
, "%lu\n", rwb
->min_lat_nsec
);
764 static int wbt_unknown_cnt_show(void *data
, struct seq_file
*m
)
766 struct rq_qos
*rqos
= data
;
767 struct rq_wb
*rwb
= RQWB(rqos
);
769 seq_printf(m
, "%u\n", rwb
->unknown_cnt
);
773 static int wbt_normal_show(void *data
, struct seq_file
*m
)
775 struct rq_qos
*rqos
= data
;
776 struct rq_wb
*rwb
= RQWB(rqos
);
778 seq_printf(m
, "%u\n", rwb
->wb_normal
);
782 static int wbt_background_show(void *data
, struct seq_file
*m
)
784 struct rq_qos
*rqos
= data
;
785 struct rq_wb
*rwb
= RQWB(rqos
);
787 seq_printf(m
, "%u\n", rwb
->wb_background
);
791 static const struct blk_mq_debugfs_attr wbt_debugfs_attrs
[] = {
792 {"curr_win_nsec", 0400, wbt_curr_win_nsec_show
},
793 {"enabled", 0400, wbt_enabled_show
},
794 {"id", 0400, wbt_id_show
},
795 {"inflight", 0400, wbt_inflight_show
},
796 {"min_lat_nsec", 0400, wbt_min_lat_nsec_show
},
797 {"unknown_cnt", 0400, wbt_unknown_cnt_show
},
798 {"wb_normal", 0400, wbt_normal_show
},
799 {"wb_background", 0400, wbt_background_show
},
804 static struct rq_qos_ops wbt_rqos_ops
= {
805 .throttle
= wbt_wait
,
808 .requeue
= wbt_requeue
,
810 .cleanup
= wbt_cleanup
,
811 .queue_depth_changed
= wbt_queue_depth_changed
,
813 #ifdef CONFIG_BLK_DEBUG_FS
814 .debugfs_attrs
= wbt_debugfs_attrs
,
818 int wbt_init(struct request_queue
*q
)
823 rwb
= kzalloc(sizeof(*rwb
), GFP_KERNEL
);
827 rwb
->cb
= blk_stat_alloc_callback(wb_timer_fn
, wbt_data_dir
, 2, rwb
);
833 for (i
= 0; i
< WBT_NUM_RWQ
; i
++)
834 rq_wait_init(&rwb
->rq_wait
[i
]);
836 rwb
->rqos
.id
= RQ_QOS_WBT
;
837 rwb
->rqos
.ops
= &wbt_rqos_ops
;
839 rwb
->last_comp
= rwb
->last_issue
= jiffies
;
840 rwb
->win_nsec
= RWB_WINDOW_NSEC
;
841 rwb
->enable_state
= WBT_STATE_ON_DEFAULT
;
843 rwb
->rq_depth
.default_depth
= RWB_DEF_DEPTH
;
844 __wbt_update_limits(rwb
);
847 * Assign rwb and add the stats callback.
849 rq_qos_add(q
, &rwb
->rqos
);
850 blk_stat_add_callback(q
, rwb
->cb
);
852 rwb
->min_lat_nsec
= wbt_default_latency_nsec(q
);
854 wbt_queue_depth_changed(&rwb
->rqos
);
855 wbt_set_write_cache(q
, test_bit(QUEUE_FLAG_WC
, &q
->queue_flags
));