Skip to content

Commit 5cc8815

Browse files
committed
fix up for "crypto: ahash - remove crypto_ahash_alignmask"
interacting with "net/tcp: Introduce TCP_AO setsockopt()s" Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
1 parent e2c0150 commit 5cc8815

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

net/ipv4/tcp_ao.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1533,10 +1533,6 @@ static struct tcp_ao_key *tcp_ao_key_alloc(struct sock *sk,
15331533
goto err_free_pool;
15341534

15351535
tfm = crypto_ahash_reqtfm(hp.req);
1536-
if (crypto_ahash_alignmask(tfm) > TCP_AO_KEY_ALIGN) {
1537-
err = -EOPNOTSUPP;
1538-
goto err_pool_end;
1539-
}
15401536
digest_size = crypto_ahash_digestsize(tfm);
15411537
tcp_sigpool_end(&hp);
15421538

@@ -1551,8 +1547,6 @@ static struct tcp_ao_key *tcp_ao_key_alloc(struct sock *sk,
15511547
key->digest_size = digest_size;
15521548
return key;
15531549

1554-
err_pool_end:
1555-
tcp_sigpool_end(&hp);
15561550
err_free_pool:
15571551
tcp_sigpool_release(pool_id);
15581552
return ERR_PTR(err);

0 commit comments

Comments
 (0)