From: Nishanth Aravamudan Subject: [KJ] [PATCH 29/34] net/shaper: replace sleep_on() with wait_event() Use wait_event() instead of the deprecated sleep_on(). Move the in_interrupt() check outside loop, as I do not believe the process context should change once execution has begun. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan Signed-off-by: Domen Puncer --- shaper.c | 12 ++++-------- 1 files changed, 4 insertions(+), 8 deletions(-) Index: quilt/drivers/net/shaper.c =================================================================== --- quilt.orig/drivers/net/shaper.c +++ quilt/drivers/net/shaper.c @@ -83,6 +83,7 @@ #include #include #include +#include #include #include @@ -109,14 +110,9 @@ static int shaper_lock(struct shaper *sh /* * Lock in an interrupt must fail */ - while (test_and_set_bit(0, &sh->locked)) - { - if (!in_interrupt()) - sleep_on(&sh->wait_queue); - else - return 0; - - } + if (in_interrupt()) + return 0; + wait_event(sh->wait_queue, !test_and_set_bit(0, &sh->locked)); return 1; }