On Fri, Nov 17, 2017 at 6:11 AM, Adam Wallis <awallis@xxxxxxxxxxxxxx> wrote: > Commit adfa543e7314 ("dmatest: don't use set_freezable_with_signal()") > introduced a bug (that is in fact documented by the patch commit text) > that leaves behind a dangling pointer. Since the done_wait structure is > allocated on the stack, future invocations to the DMATEST can produce > undesirable results (e.g., corrupted spinlocks). > > Commit a9df21e34b42 ("dmaengine: dmatest: warn user when dma test times > out") attempted to WARN the user that the stack was likely corrupted but > did not fix the actual issue. > > This patch fixes the issue by pushing the wait queue and callback > structs into the the thread structure. If a failure occurs due to time, > dmaengine_terminate_all will force the callback to safely call > wake_up_all() without possibility of using a freed pointer. > > Cc: stable@xxxxxxxxxxxxxxx # 4.13.x: a9df21e: dmatest: Warn User > Cc: stable@xxxxxxxxxxxxxxx # 4.13.x > Cc: stable@xxxxxxxxxxxxxxx # 4.14.x You don't need 3 cc stables, you don't even need the "# kernel-version". Since you have the "Fixes:" line the target kernel(s) for the backport can be auto-determined. I should go update Documentation/process/stable-kernel-rules.rst to mention this. > Bug: https://bugzilla.kernel.org/show_bug.cgi?id=197605 > Fixes: adfa543e7314 ("dmatest: don't use set_freezable_with_signal()") > Reviewed-by: Sinan Kaya <okaya@xxxxxxxxxxxxxx> > Suggested-by: Shunyong Yang <shunyong.yang@xxxxxxxxxxxxxxxx> > Signed-off-by: Adam Wallis <awallis@xxxxxxxxxxxxxx> > --- > changes from v2: Added "Fixes" tag > changes from v1: Added pre-req patches for stable > > drivers/dma/dmatest.c | 37 ++++++++++++++++--------------------- > 1 file changed, 16 insertions(+), 21 deletions(-) > > diff --git a/drivers/dma/dmatest.c b/drivers/dma/dmatest.c > index 47edc7f..2573b6c 100644 > --- a/drivers/dma/dmatest.c > +++ b/drivers/dma/dmatest.c > @@ -155,6 +155,12 @@ struct dmatest_params { > #define PATTERN_COUNT_MASK 0x1f > #define PATTERN_MEMSET_IDX 0x01 > > +/* poor man's completion - we want to use wait_event_freezable() on it */ > +struct dmatest_done { > + bool done; > + wait_queue_head_t *wait; > +}; > + > struct dmatest_thread { > struct list_head node; > struct dmatest_info *info; > @@ -165,6 +171,8 @@ struct dmatest_thread { > u8 **dsts; > u8 **udsts; > enum dma_transaction_type type; > + wait_queue_head_t done_wait; Why are we defining a waitquehead per thread vs defining one globally for the whole module with "static DECLARE_WAIT_QUEUE_HEAD(x);"? -- To unsubscribe from this list: send the line "unsubscribe dmaengine" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html