Linux update to 4.11-rc5

Linux baseline a71c9a1c779f2499fb2afc0553e543f18aff6edf (4.11-rc5).
This commit is contained in:
Sebastian Huber
2017-05-05 08:47:39 +02:00
parent 28ee86a9b0
commit cd089b9e05
77 changed files with 10801 additions and 16913 deletions

View File

@@ -93,6 +93,7 @@ do { \
} \
} while (0)
#ifndef __rtems__
#define wait_event_interruptible(q, cond) \
({ \
void *c = &(q).wchan; \
@@ -114,6 +115,13 @@ do { \
} \
-_error; \
})
#else /* __rtems__ */
#define wait_event_interruptible(q, cond) \
({ \
wait_event(q, cond); \
0; \
})
#endif /* __rtems__ */
static inline int
waitqueue_active(wait_queue_head_t *q)