summaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
authorGustavo F. Padovan <padovan@profusion.mobi>2010-07-09 16:38:34 -0300
committerMarcel Holtmann <marcel@holtmann.org>2010-07-21 10:39:11 -0700
commit89746b856c88af9e5019e84615d88e002fb54dc3 (patch)
tree943da9cb41e59aae2778733bb25022752d784995 /net/bluetooth
parent2cdf096fffaa257e7449611295a38c46dc921c8b (diff)
downloadop-kernel-dev-89746b856c88af9e5019e84615d88e002fb54dc3.zip
op-kernel-dev-89746b856c88af9e5019e84615d88e002fb54dc3.tar.gz
Bluetooth: Fix bug in kzalloc allocation size
Probably a typo error. We were using the wrong struct to get size. Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/l2cap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/l2cap.c b/net/bluetooth/l2cap.c
index e366be0..419e2c3 100644
--- a/net/bluetooth/l2cap.c
+++ b/net/bluetooth/l2cap.c
@@ -530,7 +530,7 @@ static void l2cap_conn_start(struct l2cap_conn *conn)
conn->feat_mask)
&& l2cap_pi(sk)->conf_state &
L2CAP_CONF_STATE2_DEVICE) {
- tmp1 = kzalloc(sizeof(struct srej_list),
+ tmp1 = kzalloc(sizeof(struct sock_del_list),
GFP_ATOMIC);
tmp1->sk = sk;
list_add_tail(&tmp1->list, &del.list);
OpenPOWER on IntegriCloud