Displaying 1 result from an estimated 1 matches for "__blk_add_trace".
2008 Sep 10
0
[RFC][PATCH -mm] blktrace: adds ioprio to blktrace
...inux-2.6.27-rc5-mm1/block/blktrace.c	2008-09-10 19:27:44.000000000 +0900
+++ linux-2.6.27-rc5-mm1-blktrace/block/blktrace.c	2008-09-11 00:44:52.000000000 +0900
@@ -120,7 +120,8 @@ static u32 ddir_act[2] __read_mostly = {
   * blk_io_trace structure and places it in a per-cpu subbuffer.
   */
  void __blk_add_trace(struct blk_trace *bt, sector_t sector, int bytes,
-		     int rw, u32 what, int error, int pdu_len, void *pdu_data)
+		     int rw, u32 what, int error, unsigned short ioprio,
+		     int pdu_len, void *pdu_data)
  {
  	struct task_struct *tsk = current;
  	struct blk_io_trace *t;
@@ -168,6 +169,7...