linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/2] block: Adding support for urgent requests handling
@ 2012-12-11 13:36 Tanya Brokhman
  2012-12-11 13:36 ` [PATCH v3 1/2] block: Add support for reinsert a dispatched req Tanya Brokhman
  2012-12-11 13:36 ` [PATCH v3 2/2] block: Add API for urgent request handling Tanya Brokhman
  0 siblings, 2 replies; 3+ messages in thread
From: Tanya Brokhman @ 2012-12-11 13:36 UTC (permalink / raw)
  To: jaxboe
  Cc: linux-arm-msm, philippedeswert, jengelh, jh80.chung, tgih.jun,
	arnd.bergmann, venkat, linux-mmc, Tanya Brokhman

This patch set adds support in block & elevator layers for handling
urgent requests.
In order to decrease the latency of a prioritized request (such as READ
requests) we might want to stop the transmission of a current "low
priority" request in order to handle the "high priority" one. The
urgency of the request is decided by the block layer I/O scheduler.
When the block layer notifies the underlying device driver (eMMC for
example) of an urgent request, the device driver might decide to stop
the current request transmission. The remainder of the stopped request
will be re-inserted back to the scheduler, to be re-scheduled after
handling the urgent request.

The above is implemented in the block layer by 2 callbacks of the queue:
- urgent_request_fn() - This callback is registered by the underlying
  device driver and is called instead of the existing requst_fn() callback
  to handle urgent requests.
- elevator_is_urgent_fn() - This callback is registered by the current
  I/O scheduler. If present it's used by the block layer to query the
  scheduler of an urgent request presence.
NOTE: If one of the above callbacks is not registered, this code pass
will never be activated.

Tatyana Brokhman (2):
  block: Add support for reinsert a dispatched req
  block: Add API for urgent request handling

 block/blk-core.c         |   70 ++++++++++++++++++++++++++++++++++++++++++++-
 block/blk-settings.c     |   12 ++++++++
 block/blk.h              |   11 +++++++
 block/elevator.c         |   40 ++++++++++++++++++++++++++
 include/linux/blkdev.h   |    6 ++++
 include/linux/elevator.h |    7 ++++
 6 files changed, 144 insertions(+), 2 deletions(-)

-- 
1.7.6
--
QUALCOMM ISRAEL, on behalf of Qualcomm Innovation Center, Inc. 
Is a member of Code Aurora Forum, hosted by the Linux Foundation

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-12-11 13:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-11 13:36 [PATCH v3 0/2] block: Adding support for urgent requests handling Tanya Brokhman
2012-12-11 13:36 ` [PATCH v3 1/2] block: Add support for reinsert a dispatched req Tanya Brokhman
2012-12-11 13:36 ` [PATCH v3 2/2] block: Add API for urgent request handling Tanya Brokhman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).