mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-15 16:53:54 +08:00
RDS: Clear up some confusing code in send_remove_from_sock
The previous code was correct, but made the assumption that if r_notifier was non-NULL then either r_recverr or r_notify was true. Valid, but fragile. Changed to explicitly check r_recverr (shows up in greps for recverr now, too.) Signed-off-by: Andy Grover <andy.grover@oracle.com>
This commit is contained in:
parent
f4dd96f7b2
commit
a63273d499
@ -551,7 +551,7 @@ void rds_send_remove_from_sock(struct list_head *messages, int status)
|
|||||||
rds_send_sndbuf_remove(rs, rm);
|
rds_send_sndbuf_remove(rs, rm);
|
||||||
|
|
||||||
if (ro->r_active && ro->r_notifier &&
|
if (ro->r_active && ro->r_notifier &&
|
||||||
(status || ro->r_notify)) {
|
(ro->r_notify || (ro->r_recverr && status))) {
|
||||||
notifier = ro->r_notifier;
|
notifier = ro->r_notifier;
|
||||||
list_add_tail(¬ifier->n_list,
|
list_add_tail(¬ifier->n_list,
|
||||||
&rs->rs_notify_queue);
|
&rs->rs_notify_queue);
|
||||||
|
Loading…
Reference in New Issue
Block a user