18 Oct, 2013

6 commits

  • Pull driver core fix from Greg KH:
    "Here is one fix for the hotplug memory path that resolves a regression
    when removing memory that showed up in 3.12-rc1"

    * tag 'driver-core-3.12-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core:
    driver core: Release device_hotplug_lock when store_mem_state returns EINVAL

    Linus Torvalds
     
  • Pull USB fixes from Greg KH:
    "Here are some USB fixes and new device ids for 3.12-rc6

    The largest change here is a bunch of new device ids for the option
    USB serial driver for new Huawei devices. Other than that, just some
    small bug fixes for issues that people have reported (run-time and
    build-time), nothing major"

    * tag 'usb-3.12-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb:
    usb: usb_phy_gen: refine conditional declaration of usb_nop_xceiv_register
    usb: misc: usb3503: Fix compile error due to incorrect regmap depedency
    usb/chipidea: fix oops on memory allocation failure
    usb-storage: add quirk for mandatory READ_CAPACITY_16
    usb: serial: option: blacklist Olivetti Olicard200
    USB: quirks: add touchscreen that is dazzeled by remote wakeup
    Revert "usb: musb: gadget: fix otg active status flag"
    USB: quirks.c: add one device that cannot deal with suspension
    USB: serial: option: add support for Inovia SEW858 device
    USB: serial: ti_usb_3410_5052: add Abbott strip port ID to combined table as well.
    USB: support new huawei devices in option.c
    usb: musb: start musb on the udc side, too
    xhci: Fix spurious wakeups after S5 on Haswell
    xhci: fix write to USB3_PSSEN and XUSB2PRM pci config registers
    xhci: quirk for extra long delay for S4
    xhci: Don't enable/disable RWE on bus suspend/resume.

    Linus Torvalds
     
  • Pull serial driver fixes from Greg KH:
    "Here are two serial driver fixes for your tree. One is a revert of a
    patch that causes a build error, the other is a fix to provide the
    correct brace placement which resolves a bug where the driver was not
    working properly"

    * tag 'tty-3.12-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty:
    serial: vt8500: add missing braces
    Revert "serial: i.MX: evaluate linux,stdout-path property"

    Linus Torvalds
     
  • Pull char/misc driver fixes from Greg KH:
    "Here are some small iio and w1 driver fixes for 3.12-rc6.

    There is also a hyper-v fix in here, which turned out to be incorrect,
    so it was reverted. That will probably have to wait unto 3.13-rc1 to
    get accepted as it's still being discussed"

    * tag 'char-misc-3.12-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc:
    Revert "Drivers: hv: vmbus: Fix a bug in channel rescind code"
    Drivers: hv: vmbus: Fix a bug in channel rescind code
    iio:buffer: Free active scan mask in iio_disable_all_buffers()
    iio: frequency: adf4350: add missing clk_disable_unprepare() on error in adf4350_probe()
    w1 - call request_module with w1 master mutex unlocked
    w1 - fix fops in w1_bus_notify

    Linus Torvalds
     
  • …/jic23/iio into char-misc-linus

    Jonathan writes:

    Third set of IIO fixes for the 3.12 cycle.

    Two little ones this time:

    1) A missing clk_unprepare in adf4350.
    2) A missing free of the active_scan_mask when iio_disable_all_buffers is
    called during an unexpected device removal. This leak was introduced by
    the fix
    a87c82e454f184a9473f8cdfd4d304205f585f65 iio: Stop sampling when the device is removed
    and hence is a regression fix.

    Greg Kroah-Hartman
     
  • This reverts commit 90d33f3ec519db19d785216299a4ee85ef58ec97 as it's not
    the correct fix for this issue, and it causes a build warning to be
    added to the kernel tree.

    Cc: K. Y. Srinivasan
    Cc:
    Signed-off-by: Greg Kroah-Hartman

    Greg Kroah-Hartman
     

17 Oct, 2013

