Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 110549
b: refs/heads/master
c: a68bbdd
h: refs/heads/master
i:
  110547: c393a11
v: v3
  • Loading branch information
Jens Axboe committed Oct 9, 2008
1 parent bbb0c82 commit 5747405
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9e49184c82e9ec3ab4d45f9ea5a17ccaf43869f0
refs/heads/master: a68bbddba486020c9c74825ce90c4c1ec463e0e8
6 changes: 6 additions & 0 deletions trunk/block/as-iosched.c
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,12 @@ static int as_can_break_anticipation(struct as_data *ad, struct request *rq)
*/
static int as_can_anticipate(struct as_data *ad, struct request *rq)
{
/*
* SSD device without seek penalty, disable idling
*/
if (blk_queue_nonrot(ad->q))
return 0;

if (!ad->io_context)
/*
* Last request submitted was a write
Expand Down
6 changes: 6 additions & 0 deletions trunk/block/cfq-iosched.c
Original file line number Diff line number Diff line change
Expand Up @@ -878,6 +878,12 @@ static void cfq_arm_slice_timer(struct cfq_data *cfqd)
struct cfq_io_context *cic;
unsigned long sl;

/*
* SSD device without seek penalty, disable idling
*/
if (blk_queue_nonrot(cfqd->queue))
return;

WARN_ON(!RB_EMPTY_ROOT(&cfqq->sort_list));
WARN_ON(cfq_cfqq_slice_new(cfqq));

Expand Down
2 changes: 2 additions & 0 deletions trunk/include/linux/blkdev.h
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ struct request_queue
#define QUEUE_FLAG_SAME_COMP 11 /* force complete on same CPU */
#define QUEUE_FLAG_FAIL_IO 12 /* fake timeout */
#define QUEUE_FLAG_STACKABLE 13 /* supports request stacking */
#define QUEUE_FLAG_NONROT 14 /* non-rotational device (SSD) */

static inline int queue_is_locked(struct request_queue *q)
{
Expand Down Expand Up @@ -547,6 +548,7 @@ enum {
#define blk_queue_tagged(q) test_bit(QUEUE_FLAG_QUEUED, &(q)->queue_flags)
#define blk_queue_stopped(q) test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags)
#define blk_queue_nomerges(q) test_bit(QUEUE_FLAG_NOMERGES, &(q)->queue_flags)
#define blk_queue_nonrot(q) test_bit(QUEUE_FLAG_NONROT, &(q)->queue_flags)
#define blk_queue_flushing(q) ((q)->ordseq)
#define blk_queue_stackable(q) \
test_bit(QUEUE_FLAG_STACKABLE, &(q)->queue_flags)
Expand Down

0 comments on commit 5747405

Please sign in to comment.