15 Oct, 2014

28 commits

  • Greg Kroah-Hartman
     
  • commit 3631073659d0aafeaa52227bb61a100efaf901dc upstream.

    ARM64 irq work self-IPI support depends on __smp_cross_call to point to
    some relevant IRQ controller operations. This information should be
    available after the call to init_IRQ().

    Lets implement arch_irq_work_has_interrupt() accordingly.

    Acked-by: Peter Zijlstra (Intel)
    Acked-by: Catalin Marinas
    Cc: Ingo Molnar
    Cc: Paul E. McKenney
    Cc: Peter Zijlstra
    Cc: Thomas Gleixner
    Cc: Will Deacon
    Signed-off-by: Frederic Weisbecker
    Signed-off-by: Greg Kroah-Hartman

    Frederic Weisbecker
     
  • commit 1c40279960bcd7d52dbdf1d466b20d24b99176c8 upstream.

    lib/glob.c provides a new glob_match() function, with arguments in
    (pattern, string) order. It replaced a private function with arguments
    in (string, pattern) order, but I didn't swap the call site...

    The result was the entire ATA blacklist was effectively disabled.

    The lesson for today is "I f***ed up *how* badly *how* many months ago?",
    er, I mean "Nobody Tests RC Kernels On Legacy Hardware".

    This was not a subtle break, but it made it through an entire RC
    cycle unreported, presumably because all the people doing testing
    have full-featured hardware.

    (FWIW, the reason for the argument swap was because fnmatch() does it that
    way, and for a while implementing a full fnmatch() was being considered.)

    Fixes: 428ac5fc056e0 (libata: Use glob_match from lib/glob.c)
    Reported-by: Steven Honeyman
    Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=71371#c21
    Signed-off-by: George Spelvin
    Tested-by: Steven Honeyman
    Signed-off-by: Tejun Heo
    Cc: Henrique de Moraes Holschuh
    Signed-off-by: Greg Kroah-Hartman

    George Spelvin
     
  • commit 1ede7dcca3c4fa15a518ab0473126f9c3e621e4c upstream.

    Quark X1000 contains two designware derived 8250 serial ports.
    Each port has a unique PCI configuration space consisting of
    BAR0:UART BAR1:DMA respectively.

    Unlike the standard 8250 the register width is 32 bits for RHR,IER etc
    The Quark UART has a fundamental clock @ 44.2368 MHz allowing for a
    bitrate of up to about 2.76 megabits per second.

    This patch enables standard 8250 mode

    Signed-off-by: Bryan O'Donoghue
    Reviewed-by: Heikki Krogerus
    Signed-off-by: Greg Kroah-Hartman

    Bryan O'Donoghue
     
  • commit 33ead538f642a33b1d658782a5d14a40b5014d1f upstream.

    Commit 92d585ef067d ("numa: fix NULL pointer access and memory
    leak in unregister_one_node()") added kfree() of node struct in
    unregister_one_node(). But node struct is freed by node_device_release()
    which is called in unregister_node(). So by adding the kfree(),
    node struct is freed two times.

    While hot removing memory, the commit leads the following BUG_ON():

    kernel BUG at mm/slub.c:3346!
    invalid opcode: 0000 [#1] SMP
    [...]
    Call Trace:
    [...] unregister_one_node
    [...] try_offline_node
    [...] remove_memory
    [...] acpi_memory_device_remove
    [...] acpi_bus_trim
    [...] acpi_bus_trim
    [...] acpi_device_hotplug
    [...] acpi_hotplug_work_fn
    [...] process_one_work
    [...] worker_thread
    [...] ? rescuer_thread
    [...] kthread
    [...] ? kthread_create_on_node
    [...] ret_from_fork
    [...] ? kthread_create_on_node

    This patch removes unnecessary kfree() from unregister_one_node().

    Signed-off-by: Yasuaki Ishimatsu
    Cc: Xishi Qiu
    Fixes: 92d585ef067d "numa: fix NULL pointer access and memory leak in unregister_one_node()"
    Signed-off-by: Andrew Morton
    Signed-off-by: Greg Kroah-Hartman

    Yasuaki Ishimatsu
     
  • commit 4451d494b1910bf7b7f8381a637d0fe6d2142467 upstream.

    buf_0 and buf_1 in caam_hash_state are not next to each other.
    Accessing buf_1 is incorrect from &buf_0 with an offset of only
    size_of(buf_0). The same issue is also with buflen_0 and buflen_1

    Signed-off-by: Cristian Stoica
    Signed-off-by: Herbert Xu
    Signed-off-by: Greg Kroah-Hartman

    Cristian Stoica
     
  • commit ddbe1fca0bcb87ca8c199ea873a456ca8a948567 upstream.

    This full-speed USB device generates spurious remote wakeup event
    as soon as USB_DEVICE_REMOTE_WAKEUP feature is set. As the result,
    Linux can't enter system suspend and S0ix power saving modes once
    this keyboard is used.

    This patch tries to introduce USB_QUIRK_IGNORE_REMOTE_WAKEUP quirk.
    With this quirk set, wakeup capability will be ignored during
    device configure.

    This patch could be back-ported to kernels as old as 2.6.39.

    Signed-off-by: Lu Baolu
    Acked-by: Alan Stern
    Signed-off-by: Greg Kroah-Hartman

    Lu Baolu
     
  • commit 468bcc2a2ca071f652009d2d20d97f2437630cae upstream.

    if we don't make sure to kill the timer, it could
    expire after we have already gated our clocks.

    That will trigger a Data Abort exception because
    we would try to access register while clock is gated.

    Fix that bug.

    Fixes 869c597 (usb: musb: dsps: add support for suspend and resume)
    Tested-by: Dave Gerlach
    Signed-off-by: Felipe Balbi
    Signed-off-by: Greg Kroah-Hartman

    Felipe Balbi
     
  • commit dee80ad12d2b1b304286a707fde7ab05d1fc7bab upstream.

    Added the Seluxit ApS USB Serial Dongle to cp210x driver.

    Signed-off-by: Andreas Bomholtz
    Signed-off-by: Johan Hovold
    Signed-off-by: Greg Kroah-Hartman

    Andreas Bomholtz
     
  • commit bfc2d7dfdd761ae3beccdb26abebe03cef042f46 upstream.

    Added support for Ketra N1 wireless interface, which uses the
    Silicon Labs' CP2104 USB to UART bridge with customized PID 8946.

    Signed-off-by: Joe Savage
    Signed-off-by: Johan Hovold
    Signed-off-by: Greg Kroah-Hartman

    Joe Savage
     
  • commit bf17eba7ae1e813b0ad67cb1078dcbd7083b906e upstream.

    This reverts commit f2267089ea17fa97b796b1b4247e3f8957655df3.

    That commit causes more problem than fixes. Firstly, kfree()
    should be called after usb_ep_dequeue() and secondly, the way
    things are, we will try to dequeue a request that has already
    completed much more frequently than one which is pending.

    Cc: Li Jun
    Signed-off-by: Felipe Balbi
    Signed-off-by: Greg Kroah-Hartman

    Felipe Balbi
     
  • commit 85b06f5e53d17c15844ef3cd45d0c7107f0ae45c upstream.

    We need "idx" to be signed for the error handling to work.

    Fixes: 6d5c1c77bbf9 ('usb: gadget: f_fs: fix the redundant ep files problem')
    Acked-by: Michal Nazarewicz
    Signed-off-by: Dan Carpenter
    Signed-off-by: Felipe Balbi
    Signed-off-by: Greg Kroah-Hartman

    Dan Carpenter
     
  • commit 710f1bf16ab1b1558f099b62c5011c4cbba6a7bb upstream.

    As most ASM1051 based devices, this one has unfixable issues with uas too.

    Signed-off-by: Hans de Goede
    Signed-off-by: Greg Kroah-Hartman

    Hans de Goede
     
  • commit f9554a6b199360c2f888173fd600e1eb7ff165ef upstream.

    https://bbs.archlinux.org/viewtopic.php?pid=1457492

    Signed-off-by: Hans de Goede
    Signed-off-by: Greg Kroah-Hartman

    Hans de Goede
     
  • commit 734016b00b50a3c6a0e1fc1b7b217e783f5123a1 upstream.

    Besides the ASM1051 (*) needing sdev->no_report_opcodes = 1, it turns out that
    the JMicron JMS567 also needs it to work properly with uas (usb-storage always
    sets it). Since some of the scsi devs were not to keen on the idea to
    outrightly set sdev->no_report_opcodes = 1 for all uas devices, so add a quirk
    for this, and set it for the JMS567.

    *) Which has become a non-issue since we've completely blacklisted uas on
    the ASM1051 for other reasons

    Reported-and-tested-by: Claudio Bizzarri
    Signed-off-by: Hans de Goede
    Signed-off-by: Greg Kroah-Hartman

    Hans de Goede
     
  • commit 593078525c8b234a35a36ff551b8716464e86481 upstream.

    And set this quirk for the Seagate Expansion Desk (0bc2:2312), as that one
    seems to hang upon receiving an ATA_12 or ATA_16 command.

    https://bugzilla.kernel.org/show_bug.cgi?id=79511
    https://bbs.archlinux.org/viewtopic.php?id=183190

    While at it also add missing documentation for the u value for usb-storage
    quirks.

    Signed-off-by: Hans de Goede
    Signed-off-by: Greg Kroah-Hartman

    Hans de Goede
     
  • commit d433889cd5a0933fbd90f1e65bff5a8d7963cc52 upstream.

    When we warned about a timeout on a hotplug command, we previously printed
    the time between calls to pcie_write_cmd(), without accounting for any time
    spent actually waiting. Consider this sequence:

    pcie_write_cmd
    write SLTCTL
    cmd_started = jiffies # T1

    pcie_write_cmd
    pcie_wait_cmd
    now = jiffies # T2
    wait_event_timeout # we may wait here
    if (timeout)
    ctrl_info("Timeout on command issued %u msec ago",
    jiffies_to_msecs(now - cmd_started))

    We previously printed (T2 - T1), but that doesn't include the time spent in
    wait_event_timeout().

    Fix this by using the current jiffies value, not the one cached before
    calling wait_event_timeout().

    [bhelgaas: changelog, use current jiffies instead of adding timeout]
    Fixes: 40b960831cfa ("PCI: pciehp: Compute timeout from hotplug command start time")
    Signed-off-by: Yinghai Lu
    Signed-off-by: Bjorn Helgaas
    Signed-off-by: Greg Kroah-Hartman

    Yinghai Lu
     
  • commit 09f6edd424218eb69078551b2ecfada1f2d098eb upstream.

    ARM irq work IPI support depends on SMP support. That information is
    partly known at early boottime. Lets implement
    arch_irq_work_has_interrupt() accordingly.

    Acked-by: Peter Zijlstra (Intel)
    Cc: Ingo Molnar
    Cc: Paul E. McKenney
    Cc: Peter Zijlstra
    Cc: Russell King
    Cc: Thomas Gleixner
    Signed-off-by: Frederic Weisbecker
    Signed-off-by: Greg Kroah-Hartman

    Frederic Weisbecker
     
  • commit 3010279f0fc36f0388872203e63ca49912f648fd upstream.

    x86 supports irq work self-IPIs when local apic is available. This is
    partly known on runtime so lets implement arch_irq_work_has_interrupt()
    accordingly.

    This should be safely called after setup_arch().

    Acked-by: Peter Zijlstra (Intel)
    Cc: Ingo Molnar
    Cc: Paul E. McKenney
    Cc: Peter Zijlstra
    Cc: Thomas Gleixner
    Signed-off-by: Frederic Weisbecker
    Signed-off-by: Greg Kroah-Hartman

    Frederic Weisbecker
     
  • commit 76a33061b9323b7fdb220ae5fa116c10833ec22e upstream.

    The nohz full kick, which restarts the tick when any resource depend
    on it, can't be executed anywhere given the operation it does on timers.
    If it is called from the scheduler or timers code, chances are that
    we run into a deadlock.

    This is why we run the nohz full kick from an irq work. That way we make
    sure that the kick runs on a virgin context.

    However if that's the case when irq work runs in its own dedicated
    self-ipi, things are different for the big bunch of archs that don't
    support the self triggered way. In order to support them, irq works are
    also handled by the timer interrupt as fallback.

    Now when irq works run on the timer interrupt, the context isn't blank.
    More precisely, they can run in the context of the hrtimer that runs the
    tick. But the nohz kick cancels and restarts this hrtimer and cancelling
    an hrtimer from itself isn't allowed. This is why we run in an endless
    loop:

    Kernel panic - not syncing: Watchdog detected hard LOCKUP on cpu 2
    CPU: 2 PID: 7538 Comm: kworker/u8:8 Not tainted 3.16.0+ #34
    Workqueue: btrfs-endio-write normal_work_helper [btrfs]
    ffff880244c06c88 000000001b486fe1 ffff880244c06bf0 ffffffff8a7f1e37
    ffffffff8ac52a18 ffff880244c06c78 ffffffff8a7ef928 0000000000000010
    ffff880244c06c88 ffff880244c06c20 000000001b486fe1 0000000000000000
    Call Trace:
    ] dump_stack+0x4e/0x7a
    [] panic+0xd4/0x207
    [] watchdog_overflow_callback+0x118/0x120
    [] __perf_event_overflow+0xae/0x350
    [] ? perf_event_task_disable+0xa0/0xa0
    [] ? x86_perf_event_set_period+0xbf/0x150
    [] perf_event_overflow+0x14/0x20
    [] intel_pmu_handle_irq+0x206/0x410
    [] perf_event_nmi_handler+0x2b/0x50
    [] nmi_handle+0xd2/0x390
    [] ? nmi_handle+0x5/0x390
    [] ? match_held_lock+0x8/0x1b0
    [] default_do_nmi+0x72/0x1c0
    [] do_nmi+0xb8/0x100
    [] end_repeat_nmi+0x1e/0x2e
    [] ? match_held_lock+0x8/0x1b0
    [] ? match_held_lock+0x8/0x1b0
    [] ? match_held_lock+0x8/0x1b0
    <] lock_acquired+0xaf/0x450
    [] ? lock_hrtimer_base.isra.20+0x25/0x50
    [] _raw_spin_lock_irqsave+0x78/0x90
    [] ? lock_hrtimer_base.isra.20+0x25/0x50
    [] lock_hrtimer_base.isra.20+0x25/0x50
    [] hrtimer_try_to_cancel+0x33/0x1e0
    [] hrtimer_cancel+0x1a/0x30
    [] tick_nohz_restart+0x17/0x90
    [] __tick_nohz_full_check+0xc3/0x100
    [] nohz_full_kick_work_func+0xe/0x10
    [] irq_work_run_list+0x44/0x70
    [] irq_work_run+0x2a/0x50
    [] update_process_times+0x5b/0x70
    [] tick_sched_handle.isra.21+0x25/0x60
    [] tick_sched_timer+0x41/0x60
    [] __run_hrtimer+0x72/0x470
    [] ? tick_sched_do_timer+0xb0/0xb0
    [] hrtimer_interrupt+0x117/0x270
    [] local_apic_timer_interrupt+0x37/0x60
    [] smp_apic_timer_interrupt+0x3f/0x50
    [] apic_timer_interrupt+0x6f/0x80

    To fix this we force non-lazy irq works to run on irq work self-IPIs
    when available. That ability of the arch to trigger irq work self IPIs
    is available with arch_irq_work_has_interrupt().

    Reported-by: Catalin Iacob
    Reported-by: Dave Jones
    Acked-by: Peter Zijlstra (Intel)
    Cc: Ingo Molnar
    Cc: Paul E. McKenney
    Cc: Peter Zijlstra
    Cc: Thomas Gleixner
    Signed-off-by: Frederic Weisbecker
    Signed-off-by: Greg Kroah-Hartman

    Frederic Weisbecker
     
  • commit c5c38ef3d70377dc504a6a3f611a3ec814bc757b upstream.

    The nohz full code needs irq work to trigger its own interrupt so that
    the subsystem can work even when the tick is stopped.

    Lets introduce arch_irq_work_has_interrupt() that archs can override to
    tell about their support for this ability.

    Signed-off-by: Peter Zijlstra
    Cc: Ingo Molnar
    Cc: Paul E. McKenney
    Cc: Peter Zijlstra
    Cc: Thomas Gleixner
    Signed-off-by: Frederic Weisbecker
    Signed-off-by: Greg Kroah-Hartman

    Peter Zijlstra
     
  • [ Upstream commit 5301e3e117d88ef0967ce278912e54757f1a31a2 ]

    We need to copy exts->type when committing the change, otherwise
    it would be always 0. This is a quick fix for -net and -stable,
    for net-next tcf_exts will be removed.

    Fixes: commit 33be627159913b094bb578e83 ("net_sched: act: use standard struct list_head")
    Reported-by: Jamal Hadi Salim
    Cc: Jamal Hadi Salim
    Cc: John Fastabend
    Signed-off-by: Cong Wang
    Acked-by: Jamal Hadi Salim
    Signed-off-by: David S. Miller
    Signed-off-by: Greg Kroah-Hartman

    WANG Cong
     
  • [ Upstream commit 88b09a6d958af6c458acf055ee2eb5bc9564efda ]

    In commit 6f2b6a3005b2c34c39f207a87667564f64f2f91a,
    # 3c59x: Add dma error checking and recovery
    the intent is to split out the mapping from the byte-swapping in order to
    insert a dma_mapping_error() check.

    Kinda this semantic patch:

    // See http://coccinelle.lip6.fr/
    //
    // Beware, grouik-and-dirty!
    @@
    expression DEV, X, Y, Z;
    @@
    - cpu_to_le32(pci_map_single(DEV, X, Y, Z))
    + dma_addr_t addr = pci_map_single(DEV, X, Y, Z);
    + if (dma_mapping_error(&DEV->dev, addr))
    + /* snip */;
    + cpu_to_le32(addr)

    However, the #else part (of the #if DO_ZEROCOPY test) is changed this way:

    - cpu_to_le32(pci_map_single(DEV, X, Y, Z))
    + dma_addr_t addr = cpu_to_le32(pci_map_single(DEV, X, Y, Z));
    // ^^^^^^^^^^^
    // That mismatches the 3 other changes!
    + if (dma_mapping_error(&DEV->dev, addr))
    + /* snip */;
    + cpu_to_le32(addr)

    Let's remove the leftover cpu_to_le32() for coherency.

    v2: Better changelog.
    v3: Add Acked-by

    Fixes: 6f2b6a3005b2c34c39f207a87667564f64f2f91a
    # 3c59x: Add dma error checking and recovery
    Acked-by: Neil Horman
    Signed-off-by: Sylvain "ythier" Hitier
    Signed-off-by: David S. Miller
    Signed-off-by: Greg Kroah-Hartman

    Sylvain \\\"ythier\\\" Hitier
     
  • [ Upstream commit bdf6fa52f01b941d4a80372d56de465bdbbd1d23 ]

    Currently association restarts do not take into consideration the
    state of the socket. When a restart happens, the current assocation
    simply transitions into established state. This creates a condition
    where a remote system, through a the restart procedure, may create a
    local association that is no way reachable by user. The conditions
    to trigger this are as follows:
    1) Remote does not acknoledge some data causing data to remain
    outstanding.
    2) Local application calls close() on the socket. Since data
    is still outstanding, the association is placed in SHUTDOWN_PENDING
    state. However, the socket is closed.
    3) The remote tries to create a new association, triggering a restart
    on the local system. The association moves from SHUTDOWN_PENDING
    to ESTABLISHED. At this point, it is no longer reachable by
    any socket on the local system.

    This patch addresses the above situation by moving the newly ESTABLISHED
    association into SHUTDOWN-SENT state and bundling a SHUTDOWN after
    the COOKIE-ACK chunk. This way, the restarted associate immidiately
    enters the shutdown procedure and forces the termination of the
    unreachable association.

    Reported-by: David Laight
    Signed-off-by: Vlad Yasevich
    Signed-off-by: David S. Miller
    Signed-off-by: Greg Kroah-Hartman

    Vlad Yasevich
     
  • [ Upstream commit 3a67c9ccad926a168d8b7891537a452018368a5b ]

    After the packet is successfully sent, we should not touch the packet
    as it may have been freed. This patch is based on the work done by
    Long Li .

    David, please queue this up for stable.

    Signed-off-by: K. Y. Srinivasan
    Reported-by: Sitsofe Wheeler
    Signed-off-by: David S. Miller
    Signed-off-by: Greg Kroah-Hartman

    KY Srinivasan
     
  • [ Upstream commit 47549650abd13d873fd2e5fc218db19e21031074 ]

    When team_notify_peers and team_mcast_rejoin are called, they both reset
    their respective .count_pending atomic variable. Then when the actual
    worker function is executed, the variable is atomically decremented.
    This pattern introduces a potential race condition where the
    .count_pending rolls over and the worker function keeps rescheduling
    until .count_pending decrements to zero again:

    THREAD 1 THREAD 2

    ======== ========
    team_notify_peers(teamX)
    atomic_set count_pending = 1
    schedule_delayed_work
    team_notify_peers(teamX)
    atomic_set count_pending = 1
    team_notify_peers_work
    atomic_dec_and_test
    count_pending = 0
    (return)
    schedule_delayed_work
    team_notify_peers_work
    atomic_dec_and_test
    count_pending = -1
    schedule_delayed_work
    (repeat until count_pending = 0)

    Instead of assigning a new value to .count_pending, use atomic_add to
    tack-on the additional desired worker function invocations.

    Signed-off-by: Joe Lawrence
    Acked-by: Jiri Pirko
    Fixes: fc423ff00df3a19554414ee ("team: add peer notification")
    Fixes: 492b200efdd20b8fcfdac87 ("team: add support for sending multicast rejoins")
    Signed-off-by: David S. Miller
    Signed-off-by: Greg Kroah-Hartman

    Joe Lawrence
     
  • [ Upstream commit e87474a6e697857df21cff0707a2472abceca8b3 ]

    Similar to commit bc23333ba11fb7f959b7e87e121122f5a0fbbca8 ("net:
    bcmgenet: fix bcmgenet_put_tx_csum()"), we need to return the skb
    pointer in case we had to reallocate the SKB headroom.

    Fixes: 80105befdb4b8 ("net: systemport: add Broadcom SYSTEMPORT Ethernet MAC driver")
    Signed-off-by: Florian Fainelli
    Signed-off-by: David S. Miller
    Signed-off-by: Greg Kroah-Hartman

    Florian Fainelli
     
  • [ Upstream commit 3be07244b7337760a3269d56b2f4a63e72218648 ]

    In xmit path, we build a flowi6 which will be used for the output route lookup.
    We are sending a GRE packet, neither IPv4 nor IPv6 encapsulated packet, thus the
    protocol should be IPPROTO_GRE.

    Fixes: c12b395a4664 ("gre: Support GRE over IPv6")
    Reported-by: Matthieu Ternisien d'Ouville
    Signed-off-by: Nicolas Dichtel
    Signed-off-by: David S. Miller
    Signed-off-by: Greg Kroah-Hartman

    Nicolas Dichtel
     

06 Oct, 2014

2 commits


05 Oct, 2014

1 commit


04 Oct, 2014

5 commits

  • commit 03b8c7b623c80af264c4c8d6111e5c6289933666 ("futex: Allow
    architectures to skip futex_atomic_cmpxchg_inatomic() test") added the
    HAVE_FUTEX_CMPXCHG symbol right below FUTEX. This placed it right in
    the middle of the options for the EXPERT menu. However,
    HAVE_FUTEX_CMPXCHG does not depend on EXPERT or FUTEX, so Kconfig stops
    placing items in the EXPERT menu, and displays the remaining several
    EXPERT items (starting with EPOLL) directly in the General Setup menu.

    Since both users of HAVE_FUTEX_CMPXCHG only select it "if FUTEX", make
    HAVE_FUTEX_CMPXCHG itself depend on FUTEX. With this change, the
    subsequent items display as part of the EXPERT menu again; the EMBEDDED
    menu now appears as the next top-level item in the General Setup menu,
    which makes General Setup much shorter and more usable.

    Signed-off-by: Josh Triplett
    Acked-by: Randy Dunlap
    Cc: stable

    Josh Triplett
     
  • The buffers sized by CONFIG_LOG_BUF_SHIFT and
    CONFIG_LOG_CPU_MAX_BUF_SHIFT do not exist if CONFIG_PRINTK=n, so don't
    ask about their size at all.

    Signed-off-by: Josh Triplett
    Acked-by: Randy Dunlap
    Cc: stable

    Josh Triplett
     
  • Pull i2c fixes from Wolfram Sang:
    "Two i2c driver bugfixes"

    * 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
    i2c: qup: Fix order of runtime pm initialization
    i2c: rk3x: fix 0 length write transfers

    Linus Torvalds
     
  • …it/rostedt/linux-trace

    Pull trace ring buffer iterator fix from Steven Rostedt:
    "While testing some new changes for 3.18, I kept hitting a bug every so
    often in the ring buffer. At first I thought it had to do with some
    of the changes I was working on, but then testing something else I
    realized that the bug was in 3.17 itself. I ran several bisects as
    the bug was not very reproducible, and finally came up with the commit
    that I could reproduce easily within a few minutes, and without the
    change I could run the tests over an hour without issue. The change
    fit the bug and I figured out a fix. That bad commit was:

    Commit 651e22f2701b "ring-buffer: Always reset iterator to reader page"

    This commit fixed a bug, but in the process created another one. It
    used the wrong value as the cached value that is used to see if things
    changed while an iterator was in use. This made it look like a change
    always happened, and could cause the iterator to go into an infinite
    loop"

    * tag 'trace-fixes-v3.17-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
    ring-buffer: Fix infinite spin in reading buffer

    Linus Torvalds
     
  • Pull cifs/smb3 fixes from Steve French:
    "Fix for CIFS/SMB3 oops on reconnect during readpages (3.17 regression)
    and for incorrectly closing file handle in symlink error cases"

    * 'for-linus' of git://git.samba.org/sfrench/cifs-2.6:
    CIFS: Fix readpages retrying on reconnects
    Fix problem recognizing symlinks

    Linus Torvalds
     

03 Oct, 2014

4 commits

  • Pull raid5 discard fix from Neil Brown:
    "One fix for raid5 discard issue"

    * tag 'md/3.17-final-fix' of git://neil.brown.name/md:
    md/raid5: disable 'DISCARD' by default due to safety concerns.

    Linus Torvalds
     
  • Pull drm fixes from Dave Airlie:
    "Nothing too major or scary.

    One i915 regression fix, nouveau has a tmds regression fix, along with
    a regression fix for the runtime pm code for optimus laptops not
    restoring the display hw correctly"

    * 'drm-fixes' of git://people.freedesktop.org/~airlied/linux:
    drm/nouveau: make sure display hardware is reinitialised on runtime resume
    drm/nouveau: punt fbcon resume out to a workqueue
    drm/nouveau: fix regression on original nv50 board
    drm/nv50/disp: fix dpms regression on certain boards
    drm/i915: Flush the PTEs after updating them before suspend

    Linus Torvalds
     
  • The uas driver uses the block layer tag for USB3 stream IDs. With
    blk-mq we can get larger tag numbers that the queue depth, which breaks
    this assumption. A fix is under way for 3.18, but sits on top of
    large changes so can't easily be backported. Set the disable_blk_mq
    path so that a uas device can't easily crash the system when using
    blk-mq for SCSI.

    Signed-off-by: Christoph Hellwig
    Acked-by: Hans de Goede
    Signed-off-by: James Bottomley

    Christoph Hellwig
     
  • Pull ACPI and power management fixes from Rafael Wysocki:
    "These are three regression fixes (cpufreq core, pcc-cpufreq, i915 /
    ACPI) and one trivial fix for a callback return value mismatch in the
    cpufreq integrator driver.

    Specifics:

    - A recent cpufreq core fix went too far and introduced a regression
    in the system suspend code path. Fix from Viresh Kumar.

    - An ACPI-related commit in the i915 driver that fixed backlight
    problems for some Thinkpads inadvertently broke a Dell machine (in
    3.16). Fix from Aaron Lu.

    - The pcc-cpufreq driver was broken during the 3.15 cycle by a commit
    that put wait_event() under a spinlock by mistake. Fix that
    (Rafael J Wysocki).

    - The return value type of integrator_cpufreq_remove() is void, but
    should be int. Fix from Arnd Bergmann"

    * tag 'pm+acpi-3.17-final' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
    cpufreq: update 'cpufreq_suspended' after stopping governors
    ACPI / i915: Update the condition to ignore firmware backlight change request
    cpufreq: integrator: fix integrator_cpufreq_remove return type
    cpufreq: pcc-cpufreq: Fix wait_event() under spinlock

    Linus Torvalds