linux/drivers/staging/usbip
Ilia Mirkin 06dde50620 staging: usbip: Remove NULL check before kfree
This patch was generated by the following semantic patch:
// <smpl>
@@ expression E; @@
- if (E != NULL) { kfree(E); }
+ kfree(E);

@@ expression E; @@
- if (E != NULL) { kfree(E); E = NULL; }
+ kfree(E);
+ E = NULL;
// </smpl>

Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2011-03-14 11:57:37 -07:00
..
Kconfig staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00
Makefile Staging: usbip: Makefile: replace the use of <module>-objs with <module>-y 2010-10-08 07:23:42 -07:00
README
stub.h staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00
stub_dev.c staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00
stub_main.c staging: usbip: Remove NULL check before kfree 2011-03-14 11:57:37 -07:00
stub_rx.c staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00
stub_tx.c staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00
usbip_common.c staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00
usbip_common.h staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00
usbip_event.c staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00
vhci.h staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00
vhci_hcd.c staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00
vhci_rx.c staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00
vhci_sysfs.c staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00
vhci_tx.c staging/usbip: convert to kthread 2011-03-02 16:03:59 -05:00

README

TODO:
	- more discussion about the protocol
	- testing
	- review of the userspace interface

Please send patches for this code to Greg Kroah-Hartman <greg@kroah.com>