RFC on Android's ConfigFS based MTP function implementation and usage of Uevents to notify the userspace about the USB state changes. The MTP function is based on years of work originally done in the Android kernel tree by: Mike Lockwood <lockwood@xxxxxxxxxxx> Benoit Goby <benoit@xxxxxxxxxxx> Colin Cross <ccross@xxxxxxxxxxx> Arve Hjønnevåg <arve@xxxxxxxxxxx> Peter Oh <poh@xxxxxxxxxxxx> Greg Hackmann <ghackmann@xxxxxxxxxx> Badhri Jagan Sridharan <Badhri@xxxxxxxxxx> The Uevent notification patch is more of an RFC than an actual submission. It is based on Android patchset originaly authored by Badhri to send uevent notifications to Android userpace for USB state changes. I've folded the series up to make it easier to review, provided a coherent patch description and modified it enough that I don't want them to be blamed for any mistakes I've made condensing their patches down. Thoughts and feedback would be appreciated. Thanks, Amit Pundir Cc: Mike Lockwood <lockwood@xxxxxxxxxxx> Cc: Benoit Goby <benoit@xxxxxxxxxxx> Cc: Colin Cross <ccross@xxxxxxxxxxx> Cc: Arve Hjønnevåg <arve@xxxxxxxxxxx> Cc: Peter Oh <poh@xxxxxxxxxxxx> Cc: Greg Hackmann <ghackmann@xxxxxxxxxx> Cc: Badhri Jagan Sridharan <Badhri@xxxxxxxxxx> Cc: Android Kernel Team <kernel-team@xxxxxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Cc: Jonathan Corbet <corbet@xxxxxxx> Cc: Felipe Balbi <balbi@xxxxxx> Cc: Andrzej Pietrasiewicz <andrzej.p@xxxxxxxxxxx> Cc: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> Cc: Yegor Yefremov <yegorslists@xxxxxxxxxxxxxx> Cc: Philippe Reynes <tremyfr@xxxxxxxxx> Cc: John Stultz <john.stultz@xxxxxxxxxx> Cc: Sumit Semwal <sumit.semwal@xxxxxxxxxx> Amit Pundir (2): usb: gadget: configfs: add MTP function usb: gadget: configfs: notify userspace of usb state changes Documentation/ABI/testing/configfs-usb-gadget-mtp | 7 + Documentation/usb/gadget-testing.txt | 24 + drivers/usb/gadget/Kconfig | 21 + drivers/usb/gadget/configfs.c | 201 ++- drivers/usb/gadget/function/Makefile | 2 + drivers/usb/gadget/function/f_mtp.c | 1365 +++++++++++++++++++++ include/linux/usb/f_mtp.h | 23 + include/uapi/linux/usb/f_mtp.h | 61 + 8 files changed, 1702 insertions(+), 2 deletions(-) create mode 100644 Documentation/ABI/testing/configfs-usb-gadget-mtp create mode 100644 drivers/usb/gadget/function/f_mtp.c create mode 100644 include/linux/usb/f_mtp.h create mode 100644 include/uapi/linux/usb/f_mtp.h -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html