aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/blkdev.h
diff options
context:
space:
mode:
authorJens Axboe <jens.axboe@oracle.com>2008-09-13 14:26:01 -0400
committerJens Axboe <jens.axboe@oracle.com>2008-10-09 02:56:09 -0400
commitc7c22e4d5c1fdebfac4dba76de7d0338c2b0d832 (patch)
treeecc3d2517b3471ccc35d4cb4e3b48d4b57205061 /include/linux/blkdev.h
parent18887ad910e56066233a07fd3cfb2fa11338b782 (diff)
block: add support for IO CPU affinity
This patch adds support for controlling the IO completion CPU of either all requests on a queue, or on a per-request basis. We export a sysfs variable (rq_affinity) which, if set, migrates completions of requests to the CPU that originally submitted it. A bio helper (bio_set_completion_cpu()) is also added, so that queuers can ask for completion on that specific CPU. In testing, this has been show to cut the system time by as much as 20-40% on synthetic workloads where CPU affinity is desired. This requires a little help from the architecture, so it'll only work as designed for archs that are using the new generic smp helper infrastructure. Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r--include/linux/blkdev.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index 10aa46c8f170..93204bf7b297 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -17,6 +17,7 @@
17#include <linux/module.h> 17#include <linux/module.h>
18#include <linux/stringify.h> 18#include <linux/stringify.h>
19#include <linux/bsg.h> 19#include <linux/bsg.h>
20#include <linux/smp.h>
20 21
21#include <asm/scatterlist.h> 22#include <asm/scatterlist.h>
22 23
@@ -139,7 +140,8 @@ enum rq_flag_bits {
139 */ 140 */
140struct request { 141struct request {
141 struct list_head queuelist; 142 struct list_head queuelist;
142 struct list_head donelist; 143 struct call_single_data csd;
144 int cpu;
143 145
144 struct request_queue *q; 146 struct request_queue *q;
145 147
@@ -420,6 +422,7 @@ struct request_queue
420#define QUEUE_FLAG_ELVSWITCH 8 /* don't use elevator, just do FIFO */ 422#define QUEUE_FLAG_ELVSWITCH 8 /* don't use elevator, just do FIFO */
421#define QUEUE_FLAG_BIDI 9 /* queue supports bidi requests */ 423#define QUEUE_FLAG_BIDI 9 /* queue supports bidi requests */
422#define QUEUE_FLAG_NOMERGES 10 /* disable merge attempts */ 424#define QUEUE_FLAG_NOMERGES 10 /* disable merge attempts */
425#define QUEUE_FLAG_SAME_COMP 11 /* force complete on same CPU */
423 426
424static inline int queue_is_locked(struct request_queue *q) 427static inline int queue_is_locked(struct request_queue *q)
425{ 428{