Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'vfio-v3.10-rc5' of git://github.com/awilliam/linux-vfio

Pull vfio fix from Alex Williamson:
"fix rmmod crash"

* tag 'vfio-v3.10-rc5' of git://github.com/awilliam/linux-vfio:
vfio: fix crash on rmmod

+1 -1
+1 -1
drivers/vfio/vfio.c
··· 1360 1360 */ 1361 1361 static char *vfio_devnode(struct device *dev, umode_t *mode) 1362 1362 { 1363 - if (MINOR(dev->devt) == 0) 1363 + if (mode && (MINOR(dev->devt) == 0)) 1364 1364 *mode = S_IRUGO | S_IWUGO; 1365 1365 1366 1366 return kasprintf(GFP_KERNEL, "vfio/%s", dev_name(dev));