Commit 34ef1ed1 authored by Jakub Kicinski's avatar Jakub Kicinski Committed by David S. Miller

net/tls: make allocation failure unlikely

Make sure GCC realizes it's unlikely that allocations will fail.
Signed-off-by: default avatarJakub Kicinski <jakub.kicinski@netronome.com>
Reviewed-by: default avatarDirk van der Merwe <dirk.vandermerwe@netronome.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 93277b25
...@@ -452,9 +452,8 @@ static int tls_push_data(struct sock *sk, ...@@ -452,9 +452,8 @@ static int tls_push_data(struct sock *sk,
max_open_record_len = TLS_MAX_PAYLOAD_SIZE + max_open_record_len = TLS_MAX_PAYLOAD_SIZE +
prot->prepend_size; prot->prepend_size;
do { do {
rc = tls_do_allocation(sk, ctx, pfrag, rc = tls_do_allocation(sk, ctx, pfrag, prot->prepend_size);
prot->prepend_size); if (unlikely(rc)) {
if (rc) {
rc = sk_stream_wait_memory(sk, &timeo); rc = sk_stream_wait_memory(sk, &timeo);
if (!rc) if (!rc)
continue; continue;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment