mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 21:40:54 +07:00
solos: Reject non-AAL5 connections.... for now
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
1e615df654
commit
b28a4b9a38
@ -732,6 +732,12 @@ static int popen(struct atm_vcc *vcc)
|
||||
struct sk_buff *skb;
|
||||
struct pkt_hdr *header;
|
||||
|
||||
if (vcc->qos.aal != ATM_AAL5) {
|
||||
dev_warn(&card->dev->dev, "Unsupported ATM type %d\n",
|
||||
vcc->qos.aal);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
skb = alloc_skb(sizeof(*header), GFP_ATOMIC);
|
||||
if (!skb && net_ratelimit()) {
|
||||
dev_warn(&card->dev->dev, "Failed to allocate sk_buff in popen()\n");
|
||||
|
Loading…
Reference in New Issue
Block a user