/* * test for timerfd functions used by perf-kvm-stat-live */ #include int main(void) { struct itimerspec new_value; int fd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK); if (fd < 0) return 1; if (timerfd_settime(fd, 0, &new_value, NULL) != 0) return 1; return 0; } ate' title='Atom feed' href='https://git.distanz.ch/cgit.cgi/linux/net-next.git/atom/drivers/usb/host/xhci-mem.c?h=nds-private-remove' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-02-08 12:23:49 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-02-08 12:23:49 -0800
commitbe11f436a80b19cb5ef4cdfba7371a5178bd43cd (patch)
tree757250a0fe53c3947d9f244ffb04e51b53d13143 /drivers/usb/host/xhci-mem.c
parent472ff5be61f9593ee2d3ebbd716768e14de4659d (diff)
parentd98e0929071e7ef63d35c1838b0ad0805ae366dd (diff)
Merge tag 'pci-v4.10-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
Pull PCI fixes from Bjorn Helgaas: - check MSI affinity vs. number of vectors to avoid memory corruption - drop runtime power management for PCIe hotplug ports for now to avoid regressing hotplug via sysfs * tag 'pci-v4.10-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci: Revert "PCI: pciehp: Add runtime PM support for PCIe hotplug ports" PCI/MSI: Don't apply affinity if there aren't enough vectors left
Diffstat (limited to 'drivers/usb/host/xhci-mem.c')