/* * Copyright (C) 2011 matt mooney * 2005-2007 Takahiro Hirofuchi * Copyright (C) 2015-2016 Samsung Electronics * Igor Kotrasinski * Krzysztof Opasiak * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include #include "usbip_host_common.h" #include "usbip_host_driver.h" #undef PROGNAME #define PROGNAME "libusbip" static int is_my_device(struct udev_device *dev) { const char *driver; driver = udev_device_get_driver(dev); return driver != NULL && !strcmp(driver, USBIP_HOST_DRV_NAME); } static int usbip_host_driver_open(struct usbip_host_driver *hdriver) { int ret; hdriver->ndevs = 0; INIT_LIST_HEAD(&hdriver->edev_list); ret = usbip_generic_driver_open(hdriver); if (ret) err("please load " USBIP_CORE_MOD_NAME ".ko and " USBIP_HOST_DRV_NAME ".ko!"); return ret; } struct usbip_host_driver host_driver = { .edev_list = LIST_HEAD_INIT(host_driver.edev_list), .udev_subsystem = "usb", .ops = { .open = usbip_host_driver_open, .close = usbip_generic_driver_close, .refresh_device_list = usbip_generic_refresh_device_list, .get_device = usbip_generic_get_device, .read_device = read_usb_device, .read_interface = read_usb_interface, .is_my_device = is_my_device, }, }; ='/cgit.cgi/linux/net-next.git/commit/sound/isa/galaxy?h=nds-private-remove&id=cdaf25dfc058ee6f7a7b2e2353de00fa288c0cd4'>commitdiff
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2017-01-30 10:55:04 +0100
committerDavid S. Miller <davem@davemloft.net>2017-01-30 16:37:55 -0500
commitcdaf25dfc058ee6f7a7b2e2353de00fa288c0cd4 (patch)
treea45096fd9e8aaeea2eac1f1999a3d17dfeb0d02b /sound/isa/galaxy
parent1930b60352e7e195f55b27cde15d2a8f43342a8b (diff)
smc: some potential use after free bugs
Say we got really unlucky and these failed on the last iteration, then it could lead to a use after free bug. Fixes: cd6851f30386 ("smc: remote memory buffers (RMBs)") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Ursula Braun <ubraun@linux.vnet.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'sound/isa/galaxy')