Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e83acb9 authored by Marcelo Ricardo Leitner's avatar Marcelo Ricardo Leitner Committed by David S. Miller
Browse files

sctp: GFP_ATOMIC is not needed in sctp_setsockopt_events



So replace it with GFP_USER and also add __GFP_NOWARN.

Signed-off-by: default avatarMarcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 661e4e33
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2277,7 +2277,7 @@ static int sctp_setsockopt_events(struct sock *sk, char __user *optval,

		if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
			event = sctp_ulpevent_make_sender_dry_event(asoc,
					GFP_ATOMIC);
					GFP_USER | __GFP_NOWARN);
			if (!event)
				return -ENOMEM;