mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-07 06:54:09 +00:00
block: add kblockd_schedule_work_on()
Add a helper to schedule a regular struct work on a particular CPU. Signed-off-by: Jens Axboe <axboe@fb.com>
This commit is contained in:
parent
f72b8792d1
commit
ee63cfa7fc
2 changed files with 7 additions and 1 deletions
|
@ -3097,6 +3097,12 @@ int kblockd_schedule_work(struct work_struct *work)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(kblockd_schedule_work);
|
EXPORT_SYMBOL(kblockd_schedule_work);
|
||||||
|
|
||||||
|
int kblockd_schedule_work_on(int cpu, struct work_struct *work)
|
||||||
|
{
|
||||||
|
return queue_work_on(cpu, kblockd_workqueue, work);
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL(kblockd_schedule_work_on);
|
||||||
|
|
||||||
int kblockd_schedule_delayed_work(struct delayed_work *dwork,
|
int kblockd_schedule_delayed_work(struct delayed_work *dwork,
|
||||||
unsigned long delay)
|
unsigned long delay)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1440,8 +1440,8 @@ static inline bool req_gap_front_merge(struct request *req, struct bio *bio)
|
||||||
return bio_will_gap(req->q, bio, req->bio);
|
return bio_will_gap(req->q, bio, req->bio);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct work_struct;
|
|
||||||
int kblockd_schedule_work(struct work_struct *work);
|
int kblockd_schedule_work(struct work_struct *work);
|
||||||
|
int kblockd_schedule_work_on(int cpu, struct work_struct *work);
|
||||||
int kblockd_schedule_delayed_work(struct delayed_work *dwork, unsigned long delay);
|
int kblockd_schedule_delayed_work(struct delayed_work *dwork, unsigned long delay);
|
||||||
int kblockd_schedule_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay);
|
int kblockd_schedule_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue