File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -268,23 +268,6 @@ static inline unsigned short req_get_ioprio(struct request *req)
268
268
#define rq_list_next (rq ) (rq)->rq_next
269
269
#define rq_list_empty (list ) ((list) == (struct request *) NULL)
270
270
271
- /**
272
- * rq_list_move() - move a struct request from one list to another
273
- * @src: The source list @rq is currently in
274
- * @dst: The destination list that @rq will be appended to
275
- * @rq: The request to move
276
- * @prev: The request preceding @rq in @src (NULL if @rq is the head)
277
- */
278
- static inline void rq_list_move (struct request * * src , struct request * * dst ,
279
- struct request * rq , struct request * prev )
280
- {
281
- if (prev )
282
- prev -> rq_next = rq -> rq_next ;
283
- else
284
- * src = rq -> rq_next ;
285
- rq_list_add (dst , rq );
286
- }
287
-
288
271
/**
289
272
* enum blk_eh_timer_return - How the timeout handler should proceed
290
273
* @BLK_EH_DONE: The block driver completed the command or will complete it at
You can’t perform that action at this time.
0 commit comments