search for: 9c6604b

Displaying 3 results from an estimated 3 matches for "9c6604b".

Did you mean: 946604
2016 Apr 27
2
[PATCH] vhost_net: stop polling socket during rx processing
...wait queue lock is already taken, all we need is an API to remove the entry without wait_queue_head_t which isn't currently accessible to wake up handlers. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> --- diff --git a/include/linux/wait.h b/include/linux/wait.h index 27d7a0a..9c6604b 100644 --- a/include/linux/wait.h +++ b/include/linux/wait.h @@ -191,11 +191,17 @@ __add_wait_queue_tail_exclusive(wait_queue_head_t *q, wait_queue_t *wait) } static inline void -__remove_wait_queue(wait_queue_head_t *head, wait_queue_t *old) +__remove_wait_queue_entry(wait_queue_t *old) { l...
2016 Apr 27
2
[PATCH] vhost_net: stop polling socket during rx processing
...wait queue lock is already taken, all we need is an API to remove the entry without wait_queue_head_t which isn't currently accessible to wake up handlers. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> --- diff --git a/include/linux/wait.h b/include/linux/wait.h index 27d7a0a..9c6604b 100644 --- a/include/linux/wait.h +++ b/include/linux/wait.h @@ -191,11 +191,17 @@ __add_wait_queue_tail_exclusive(wait_queue_head_t *q, wait_queue_t *wait) } static inline void -__remove_wait_queue(wait_queue_head_t *head, wait_queue_t *old) +__remove_wait_queue_entry(wait_queue_t *old) { l...
2016 Apr 28
0
[PATCH] vhost_net: stop polling socket during rx processing
...l we need is an API to remove the entry without > wait_queue_head_t which isn't currently accessible to wake up handlers. > > Signed-off-by: Michael S. Tsirkin <mst at redhat.com> > > --- > > diff --git a/include/linux/wait.h b/include/linux/wait.h > index 27d7a0a..9c6604b 100644 > --- a/include/linux/wait.h > +++ b/include/linux/wait.h > @@ -191,11 +191,17 @@ __add_wait_queue_tail_exclusive(wait_queue_head_t *q, wait_queue_t *wait) > } > > static inline void > -__remove_wait_queue(wait_queue_head_t *head, wait_queue_t *old) > +__remove_wa...