diff options
author | Johan Hovold <johan@kernel.org> | 2017-03-30 12:15:35 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2017-06-18 23:57:58 +0200 |
commit | 20777bc57c346b6994f465e0d8261a7fbf213a09 (patch) | |
tree | ea75683679531db2560c397304e113a8cd4c26fd /drivers/nfc | |
parent | e2f0f67108a8f8ec23e2e530a1a52c97595a6f96 (diff) | |
download | linux-20777bc57c346b6994f465e0d8261a7fbf213a09.tar.gz linux-20777bc57c346b6994f465e0d8261a7fbf213a09.tar.bz2 linux-20777bc57c346b6994f465e0d8261a7fbf213a09.zip |
NFC: fix broken device allocation
Commit 7eda8b8e9677 ("NFC: Use IDR library to assing NFC devices IDs")
moved device-id allocation and struct-device initialisation from
nfc_allocate_device() to nfc_register_device().
This broke just about every nfc-device-registration error path, which
continue to call nfc_free_device() that tries to put the device
reference of the now uninitialised (but zeroed) struct device:
kobject: '(null)' (ce316420): is not initialized, yet kobject_put() is being called.
The late struct-device initialisation also meant that various work
queues whose names are derived from the nfc device name were also
misnamed:
421 root 0 SW< [(null)_nci_cmd_]
422 root 0 SW< [(null)_nci_rx_w]
423 root 0 SW< [(null)_nci_tx_w]
Move the id-allocation and struct-device initialisation back to
nfc_allocate_device() and fix up the single call site which did not use
nfc_free_device() in its error path.
Fixes: 7eda8b8e9677 ("NFC: Use IDR library to assing NFC devices IDs")
Cc: stable <stable@vger.kernel.org> # 3.8
Cc: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/nfc')
0 files changed, 0 insertions, 0 deletions