diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 811024e311bd10ca37810a3e945e6d16749d05a5..9b0c8f12373e14258382c40abeca4c55ee060b65 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -390,7 +390,7 @@ static inline void napi_complete(struct napi_struct *n)
 static inline void napi_disable(struct napi_struct *n)
 {
 	while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
-		msleep_interruptible(1);
+		msleep(1);
 }
 
 /**