Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 395365ea authored by Marcel Holtmann's avatar Marcel Holtmann Committed by Johan Hedberg
Browse files

Bluetooth: Allocate struct inquiry_entry with GFP_KERNEL



The allocation of inquiry cache entries is triggered as a result of
processing HCI events. Since the processing is done in the context
of a workqueue, there is no needed to allocate with GFP_ATOMIC in
that case. Switch it to GFP_KERNEL.

Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
parent 4d6c705b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -2088,7 +2088,7 @@ u32 hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data,
	}
	}


	/* Entry not in the cache. Add new one. */
	/* Entry not in the cache. Add new one. */
	ie = kzalloc(sizeof(struct inquiry_entry), GFP_ATOMIC);
	ie = kzalloc(sizeof(struct inquiry_entry), GFP_KERNEL);
	if (!ie) {
	if (!ie) {
		flags |= MGMT_DEV_FOUND_CONFIRM_NAME;
		flags |= MGMT_DEV_FOUND_CONFIRM_NAME;
		goto done;
		goto done;