mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 04:40:55 +07:00
[AF_PACKET]: Remove bogus checks added to packet_sendmsg().
These broke existing apps, and the checks are superfluous as the values being verified aren't even used. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c62dba9011
commit
b85daee0e4
@ -761,12 +761,6 @@ static int packet_sendmsg(struct kiocb *iocb, struct socket *sock,
|
||||
if (dev->hard_header) {
|
||||
int res;
|
||||
err = -EINVAL;
|
||||
if (saddr) {
|
||||
if (saddr->sll_halen != dev->addr_len)
|
||||
goto out_free;
|
||||
if (saddr->sll_hatype != dev->type)
|
||||
goto out_free;
|
||||
}
|
||||
res = dev->hard_header(skb, dev, ntohs(proto), addr, NULL, len);
|
||||
if (sock->type != SOCK_DGRAM) {
|
||||
skb->tail = skb->data;
|
||||
|
Loading…
Reference in New Issue
Block a user