Message ID | 20210127130829.4026-1-bongsu.jeon@samsung.com |
---|---|
Headers | show |
Series | Add nci suit and virtual nci device driver | expand |
Hello: This series was applied to netdev/net-next.git (refs/heads/master): On Wed, 27 Jan 2021 22:08:27 +0900 you wrote: > From: Bongsu Jeon <bongsu.jeon@samsung.com> > > 1/2 is the Virtual NCI device driver. > 2/2 is the NCI selftest suite > > v4: > 1/2 > - flip the condition for the ioctl. > - refactor some code. > - remove the unused function after refactoring. > v3: > 1/2 > - change the Kconfig help comment. > - remove the mutex init code. > - remove the unnecessary mutex(nci_send_mutex). > - remove the full_txbuff. > - add the code to release skb at error case. > - refactor some code. > v2: > 1/2 > - change the permission of the Virtual NCI device. > - add the ioctl to find the nci device index. > 2/2 > - add the NCI selftest suite. > > [...] Here is the summary with links: - [net-next,v4,1/2] nfc: Add a virtual nci device driver https://git.kernel.org/netdev/net-next/c/e624e6c3e777 - [net-next,v4,2/2] selftests: Add nci suite https://git.kernel.org/netdev/net-next/c/f595cf1242f3 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
From: Bongsu Jeon <bongsu.jeon@samsung.com> 1/2 is the Virtual NCI device driver. 2/2 is the NCI selftest suite v4: 1/2 - flip the condition for the ioctl. - refactor some code. - remove the unused function after refactoring. v3: 1/2 - change the Kconfig help comment. - remove the mutex init code. - remove the unnecessary mutex(nci_send_mutex). - remove the full_txbuff. - add the code to release skb at error case. - refactor some code. v2: 1/2 - change the permission of the Virtual NCI device. - add the ioctl to find the nci device index. 2/2 - add the NCI selftest suite. Bongsu Jeon (2): nfc: Add a virtual nci device driver selftests: Add nci suite MAINTAINERS | 8 + drivers/nfc/Kconfig | 11 + drivers/nfc/Makefile | 1 + drivers/nfc/virtual_ncidev.c | 215 +++++++++ tools/testing/selftests/Makefile | 1 + tools/testing/selftests/nci/Makefile | 6 + tools/testing/selftests/nci/config | 3 + tools/testing/selftests/nci/nci_dev.c | 599 ++++++++++++++++++++++++++ 8 files changed, 844 insertions(+) create mode 100644 drivers/nfc/virtual_ncidev.c create mode 100644 tools/testing/selftests/nci/Makefile create mode 100644 tools/testing/selftests/nci/config create mode 100644 tools/testing/selftests/nci/nci_dev.c