Merge "soc: qcom: hab: run the dispatcher's tasklet w/ high priority"
This commit is contained in:
commit
def71a82e0
2 changed files with 3 additions and 3 deletions
|
@ -86,7 +86,7 @@ static void ghs_irq_handler(void *cookie)
|
|||
(struct ghs_vdev *) (pchan ? pchan->hyp_data : NULL);
|
||||
|
||||
if (dev)
|
||||
tasklet_schedule(&dev->task);
|
||||
tasklet_hi_schedule(&dev->task);
|
||||
}
|
||||
|
||||
static int get_dt_name_idx(int vmid_base, int mmid,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
|
||||
/* Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 and
|
||||
|
@ -80,7 +80,7 @@ static irqreturn_t shm_irq_handler(int irq, void *_pchan)
|
|||
|
||||
if (status & 0xffff) {/*source bitmask indicator*/
|
||||
rc = IRQ_HANDLED;
|
||||
tasklet_schedule(&dev->task);
|
||||
tasklet_hi_schedule(&dev->task);
|
||||
}
|
||||
}
|
||||
return rc;
|
||||
|
|
Loading…
Add table
Reference in a new issue