Message ID | 20200909174129.v2.2.I03247d3813c6dcbcdbeab26d068f9fd765edb1f5@changeid |
---|---|
State | New |
Headers | show |
Series | [v2,1/2] Bluetooth: btusb: define HCI packet sizes of USB Alts | expand |
diff --git a/net/bluetooth/sco.c b/net/bluetooth/sco.c index dcf7f96ff417e6..79ffcdef0b7ad5 100644 --- a/net/bluetooth/sco.c +++ b/net/bluetooth/sco.c @@ -1001,6 +1001,12 @@ static int sco_sock_getsockopt(struct socket *sock, int level, int optname, err = -EFAULT; break; + case BT_SNDMTU: + case BT_RCVMTU: + if (put_user(sco_pi(sk)->conn->mtu, (u32 __user *)optval)) + err = -EFAULT; + break; + default: err = -ENOPROTOOPT; break;