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

Commit 74018dc3 authored by NeilBrown's avatar NeilBrown Committed by Jens Axboe
Browse files

blk: pass from_schedule to non-request unplug functions.



This will allow md/raid to know why the unplug was called,
and will be able to act according - if !from_schedule it
is safe to perform tasks which could themselves schedule.

Signed-off-by: default avatarNeilBrown <neilb@suse.de>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 2a7d5559
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2909,7 +2909,7 @@ static void queue_unplugged(struct request_queue *q, unsigned int depth,

}

static void flush_plug_callbacks(struct blk_plug *plug)
static void flush_plug_callbacks(struct blk_plug *plug, bool from_schedule)
{
	LIST_HEAD(callbacks);

@@ -2921,7 +2921,7 @@ static void flush_plug_callbacks(struct blk_plug *plug)
							  struct blk_plug_cb,
							  list);
			list_del(&cb->list);
			cb->callback(cb);
			cb->callback(cb, from_schedule);
		}
	}
}
@@ -2961,7 +2961,7 @@ void blk_flush_plug_list(struct blk_plug *plug, bool from_schedule)

	BUG_ON(plug->magic != PLUG_MAGIC);

	flush_plug_callbacks(plug);
	flush_plug_callbacks(plug, from_schedule);
	if (list_empty(&plug->list))
		return;

+1 −1
Original line number Diff line number Diff line
@@ -513,7 +513,7 @@ static void process_page(unsigned long data)
	}
}

static void mm_unplug(struct blk_plug_cb *cb)
static void mm_unplug(struct blk_plug_cb *cb, bool from_schedule)
{
	struct cardinfo *card = cb->data;

+1 −1
Original line number Diff line number Diff line
@@ -498,7 +498,7 @@ void md_flush_request(struct mddev *mddev, struct bio *bio)
}
EXPORT_SYMBOL(md_flush_request);

void md_unplug(struct blk_plug_cb *cb)
void md_unplug(struct blk_plug_cb *cb, bool from_schedule)
{
	struct mddev *mddev = cb->data;
	md_wakeup_thread(mddev->thread);
+1 −1
Original line number Diff line number Diff line
@@ -629,7 +629,7 @@ extern struct bio *bio_alloc_mddev(gfp_t gfp_mask, int nr_iovecs,
				   struct mddev *mddev);
extern void md_trim_bio(struct bio *bio, int offset, int size);

extern void md_unplug(struct blk_plug_cb *cb);
extern void md_unplug(struct blk_plug_cb *cb, bool from_schedule);
static inline int mddev_check_plugged(struct mddev *mddev)
{
	return !!blk_check_plugged(md_unplug, mddev,
+1 −1
Original line number Diff line number Diff line
@@ -923,7 +923,7 @@ struct blk_plug {
#define BLK_MAX_REQUEST_COUNT 16

struct blk_plug_cb;
typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *);
typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool);
struct blk_plug_cb {
	struct list_head list;
	blk_plug_cb_fn callback;