10 commits

  • When inserting a wrong value to /sys/devices/system/memory/memoryX/state file,
    following messages are shown. And device_hotplug_lock is never released.

    ================================================
    [ BUG: lock held when returning to user space! ]
    3.12.0-rc4-debug+ #3 Tainted: G W
    ------------------------------------------------
    bash/6442 is leaving the kernel with locks still held!
    1 lock held by bash/6442:
    #0: (device_hotplug_lock){+.+.+.}, at: [] lock_device_hotplug_sysfs+0x15/0x50

    This issue was introdued by commit fa2be40 (drivers: base: use standard
    device online/offline for state change).

    This patch releases device_hotplug_lcok when store_mem_state returns EINVAL.

    Signed-off-by: Yasuaki Ishimatsu
    Reviewed-by: Toshi Kani
    CC: Seth Jennings
    Signed-off-by: Greg Kroah-Hartman

    Yasuaki Ishimatsu
     
  • Pull device-mapper fix from Alasdair Kergon:
    "A patch to avoid data corruption in a device-mapper snapshot.

    This is primarily a data corruption bug that all users of
    device-mapper snapshots will want to fix. The CVE is due to a data
    leak under specific circumstances if, for example, the snapshot is
    presented to a virtual machine: a block written as data inside the VM
    can get interpreted incorrectly on the host outside the VM as
    metadata, causing the host to provide the VM with access to blocks it
    would not otherwise see. This is likely to affect few, if any,
    people"

    * tag 'dm-3.12-fix-cve' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm:
    dm snapshot: fix data corruption

    Linus Torvalds
     
  • Pull gpio fixes from Linus Walleij:
    "Three GPIO fixes for the v3.12 series:
    - A fix to the Lynxpoint IRQ handler
    - Two late fixes to fallout from the gpiod refactoring"

    * tag 'gpio-v3.12-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio:
    gpiolib: let gpiod_request() return -EPROBE_DEFER
    gpiolib: safer implementation of desc_to_gpio()
    gpio/lynxpoint: check if the interrupt is enabled in IRQ handler

    Linus Torvalds
     
  • Rescind of subchannels were not being correctly handled. Fix the bug.

    Signed-off-by: K. Y. Srinivasan
    Cc: [3.11+]
    Signed-off-by: Greg Kroah-Hartman

    K. Y. Srinivasan
     
  • The USB3503 driver had an incorrect depedency on REGMAP, instead of
    REGMAP_I2C. This caused the build to fail since the necessary regmap
    i2c pieces were not available.

    Signed-off-by: Matthew Dawson
    Signed-off-by: Greg Kroah-Hartman

    Matthew Dawson
     
  • When CMA fails to initialize in v3.12-rc4, the chipidea driver oopses
    the kernel while trying to remove and put the HCD which doesn't exist:

    WARNING: CPU: 0 PID: 6 at /home/rmk/git/linux-rmk/arch/arm/mm/dma-mapping.c:511
    __dma_alloc+0x200/0x240()
    coherent pool not initialised!
    Modules linked in:
    CPU: 0 PID: 6 Comm: kworker/u2:0 Tainted: G W 3.12.0-rc4+ #56
    Workqueue: deferwq deferred_probe_work_func
    Backtrace:
    [] (dump_backtrace+0x0/0x10c) from [] (show_stack+0x18/0x1c)
    r6:c05fd9cc r5:000001ff r4:00000000 r3:df86ad00
    [] (show_stack+0x0/0x1c) from [] (dump_stack+0x70/0x8c)
    [] (dump_stack+0x0/0x8c) from [] (warn_slowpath_common+0x6c/0x8c)
    r4:df883a60 r3:df86ad00
    [] (warn_slowpath_common+0x0/0x8c) from [] (warn_slowpath_fmt+0x38/0x40)
    r8:ffffffff r7:00001000 r6:c083b808 r5:00000000 r4:df2efe80
    [] (warn_slowpath_fmt+0x0/0x40) from [] (__dma_alloc+0x200/0x240)
    r3:00000000 r2:c05fda00
    [] (__dma_alloc+0x0/0x240) from [] (arm_dma_alloc+0x88/0xa0)
    [] (arm_dma_alloc+0x0/0xa0) from [] (ehci_setup+0x1f4/0x438)
    [] (ehci_setup+0x0/0x438) from [] (usb_add_hcd+0x18c/0x664)
    [] (usb_add_hcd+0x0/0x664) from [] (host_start+0xf0/0x180)
    [] (host_start+0x0/0x180) from [] (ci_hdrc_probe+0x360/0x670
    )
    r6:df2ef410 r5:00000000 r4:df2c3010 r3:c03e8904
    [] (ci_hdrc_probe+0x0/0x670) from [] (platform_drv_probe+0x20/0x24)
    [] (platform_drv_probe+0x0/0x24) from [] (driver_probe_device+0x9c/0x234)
    ...
    ---[ end trace c88ccaf3969e8422 ]---
    Unable to handle kernel NULL pointer dereference at virtual address 00000028
    pgd = c0004000
    [00000028] *pgd=00000000
    Internal error: Oops: 17 [#1] SMP ARM
    Modules linked in:
    CPU: 0 PID: 6 Comm: kworker/u2:0 Tainted: G W 3.12.0-rc4+ #56
    Workqueue: deferwq deferred_probe_work_func
    task: df86ad00 ti: df882000 task.ti: df882000
    PC is at usb_remove_hcd+0x10/0x150
    LR is at host_stop+0x1c/0x3c
    pc : [] lr : [] psr: 60000013
    sp : df883b50 ip : df883b78 fp : df883b74
    r10: c11f4c54 r9 : c0836450 r8 : df30c400
    r7 : fffffff4 r6 : df2ef410 r5 : 00000000 r4 : df2c3010
    r3 : 00000000 r2 : 00000000 r1 : df86b0a0 r0 : 00000000
    Flags: nZCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment kernel
    Control: 10c53c7d Table: 2f29404a DAC: 00000015
    Process kworker/u2:0 (pid: 6, stack limit = 0xdf882240)
    Stack: (0xdf883b50 to 0xdf884000)
    ...
    Backtrace:
    [] (usb_remove_hcd+0x0/0x150) from [] (host_stop+0x1c/0x3c)
    r6:df2ef410 r5:00000000 r4:df2c3010
    [] (host_stop+0x0/0x3c) from [] (ci_hdrc_host_destroy+0x1c/0x20)
    r5:00000000 r4:df2c3010
    [] (ci_hdrc_host_destroy+0x0/0x20) from [] (ci_hdrc_probe+0x3ac/0x670)
    [] (ci_hdrc_probe+0x0/0x670) from [] (platform_drv_probe+0x20/0x24)
    [] (platform_drv_probe+0x0/0x24) from [] (driver_probe_device+0x9c/0x234)
    [] (driver_probe_device+0x0/0x234) from [] (__device_attach+0x44/0x48)
    ...
    ---[ end trace c88ccaf3969e8423 ]---

    Fix this so at least we can continue booting and get to a shell prompt.

    Signed-off-by: Russell King
    Tested-by: Russell King
    Signed-off-by: Greg Kroah-Hartman

    Russell King - ARM Linux
     
  • Some USB drive enclosures do not correctly report an
    overflow condition if they hold a drive with a capacity
    over 2TB and are confronted with a READ_CAPACITY_10.
    They answer with their capacity modulo 2TB.
    The generic layer cannot cope with that. It must be told
    to use READ_CAPACITY_16 from the beginning.

    Signed-off-by: Oliver Neukum
    Cc: stable
    Signed-off-by: Greg Kroah-Hartman

    Oliver Neukum
     
  • Interface 6 of this device speaks QMI as per tests done by us.
    Credits go to Antonella for providing the hardware.

    Signed-off-by: Enrico Mioso
    Signed-off-by: Antonella Pellizzari
    Tested-by: Dan Williams
    Cc: stable
    Signed-off-by: Greg Kroah-Hartman

    Enrico Mioso
     
  • Due to missing braces on an if statement, in presence of a device_node a
    port was always assigned -1, regardless of any alias entries in the
    device tree. Conversely, if device_node was NULL, an unitialized port
    ended up being used.

    This patch adds the missing braces, fixing the issues.

    Signed-off-by: Roel Kluin
    Acked-by: Tony Prisk
    Cc: stable
    Signed-off-by: Greg Kroah-Hartman

    Roel Kluin
     
  • The device descriptors are messed up after remote wakeup

    Signed-off-by: Oliver Neukum
    Cc: stable
    Signed-off-by: Greg Kroah-Hartman

    Oliver Neukum
     

16 Oct, 2013

4 commits

  • This patch fixes a particular type of data corruption that has been
    encountered when loading a snapshot's metadata from disk.

    When we allocate a new chunk in persistent_prepare, we increment
    ps->next_free and we make sure that it doesn't point to a metadata area
    by further incrementing it if necessary.

    When we load metadata from disk on device activation, ps->next_free is
    positioned after the last used data chunk. However, if this last used
    data chunk is followed by a metadata area, ps->next_free is positioned
    erroneously to the metadata area. A newly-allocated chunk is placed at
    the same location as the metadata area, resulting in data or metadata
    corruption.

    This patch changes the code so that ps->next_free skips the metadata
    area when metadata are loaded in function read_exceptions.

    The patch also moves a piece of code from persistent_prepare_exception
    to a separate function skip_metadata to avoid code duplication.

    CVE-2013-4299

    Signed-off-by: Mikulas Patocka
    Cc: stable@vger.kernel.org
    Cc: Mike Snitzer
    Signed-off-by: Alasdair G Kergon

    Mikulas Patocka
     
  • Pull device tree fixes and reverts from Grant Likely:
    "One bug fix and three reverts. The reverts back out the slightly
    controversial feeding the entire device tree into the random pool and
    the reserved-memory binding which isn't fully baked yet. Expect the
    reserved-memory patches at least to resurface for v3.13.

    The bug fixes removes a scary but harmless warning on SPARC that was
    introduced in the v3.12 merge window. v3.13 will contain a proper fix
    that makes the new code work on SPARC.

    On the plus side, the diffstat looks *awesome*. I love removing lines
    of code"

    * tag 'devicetree-for-linus' of git://git.secretlab.ca/git/linux:
    Revert "drivers: of: add initialization code for dma reserved memory"
    Revert "ARM: init: add support for reserved memory defined by device tree"
    Revert "of: Feed entire flattened device tree into the random pool"
    of: fix unnecessary warning on missing /cpus node

    Linus Torvalds
     
  • Pull Xen fixes from Stefano Stabellini:
    "A small fix for Xen on x86_32 and a build fix for xen-tpmfront on
    arm64"

    * tag 'stable/for-linus-3.12-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
    xen: Fix possible user space selector corruption
    tpm: xen-tpmfront: fix missing declaration of xen_domain

    Linus Torvalds
     
  • Usually the active scan mask is freed in __iio_update_buffers() when the buffer
    is disabled. But when the device is still sampling when it is removed we'll end
    up disabling the buffers in iio_disable_all_buffers(). So we also need to free
    the active scan mask here, otherwise it will be leaked.

    Signed-off-by: Lars-Peter Clausen
    Signed-off-by: Jonathan Cameron

    Lars-Peter Clausen
     

15 Oct, 2013

8 commits

  • This reverts commit 9d8eab7af79cb4ce2de5de39f82c455b1f796963. There is
    still no consensus on the bindings for the reserved memory and various
    drawbacks of the proposed solution has been shown, so the best now is to
    revert it completely and start again from scratch later.

    Signed-off-by: Marek Szyprowski
    Signed-off-by: Grant Likely

    Marek Szyprowski
     
  • Pull vfio fix from Alex Williamson:
    "Fix an incorrect break out of nested loop in iommu mapping code"

    * tag 'vfio-v3.12-rc5' of git://github.com/awilliam/linux-vfio:
    VFIO: vfio_iommu_type1: fix bug caused by break in nested loop

    Linus Torvalds
     
  • Pull infiniband updates from Roland Dreier:
    "Last batch of IB changes for 3.12: many mlx5 hardware driver fixes
    plus one trivial semicolon cleanup"

    * tag 'rdma-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband:
    IB: Remove unnecessary semicolons
    IB/mlx5: Ensure proper synchronization accessing memory
    IB/mlx5: Fix alignment of reg umr gather buffers
    IB/mlx5: Fix eq names to display nicely in /proc/interrupts
    mlx5: Fix error code translation from firmware to driver
    IB/mlx5: Fix opt param mask according to firmware spec
    mlx5: Fix opt param mask for sq err to rts transition
    IB/mlx5: Disable atomic operations
    mlx5: Fix layout of struct mlx5_init_seg
    mlx5: Keep polling to reclaim pages while any returned
    IB/mlx5: Avoid async events on invalid port number
    IB/mlx5: Decrease memory consumption of mr caches
    mlx5: Remove checksum on command interface commands
    IB/mlx5: Fix memory leak in mlx5_ib_create_srq
    IB/mlx5: Flush cache workqueue before destroying it
    IB/mlx5: Fix send work queue size calculation

    Linus Torvalds
     
  • This reverts commit 9b0a1de3c85d99d881c86a29b3d52da7b9c7bd61.

    Aaro writes:
    With v3.12-rc4 I can no longer connect to N800 (OMAP2) with USB
    (peripheral, g_ether).

    According to git bisect this is caused by:

    9b0a1de3c85d99d881c86a29b3d52da7b9c7bd61 is the first bad commit

    So revert this patch, as Felipe says:
    It's unfortunate that tusb6010 is so messed up

    Reported-by: Aaro Koskinen
    Acked-by: Felipe Balbi
    Cc: Bin Liu
    Signed-off-by: Greg Kroah-Hartman

    Greg Kroah-Hartman
     
  • The device is not responsive when resumed, unless it is reset.

    Signed-off-by: Oliver Neukum
    CC: stable@vger.kernel.org
    Signed-off-by: Greg Kroah-Hartman

    Oliver Neukum
     
  • Roland Dreier
     
  • These aren't necessary after switch blocks.

    Signed-off-by: Joe Perches
    Signed-off-by: Roland Dreier

    Joe Perches
     
  • Pull ACPI and power management fixes from Rafael Wysocki:
    "These fix two recent bugs in ACPIPHP (ACPI-based PCI hotplug) and
    update a bunch of web links and e-mail addresses in MAINTAINERS, docs
    and Kconfig that either are stale or will expire soon.

    Specifics:

    - The WARN_ON() in acpiphp_enumerate_slots() triggers as a false
    positive in some cases, so drop it.

    - Add a missing pci_dev_put() to an error code path in
    acpiphp_enumerate_slots().

    - Replace my old e-mail address that's going to expire with a new
    one.

    - Update ACPI web links and git tree information in MAINTAINERS.

    - Update links to the Linux-ACPI project's page in MAINTAINERS.

    - Update some stale links and e-mail addresses under Documentation
    and in the ACPI Kconfig file"

    * tag 'pm+acpi-3.12-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
    ACPI / hotplug / PCI: Drop WARN_ON() from acpiphp_enumerate_slots()
    ACPI / hotplug / PCI: Fix error code path in acpiphp_enumerate_slots()
    ACPI / PM / Documentation: Replace outdated project links and addresses
    MAINTAINERS / ACPI: Update links to the Linux-ACPI project web page
    MAINTAINERS / ACPI: Update links and git tree information
    MAINTAINERS / Documentation: Update Rafael's e-mail address

    Linus Torvalds
     

14 Oct, 2013

7 commits

  • This reverts commit 109b6236294b53d8eaa50be7d9e9ad37079f5f7e.

    Tim Bird expressed concern that this will have a bad effect on boot
    time, and while simple tests have shown it to be okay with simple tree,
    a device tree blob can potentially be quite large and
    add_device_randomness() is not a fast function. Rather than do this for
    all platforms unconditionally, I'm reverting this patch and would like
    to see it revisited. Instead of feeding the entire tree into the random
    pool, it would probably be appropriate to hash the tree and feed the
    hash result into the pool. There really isn't a lot of randomness in a
    device tree anyway. In the majority of cases only a handful of
    properties are going to be different between machines with the same
    baseboard.

    Signed-off-by: Grant Likely

    Grant Likely
     
  • Not all DT platforms have all the cpus collected under a /cpus node.
    That just happens to be a details of FDT, ePAPR and PowerPC platforms.
    Sparc does something different, but unfortunately the current code
    complains with a warning if /cpus isn't there. This became a problem
    with commit f86e4718, "driver/core cpu: initialize of_node in cpu's
    device structure", which caused the function to get called for all
    architectures.

    This commit is a temporary fix to fail silently if the cpus node isn't
    present. A proper fix will come later to allow arch code to provide a
    custom mechanism for decoding the CPU hwid if the 'reg' property isn't
    appropriate.

    Signed-off-by: Grant Likely
    Cc: David Miller
    Cc: Sudeep KarkadaNagesha
    Cc: Rob Herring

    Grant Likely
     
  • Pull watchdog fixes from Wim Van Sebroeck:
    "This will fix a deadlock on the ts72xx_wdt driver, fix bitmasks in the
    kempld_wdt driver and fix a section mismatch in the sunxi_wdt driver"

    * git://www.linux-watchdog.org/linux-watchdog:
    watchdog: sunxi: Fix section mismatch
    watchdog: kempld_wdt: Fix bit mask definition
    watchdog: ts72xx_wdt: locking bug in ioctl

    Linus Torvalds
     
  • This driver has a section mismatch, for probe and remove functions,
    leading to the following warning during the compilation.

    WARNING: drivers/watchdog/built-in.o(.data+0x24): Section mismatch in
    reference from the variable sunxi_wdt_driver to the function
    .init.text:sunxi_wdt_probe()
    The variable sunxi_wdt_driver references
    the function __init sunxi_wdt_probe()

    Signed-off-by: Maxime Ripard
    Reviewed-by: Guenter Roeck
    Signed-off-by: Wim Van Sebroeck

    Maxime Ripard
     
  • STAGE_CFG bits are defined as [5:4] bits. However, '(((x) & 0x30) << 4)'
    handles [9:8] bits. Thus, it should be fixed in order to handle
    [5:4] bits.

    Signed-off-by: Jingoo Han
    Reviewed-by: Guenter Roeck
    Signed-off-by: Wim Van Sebroeck

    Jingoo Han
     
  • Calling the WDIOC_GETSTATUS & WDIOC_GETBOOTSTATUS and twice will cause a
    interruptible deadlock.

    Signed-off-by: Dan Carpenter
    Reviewed-by: Guenter Roeck
    Signed-off-by: Wim Van Sebroeck

    Dan Carpenter
     
  • Pull slave-dmaengine fixes from Vinod Koul:
    "Another week, time to send another fixes request taking time out of
    extended weekend for the festivities in this part of the world.

    We have two fixes from Sergei for rcar driver and one fixing memory
    leak of edma driver by Geyslan"

    * 'fixes' of git://git.infradead.org/users/vkoul/slave-dma:
    dma: edma.c: remove edma_desc leakage
    rcar-hpbdma: add parameter to set_slave() method
    rcar-hpbdma: remove shdma_free_irq() calls

    Linus Torvalds
     

13 Oct, 2013

2 commits

  • Pull i2c fixes from Wolfram Sang:
    "We had various reports of problems with deferred probing in the I2C
    subsystem, so this pull requst is a little bigger than usual.

    Most issues should be addressed now so devices will be found
    correctly. A few ususal driver bugfixes are in here, too"

    * 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
    i2c: i2c-mux-pinctrl: use deferred probe when adapter not found
    i2c: i2c-arb-gpio-challenge: use deferred probe when adapter not found
    i2c: i2c-mux-gpio: use deferred probing
    i2c: i2c-mux-gpio: don't ignore of_get_named_gpio errors
    i2c: omap: Clear ARDY bit twice
    i2c: Not all adapters have a parent
    i2c: i2c-stu300: replace platform_driver_probe to support deferred probing
    i2c: i2c-mxs: replace platform_driver_probe to support deferred probing
    i2c: i2c-imx: replace platform_driver_probe to support deferred probing
    i2c: i2c-designware-platdrv: replace platform_driver_probe to support deferred probing

    Linus Torvalds
     
  • Pull x86 fixes from Ingo Molnar:
    "A build fix and a reboot quirk"

    * 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
    x86/reboot: Add reboot quirk for Dell Latitude E5410
    x86, build, pci: Fix PCI_MSI build on !SMP

    Linus Torvalds
     

12 Oct, 2013

3 commits