From: Andre Guedes Date: Mon, 30 Jan 2012 12:22:09 +0000 (-0300) Subject: Bluetooth: Use GFP_KERNEL in hci_conn_add() X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=cb601d7e65f497a2a172d65b2ef1d738ac6fe4f4;p=~shefty%2Frdma-dev.git Bluetooth: Use GFP_KERNEL in hci_conn_add() This function is called in process context only, so it should use GFP_KERNEL to allocate memory. Signed-off-by: Andre Guedes Acked-by: Marcel Holtmann Signed-off-by: Johan Hedberg --- diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index eae7a53467e..9ec7b8efae5 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -373,7 +373,7 @@ struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst) BT_DBG("%s dst %s", hdev->name, batostr(dst)); - conn = kzalloc(sizeof(struct hci_conn), GFP_ATOMIC); + conn = kzalloc(sizeof(struct hci_conn), GFP_KERNEL); if (!conn) return NULL;