Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2fb21150 authored by Bartlomiej Zolnierkiewicz's avatar Bartlomiej Zolnierkiewicz
Browse files

ide: remove IDE PM hack from do_ide_request()



We now tell block layer that there is still work to do using
blk_plug_device() so hack for IDE Power Management can be removed
(it was buggy for hwgroups having more than 4 devices anyway).

Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent 295f0004
Loading
Loading
Loading
Loading
+1 −8
Original line number Original line Diff line number Diff line
@@ -786,7 +786,6 @@ void do_ide_request(struct request_queue *q)
	ide_hwif_t	*hwif;
	ide_hwif_t	*hwif;
	struct request	*rq;
	struct request	*rq;
	ide_startstop_t	startstop;
	ide_startstop_t	startstop;
	int             loops = 0;


	/* caller must own hwgroup->lock */
	/* caller must own hwgroup->lock */
	BUG_ON(!irqs_disabled());
	BUG_ON(!irqs_disabled());
@@ -844,7 +843,7 @@ void do_ide_request(struct request_queue *q)


		if (drive != orig_drive)
		if (drive != orig_drive)
			goto plug_device;
			goto plug_device;
again:

		hwif = drive->hwif;
		hwif = drive->hwif;


		if (hwif != hwgroup->hwif) {
		if (hwif != hwgroup->hwif) {
@@ -882,16 +881,10 @@ void do_ide_request(struct request_queue *q)
		 * though. I hope that doesn't happen too much, hopefully not
		 * though. I hope that doesn't happen too much, hopefully not
		 * unless the subdriver triggers such a thing in its own PM
		 * unless the subdriver triggers such a thing in its own PM
		 * state machine.
		 * state machine.
		 *
		 * We count how many times we loop here to make sure we service
		 * all drives in the hwgroup without looping for ever
		 */
		 */
		if ((drive->dev_flags & IDE_DFLAG_BLOCKED) &&
		if ((drive->dev_flags & IDE_DFLAG_BLOCKED) &&
		    blk_pm_request(rq) == 0 &&
		    blk_pm_request(rq) == 0 &&
		    (rq->cmd_flags & REQ_PREEMPT) == 0) {
		    (rq->cmd_flags & REQ_PREEMPT) == 0) {
			drive = drive->next ? drive->next : hwgroup->drive;
			if (loops++ < 4 && !blk_queue_plugged(drive->queue))
				goto again;
			/* We clear busy, there should be no pending ATA command at this point. */
			/* We clear busy, there should be no pending ATA command at this point. */
			hwgroup->busy = 0;
			hwgroup->busy = 0;
			goto plug_device;
			goto plug_device;