15 Jan, 2015

10 commits

  • Pull thermal fixes from Zhang Rui:
    "Specifics:

    - bogus type qualifier fix in OF thermal code.
    - Minor fixes on imx and rcar thermal drivers.
    - Update TI SoC thermal maintainer entry.
    - Updated documentation of OF cpufreq cooling register"

    * 'thermal-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux:
    thermal: rcar: Spelling/grammar: s/drier use .../driver uses ...s/
    thermal: rcar: change type of ctemp in rcar_thermal_update_temp()
    thermal: rcar: fix ENR register value
    Documentation: thermal: document of_cpufreq_cooling_register()
    Thermal: imx: add clk disable/enable for suspend/resume
    MAINTAINERS: update ti-soc-thermal status
    MAINTAINERS: Add linux-omap to list of reviewers for TI Thermal
    thermal: of: Remove bogus type qualifier for of_thermal_get_trip_points()

    Linus Torvalds
     
  • Pull networking fixes from David Miller:

    1) Don't use uninitialized data in IPVS, from Dan Carpenter.

    2) conntrack race fixes from Pablo Neira Ayuso.

    3) Fix TX hangs with i40e, from Jesse Brandeburg.

    4) Fix budget return from poll calls in dnet and alx, from Eric
    Dumazet.

    5) Fix bugus "if (unlikely(x) < 0)" test in AF_PACKET, from Christoph
    Jaeger.

    6) Fix bug introduced by conversion to list_head in TIPC retransmit
    code, from Jon Paul Maloy.

    7) Don't use GFP_NOIO under spinlock in USB kaweth driver, from Alexey
    Khoroshilov.

    8) Fix bridge build with INET disabled, from Arnd Bergmann.

    9) Fix netlink array overrun for PROBE attributes in openvswitch, from
    Thomas Graf.

    10) Don't hold spinlock across synchronize_irq() in tg3 driver, from
    Prashant Sreedharan.

    * git://git.kernel.org/pub/scm/linux/kernel/git/davem/net: (44 commits)
    tg3: Release tp->lock before invoking synchronize_irq()
    tg3: tg3_reset_task() needs to use rtnl_lock to synchronize
    tg3: tg3_timer() should grab tp->lock before checking for tp->irq_sync
    team: avoid possible underflow of count_pending value for notify_peers and mcast_rejoin
    openvswitch: packet messages need their own probe attribtue
    i40e: adds FCoE configure option
    cxgb4vf: Fix queue allocation for 40G adapter
    netdevice: Add missing parentheses in macro
    bridge: only provide proxy ARP when CONFIG_INET is enabled
    neighbour: fix base_reachable_time(_ms) not effective immediatly when changed
    net: fec: fix MDIO bus assignement for dual fec SoC's
    xen-netfront: use different locks for Rx and Tx stats
    drivers: net: cpsw: fix multicast flush in dual emac mode
    cxgb4vf: Initialize mdio_addr before using it
    net: Corrected the comment describing the ndo operations to reflect the actual prototype for couple of operations
    usb/kaweth: use GFP_ATOMIC under spin_lock in usb_start_wait_urb()
    MAINTAINERS: add me as ibmveth maintainer
    tipc: fix bug in broadcast retransmit code
    update ip-sysctl.txt documentation (v2)
    net/at91_ether: prepare and unprepare clock
    ...

    Linus Torvalds
     
  • synchronize_irq() can sleep waiting, for pending IRQ handlers so driver
    should release the tp->lock spin lock before invoking synchronize_irq()

    Reported-by: Peter Hurley
    Tested-by: Peter Hurley
    Signed-off-by: Prashant Sreedharan
    Signed-off-by: Michael Chan
    Signed-off-by: David S. Miller

    Prashant Sreedharan
     
  • Currently tg3_reset_task() uses only tp->lock for synchronizing with code
    paths like tg3_open() etc. But since tp->lock is released before doing
    synchronize_irq(), rtnl_lock should be taken in tg3_reset_task() to
    synchronize it with other code paths.

    Reported-by: Peter Hurley
    Tested-by: Peter Hurley
    Signed-off-by: Prashant Sreedharan
    Signed-off-by: Michael Chan
    Signed-off-by: David S. Miller

    Prashant Sreedharan
     
  • This is to avoid the race between tg3_timer() and the execution paths
    which does not invoke tg3_timer_stop() and releases tp->lock before
    calling synchronize_irq()

    Reported-by: Peter Hurley
    Tested-by: Peter Hurley
    Signed-off-by: Prashant Sreedharan
    Signed-off-by: Michael Chan
    Signed-off-by: David S. Miller

    Prashant Sreedharan
     
  • This patch is fixing a race condition that may cause setting
    count_pending to -1, which results in unwanted big bulk of arp messages
    (in case of "notify peers").

    Consider following scenario:

    count_pending == 2
    CPU0 CPU1
    team_notify_peers_work
    atomic_dec_and_test (dec count_pending to 1)
    schedule_delayed_work
    team_notify_peers
    atomic_add (adding 1 to count_pending)
    team_notify_peers_work
    atomic_dec_and_test (dec count_pending to 1)
    schedule_delayed_work
    team_notify_peers_work
    atomic_dec_and_test (dec count_pending to 0)
    schedule_delayed_work
    team_notify_peers_work
    atomic_dec_and_test (dec count_pending to -1)

    Fix this race by using atomic_dec_if_positive - that will prevent
    count_pending running under 0.

    Fixes: fc423ff00df3a1955441 ("team: add peer notification")
    Fixes: 492b200efdd20b8fcfd ("team: add support for sending multicast rejoins")
    Signed-off-by: Jiri Pirko
    Signed-off-by: Jiri Benc
    Signed-off-by: David S. Miller

    Jiri Pirko
     
  • Pull s390 fixes from Martin Schwidefsky:
    "Two small performance tweaks, the plumbing for the execveat system
    call and a couple of bug fixes"

    * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux:
    s390/uprobes: fix user space PER events
    s390/bpf: Fix JMP_JGE_X (A > X) and JMP_JGT_X (A >= X)
    s390/bpf: Fix ALU_NEG (A = -A)
    s390/mm: avoid using pmd_to_page for !USE_SPLIT_PMD_PTLOCKS
    s390/timex: fix get_tod_clock_ext() inline assembly
    s390: wire up execveat syscall
    s390/kernel: use stnsm 255 instead of stosm 0
    s390/vtime: Get rid of redundant WARN_ON
    s390/zcrypt: kernel oops at insmod of the z90crypt device driver

    Linus Torvalds
     
  • Adds FCoE config option I40E_FCOE, so that FCoE can be enabled
    as needed but otherwise have it disabled by default.

    This also eliminate multiple FCoE config checks, instead now just
    one config check for CONFIG_I40E_FCOE.

    The I40E FCoE was added with 3.17 kernel and therefore this patch
    shall be applied to stable 3.17 kernel also.

    CC:
    Signed-off-by: Vasu Dev
    Tested-by: Jim Young
    Signed-off-by: Jeff Kirsher
    Signed-off-by: David S. Miller

    Vasu Dev
     
  • Signed-off-by: Hariprasad Shenai
    Signed-off-by: David S. Miller

    Hariprasad Shenai
     
  • Pull block layer fixes from Jens Axboe:
    "The major part is an update to the NVMe driver, fixing various issues
    around surprise removal and hung controllers. Most of that is from
    Keith, and parts are simple blk-mq fixes or exports/additions of minor
    functions to aid this effort, and parts are changes directly to the
    NVMe driver.

    Apart from the above, this contains:

    - Small blk-mq change from me, killing an unused member of the
    hardware queue structure.

    - Small fix from Ming Lei, fixing up a few drivers that didn't
    properly check for ERR_PTR() returns from blk_mq_init_queue()"

    * 'for-linus' of git://git.kernel.dk/linux-block:
    NVMe: Fix locking on abort handling
    NVMe: Start and stop h/w queues on reset
    NVMe: Command abort handling fixes
    NVMe: Admin queue removal handling
    NVMe: Reference count admin queue usage
    NVMe: Start all requests
    blk-mq: End unstarted requests on a dying queue
    blk-mq: Allow requests to never expire
    blk-mq: Add helper to abort requeued requests
    blk-mq: Let drivers cancel requeue_work
    blk-mq: Export if requests were started
    blk-mq: Wake tasks entering queue on dying
    blk-mq: get rid of ->cmd_size in the hardware queue
    block: fix checking return value of blk_mq_init_queue
    block: wake up waiters when a queue is marked dying
    NVMe: Fix double free irq
    blk-mq: Export freeze/unfreeze functions
    blk-mq: Exit queue on alloc failure

    Linus Torvalds
     

14 Jan, 2015

8 commits

  • …inux-soc-thermal into thermal-soc

    Zhang Rui
     
  • On i.MX28, the MDIO bus is shared between the two FEC instances.
    The driver makes sure that the second FEC uses the MDIO bus of the
    first FEC. This is done conditionally if FEC_QUIRK_ENET_MAC is set.
    However, in newer designs, such as Vybrid or i.MX6SX, each FEC MAC
    has its own MDIO bus. Simply removing the quirk FEC_QUIRK_ENET_MAC
    is not an option since other logic, triggered by this quirk, is
    still needed.

    Furthermore, there are board designs which use the same MDIO bus
    for both PHY's even though the second bus would be available on the
    SoC side. Such layout are popular since it saves pins on SoC side.
    Due to the above quirk, those boards currently do work fine. The
    boards in the mainline tree with such a layout are:
    - Freescale Vybrid Tower with TWR-SER2 (vf610-twr.dts)
    - Freescale i.MX6 SoloX SDB Board (imx6sx-sdb.dts)

    This patch adds a new quirk FEC_QUIRK_SINGLE_MDIO for i.MX28, which
    makes sure that the MDIO bus of the first FEC is used in any case.

    However, the boards above do have a SoC with a MDIO bus for each FEC
    instance. But the PHY's are not connected in a 1:1 configuration. A
    proper device tree description is needed to allow the driver to
    figure out where to find its PHY. This patch fixes that shortcoming
    by adding a MDIO bus child node to the first FEC instance, along
    with the two PHY's on that bus, and making use of the phy-handle
    property to add a reference to the PHY's.

    Acked-by: Sascha Hauer
    Signed-off-by: Stefan Agner
    Signed-off-by: David S. Miller

    Stefan Agner
     
  • …git/cooloney/linux-leds

    Pull LED fix from Bryan Wu.

    * 'leds-fixes-for-3.19' of git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds:
    leds: netxbig: fix oops at probe time

    Linus Torvalds
     
  • In netfront the Rx and Tx path are independent and use different
    locks. The Tx lock is held with hard irqs disabled, but Rx lock is
    held with only BH disabled. Since both sides use the same stats lock,
    a deadlock may occur.

    [ INFO: possible irq lock inversion dependency detected ]
    3.16.2 #16 Not tainted
    ---------------------------------------------------------
    swapper/0/0 just changed the state of lock:
    (&(&queue->tx_lock)->rlock){-.....}, at: []
    xennet_tx_interrupt+0x14/0x34
    but this lock took another, HARDIRQ-unsafe lock in the past:
    (&stat->syncp.seq#2){+.-...}
    and interrupts could create inverse lock ordering between them.
    other info that might help us debug this:
    Possible interrupt unsafe locking scenario:

    CPU0 CPU1
    ---- ----
    lock(&stat->syncp.seq#2);
    local_irq_disable();
    lock(&(&queue->tx_lock)->rlock);
    lock(&stat->syncp.seq#2);

    lock(&(&queue->tx_lock)->rlock);

    Using separate locks for the Rx and Tx stats fixes this deadlock.

    Reported-by: Dmitry Piotrovsky
    Signed-off-by: David Vrabel
    Signed-off-by: David S. Miller

    David Vrabel
     
  • Since ALE table is a common resource for both the interfaces in Dual EMAC
    mode and while bringing up the second interface in cpsw_ndo_set_rx_mode()
    all the multicast entries added by the first interface is flushed out and
    only second interface multicast addresses are added. Fixing this by
    flushing multicast addresses based on dual EMAC port vlans which will not
    affect the other emac port multicast addresses.

    Fixes: d9ba8f9 (driver: net: ethernet: cpsw: dual emac interface implementation)
    Cc: # v3.9+
    Signed-off-by: Mugunthan V N
    Signed-off-by: David S. Miller

    Mugunthan V N
     
  • This patch fixes a NULL pointer dereference on led_dat->mode_val. Due to
    this bug, a kernel oops can be observed at probe time on the LaCie 2Big
    and 5Big v2 boards:

    Unable to handle kernel NULL pointer dereference at virtual address 00000008
    [...]
    [] (netxbig_led_probe) from [] (platform_drv_probe+0x4c/0x9c)
    [] (platform_drv_probe) from [] (driver_probe_device+0x98/0x25c)
    [] (driver_probe_device) from [] (__driver_attach+0x8c/0x90)
    [] (__driver_attach) from [] (bus_for_each_dev+0x68/0x94)
    [] (bus_for_each_dev) from [] (bus_add_driver+0x124/0x1dc)
    [] (bus_add_driver) from [] (driver_register+0x78/0xf8)
    [] (driver_register) from [] (do_one_initcall+0x80/0x1cc)
    [] (do_one_initcall) from [] (kernel_init_freeable+0xe4/0x1b4)
    [] (kernel_init_freeable) from [] (kernel_init+0xc/0xec)
    [] (kernel_init) from [] (ret_from_fork+0x14/0x24)
    [...]

    This bug was introduced by commit 588a6a99286ae30afb1339d8bc2163517b1b7dd1
    ("leds: netxbig: fix attribute-creation race").

    Signed-off-by: Simon Guinot
    Cc: # 3.17+
    Acked-by: Johan Hovold
    Signed-off-by: Bryan Wu

    Simon Guinot
     
  • In commit 5ad24def21b205a8 ("cxgb4vf: Fix ethtool get_settings for VF driver")
    mdio_addr of port_info structure was used unininitialzed. Fixing it.

    Signed-off-by: Hariprasad Shenai
    Signed-off-by: David S. Miller

    Hariprasad Shenai
     
  • Pull thermal management fixes from Zhang Rui:
    "Specifics:

    - Fix a problem that Intel SoC DTS thermal driver does not work when
    CONFIG_THERMAL_INT340X is not set.

    - Fix a NULL pointer dereference when processor_thermal_device driver
    is loaded on a platform without ACPI support"

    * 'for-rc' of git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux:
    int340x_thermal/processor_thermal_device: return failure when
    ACPI/int340x_thermal: enumerate INT3401 for Intel SoC DTS thermal driver
    ACPI/int340x_thermal: enumerate INT340X devices even if they're not in _ART/_TRT

    Linus Torvalds
     

13 Jan, 2015

7 commits

  • Pull gpio fixes from Linus Walleij:
    "Here are some GPIO fixes, mainly affecting the DLN2 IRQ handling.
    Nothing special about them, just fixes:

    - Three patches fixing IRQ handling for the DLN2
    - Null pointer handling for grgpio"

    * tag 'gpio-v3.19-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio:
    gpio: dln2: use bus_sync_unlock instead of scheduling work
    gpio: grgpio: Avoid potential NULL pointer dereference
    gpio: dln2: Fix gpio output value in dln2_gpio_direction_output()
    gpio: dln2: fix issue when an IRQ is unmasked then enabled

    Linus Torvalds
     
  • Pull MMC fixes from Ulf Hansson:
    "MMC host:
    - sdhci-pci|acpi: Support some new IDs
    - sdhci: Fix sleep from atomic context
    - sdhci-pxav3: Prevent hang during ->probe()
    - sdhci: Disable re-tuning for HS400"

    * tag 'mmc-v3.19-3' of git://git.linaro.org/people/ulf.hansson/mmc:
    mmc: sdhci-pci: Add support for Intel SPT
    mmc: sdhci-acpi: Add ACPI HID INT344D
    mmc: sdhci: Fix sleep in atomic after inserting SD card
    mmc: sdhci-pxav3: do the mbus window configuration after enabling clocks
    mmc: sdhci: Disable re-tuning for HS400
    mmc: sdhci: Simplify use of tuning timer
    mmc: sdhci: Add out_unlock to sdhci_execute_tuning
    mmc: sdhci: Tuning should not change max_blk_count

    Linus Torvalds
     
  • Pull scsi target fixes from Nicholas Bellinger:
    "Mostly minor fixes this time, including:

    - Add missing virtio-scsi -> TCM attribute conversion in vhost-scsi.
    - Fix persistent reservations write exclusive handling to allow
    readers for all registered I_T nexuses.
    - Drop arbitrary maximum I/O size limit in order to process I/Os
    larger than 4 MB, required for initiators that don't honor block
    limits EVPD.
    - Drop the now left-over fabric_max_sectors attribute"

    * git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending:
    iscsi-target: Fix typos in enum cmd_flags_table
    MAINTAINERS: Add entry for iSER target driver
    target: Allow Write Exclusive non-reservation holders to READ
    target: Drop left-over fabric_max_sectors attribute
    target: Drop arbitrary maximum I/O size limit
    Documentation/target: Update fabric_ops to latest code
    vhost-scsi: Add missing virtio-scsi -> TCM attribute conversion

    Linus Torvalds
     
  • Commit e4c7f259c5be ("USB: kaweth.c: use GFP_ATOMIC under spin_lock")
    makes sure that kaweth_internal_control_msg() allocates memory with GFP_ATOMIC,
    but kaweth_internal_control_msg() also calls usb_start_wait_urb()
    that still allocates memory with GFP_NOIO.

    The patch fixes usb_start_wait_urb() as well.

    Found by Linux Driver Verification project (linuxtesting.org).

    Signed-off-by: Alexey Khoroshilov
    Acked-by: Oliver Neukum
    Signed-off-by: David S. Miller

    Alexey Khoroshilov
     
  • Signed-off-by: Geert Uytterhoeven
    Signed-off-by: Eduardo Valentin

    Geert Uytterhoeven
     
  • The clock is enabled without being prepared, this leads to:

    WARNING: CPU: 0 PID: 1 at drivers/clk/clk.c:889 __clk_enable+0x24/0xa8()

    and a non working ethernet interface.

    Use clk_prepare_enable() and clk_disable_unprepare() to handle the clock.

    Signed-off-by: Alexandre Belloni
    Acked-by: Boris Brezillon
    Acked-by: Nicolas Ferre
    Signed-off-by: David S. Miller

    Alexandre Belloni
     
  • In C one can either use '\0' or '\x00' (or '\000') to add a NUL byte to
    a string. '\0x00' isn't part of these and will in fact result in a
    single NUL followed by "x00". This fixes that.

    Signed-off-by: Giel van Schijndel
    Reported-at: http://www.viva64.com/en/b/0299/
    Signed-off-by: David S. Miller

    Giel van Schijndel
     

12 Jan, 2015

11 commits

  • Add PCI IDs for SPT eMMC, SDIO and SD card.

    Signed-off-by: Adrian Hunter
    Signed-off-by: Ulf Hansson

    Adrian Hunter
     
  • Add ACPI HID INT344D for an Intel SDIO host controller.

    Signed-off-by: Adrian Hunter
    Signed-off-by: Ulf Hansson

    Adrian Hunter
     
  • Sleep in atomic context happened on Trats2 board after inserting or
    removing SD card because mmc_gpio_get_cd() was called under spin lock.

    Fix this by moving card detection earlier, before acquiring spin lock.
    The mmc_gpio_get_cd() call does not have to be protected by spin lock
    because it does not access any sdhci internal data.
    The sdhci_do_get_cd() call access host flags (SDHCI_DEVICE_DEAD). After
    moving it out side of spin lock it could theoretically race with driver
    removal but still there is no actual protection against manual card
    eject.

    Dmesg after inserting SD card:
    [ 41.663414] BUG: sleeping function called from invalid context at drivers/gpio/gpiolib.c:1511
    [ 41.670469] in_atomic(): 1, irqs_disabled(): 128, pid: 30, name: kworker/u8:1
    [ 41.677580] INFO: lockdep is turned off.
    [ 41.681486] irq event stamp: 61972
    [ 41.684872] hardirqs last enabled at (61971): [] _raw_spin_unlock_irq+0x24/0x5c
    [ 41.693118] hardirqs last disabled at (61972): [] _raw_spin_lock_irq+0x18/0x54
    [ 41.701190] softirqs last enabled at (61648): [] __do_softirq+0x234/0x2c8
    [ 41.708914] softirqs last disabled at (61631): [] irq_exit+0xd0/0x114
    [ 41.716206] Preemption disabled at:[< (null)>] (null)
    [ 41.721500]
    [ 41.722985] CPU: 3 PID: 30 Comm: kworker/u8:1 Tainted: G W 3.18.0-rc5-next-20141121 #883
    [ 41.732111] Workqueue: kmmcd mmc_rescan
    [ 41.735945] [] (unwind_backtrace) from [] (show_stack+0x10/0x14)
    [ 41.743661] [] (show_stack) from [] (dump_stack+0x70/0xbc)
    [ 41.750867] [] (dump_stack) from [] (gpiod_get_raw_value_cansleep+0x18/0x30)
    [ 41.759628] [] (gpiod_get_raw_value_cansleep) from [] (mmc_gpio_get_cd+0x38/0x58)
    [ 41.768821] [] (mmc_gpio_get_cd) from [] (sdhci_request+0x50/0x1a4)
    [ 41.776808] [] (sdhci_request) from [] (mmc_start_request+0x138/0x268)
    [ 41.785051] [] (mmc_start_request) from [] (mmc_wait_for_req+0x58/0x1a0)
    [ 41.793469] [] (mmc_wait_for_req) from [] (mmc_wait_for_cmd+0x58/0x78)
    [ 41.801714] [] (mmc_wait_for_cmd) from [] (mmc_io_rw_direct_host+0x98/0x124)
    [ 41.810480] [] (mmc_io_rw_direct_host) from [] (sdio_reset+0x2c/0x64)
    [ 41.818641] [] (sdio_reset) from [] (mmc_rescan+0x254/0x2e4)
    [ 41.826028] [] (mmc_rescan) from [] (process_one_work+0x180/0x3f4)
    [ 41.833920] [] (process_one_work) from [] (worker_thread+0x34/0x4b0)
    [ 41.841991] [] (worker_thread) from [] (kthread+0xe4/0x104)
    [ 41.849285] [] (kthread) from [] (ret_from_fork+0x14/0x2c)
    [ 42.038276] mmc0: new high speed SDHC card at address 1234

    Signed-off-by: Krzysztof Kozlowski
    Fixes: 94144a465dd0 ("mmc: sdhci: add get_cd() implementation")
    Cc:
    Signed-off-by: Ulf Hansson

    Krzysztof Kozlowski
     
  • In commit 5491ce3f79ee ("mmc: sdhci-pxav3: add support for the Armada
    38x SDHCI controller"), the sdhci-pxav3 driver was extended to include
    support for the SDHCI controller found in the Armada 38x
    processor. This mainly involved adding some MBus window related
    configuration.

    However, this configuration is currently done too early in ->probe():
    it is done before clocks are enabled, while this configuration
    involves touching the registers of the controller, which will hang the
    SoC if the clock is disabled. It wasn't noticed until now because the
    bootloader typically leaves gatable clocks enabled, but in situations
    where we have a deferred probe (due to a CD GPIO that cannot be taken,
    for example), then the probe will be re-tried later, after a clock
    disable has been done in the exit path of the failed probe attempt of
    the device. This second probe() will hang the system due to the clock
    being disabled.

    This can for example be produced on Armada 385 GP, which has a CD GPIO
    connected to an I2C PCA9555. If the driver for the PCA9555 is not
    compiled into the kernel, then we will have the following sequence of
    events:

    1. The SDHCI probes
    2. It does the MBus configuration (which works, because the clock is
    left enabled by the bootloader)
    3. It enables the clock
    4. It tries to get the CD GPIO, which fails due to the driver being
    missing, so -EPROBE_DEFER is returned.
    5. Before returning -EPROBE_DEFER, the driver cleans up what was
    done, which includes disabling the clock.
    6. Later on, the SDHCI probe is tried again.
    7. It does the MBus configuration, which hangs because the clock is
    no longer enabled.

    This commit does the obvious fix of doing the MBus configuration after
    the clock has been enabled by the driver.

    Fixes: 5491ce3f79ee ("mmc: sdhci-pxav3: add support for the Armada 38x SDHCI controller")
    Cc: # v3.15+
    Signed-off-by: Thomas Petazzoni
    Signed-off-by: Ulf Hansson

    Thomas Petazzoni
     
  • Re-tuning for HS400 mode must be done in HS200
    mode. Currently there is no support for that.
    That needs to be reflected in the code.
    Specifically, if tuning is executed in HS400 mode
    then return an error, and do not start the
    tuning timer if HS200 tuning is being done prior
    to switching to HS400.

    Note that periodic re-tuning is not expected
    to be needed for HS400 but re-tuning is still
    needed after the host controller has lost power.
    In the case of suspend/resume that is not necessary
    because the card is fully re-initialised. That
    just leaves runtime suspend/resume with no support
    for HS400 re-tuning.

    Signed-off-by: Adrian Hunter
    Signed-off-by: Ulf Hansson

    Adrian Hunter
     
  • The tuning timer is always used if the tuning mode
    is 1 and there is a tuning count, irrespective of
    whether this is the first call, or any subsequent
    call. Consequently the logic to start the timer
    can be simplified.

    Signed-off-by: Adrian Hunter
    Reviewed-by: Aaron Lu
    Signed-off-by: Ulf Hansson

    Adrian Hunter
     
  • A 'goto' can be used to save duplicating unlocking
    and returning.

    Signed-off-by: Adrian Hunter
    Reviewed-by: Aaron Lu
    Signed-off-by: Ulf Hansson

    Adrian Hunter
     
  • Re-tuning requires that the maximum data length
    is limited to 4MiB. The code currently changes
    max_blk_count in an attempt to achieve that.
    This is wrong because max_blk_count is a different
    limit, but it is also un-necessary because
    max_req_size is 512KiB anyway. Consequently, the
    changes to max_blk_count are removed and the
    comment for max_req_size adjusted accordingly.
    The comment is also tweaked to show that the 512KiB
    limit is a SDMA limit not an ADMA limit.

    Signed-off-by: Adrian Hunter
    Reviewed-by: Aaron Lu
    Signed-off-by: Ulf Hansson

    Adrian Hunter
     
  • …m/linux/kernel/git/kvalo/wireless-drivers

    * rtlwifi: fix a regression in large skb allocation failure

    iwlwifi:

    * fix for 7265D NVM check
    * fixes for scan: fix long scanning times and network discovery
    * new firmware API for iwlmvm supported devices
    * fixes in rate control

    Signed-off-by: David S. Miller <davem@davemloft.net>

    David S. Miller
     
  • Commit d75b1ade567f ("net: less interrupt masking in NAPI") uncovered
    wrong alx_poll() behavior.

    A NAPI poll() handler is supposed to return exactly the budget when/if
    napi_complete() has not been called.

    It is also supposed to return number of frames that were received, so
    that netdev_budget can have a meaning.

    Also, in case of TX pressure, we still have to dequeue received
    packets : alx_clean_rx_irq() has to be called even if
    alx_clean_tx_irq(alx) returns false, otherwise device is half duplex.

    Signed-off-by: Eric Dumazet
    Fixes: d75b1ade567f ("net: less interrupt masking in NAPI")
    Reported-by: Oded Gabbay
    Bisected-by: Oded Gabbay
    Tested-by: Oded Gabbay
    Signed-off-by: David S. Miller

    Eric Dumazet
     
  • A NAPI poll() handler is supposed to return exactly the budget when/if
    napi_complete() has not been called.

    It is also supposed to return number of frames that were received, so
    that netdev_budget can have a meaning.

    Signed-off-by: Eric Dumazet
    Signed-off-by: David S. Miller

    Eric Dumazet
     

11 Jan, 2015

2 commits


10 Jan, 2015

2 commits

  • Pull HID updates from Jiri Kosina:

    - bounds checking fixes in logitech and roccat drivers, from Peter Wu
    and Dan Carpenter

    - double-kfree fix in i2c-hid driver on bus shutdown, from Mika
    Westerberg

    - a couple of various small driver fixes

    - a few device id additions

    * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid:
    HID: roccat: potential out of bounds in pyra_sysfs_write_settings()
    HID: Add a new id 0x501a for Genius MousePen i608X
    HID: logitech-hidpp: prefix the name with "Logitech"
    HID: logitech-hidpp: avoid unintended fall-through
    HID: Allow HID_BATTERY_STRENGTH to be enabled
    HID: i2c-hid: Do not free buffers in i2c_hid_stop()
    HID: add battery quirk for USB_DEVICE_ID_APPLE_ALU_WIRELESS_2011_ISO keyboard
    HID: logitech-hidpp: check WTP report length
    HID: logitech-dj: check report length

    Linus Torvalds
     
  • Pull drm fixes from Dave Airlie:
    "I'm briefly working between holidays and LCA, so this is close to a
    couple of weeks of fixes,

    Two sets of amdkfd fixes, this is a new feature this kernel, and this
    pull fixes a few issues since it got merged, ordering when built-in to
    kernel and also the iommu vs gpu ordering patch, it also reworks the
    ioctl before the initial release.

    Otherwise:
    - radeon: some misc fixes all over, hdmi, 4k, dpm
    - nouveau: mcp77 init fixes, oops fix, bug on fix, msi fix
    - i915: power fixes, revert VGACNTR patch

    Probably be quiteer next week since I'll be at LCA anyways"

    * 'drm-fixes' of git://people.freedesktop.org/~airlied/linux: (33 commits)
    drm/amdkfd: rewrite kfd_ioctl() according to drm_ioctl()
    drm/amdkfd: reformat IOCTL definitions to drm-style
    drm/amdkfd: Do copy_to/from_user in general kfd_ioctl()
    drm/radeon: integer underflow in radeon_cp_dispatch_texture()
    drm/radeon: adjust default bapm settings for KV
    drm/radeon: properly filter DP1.2 4k modes on non-DP1.2 hw
    drm/radeon: fix sad_count check for dce3
    drm/radeon: KV has three PPLLs (v2)
    drm/amdkfd: unmap VMIDPASID when relesing VMID (non-HWS)
    drm/radeon: Init amdkfd only if it was compiled
    amdkfd: actually allocate longs for the pasid bitmask
    drm/nouveau/nouveau: Do not BUG_ON(!spin_is_locked()) on UP
    drm/nv4c/mc: disable msi
    drm/nouveau/fb/ram/mcp77: enable NISO poller
    drm/nouveau/fb/ram/mcp77: use carveout reg to determine size
    drm/nouveau/fb/ram/mcp77: subclass nouveau_ram
    drm/nouveau: wake up the card if necessary during gem callbacks
    drm/nouveau/device: Add support for GK208B, resolves bug 86935
    drm/nouveau: fix missing return statement in nouveau_ttm_tt_unpopulate
    drm/nouveau/bios: fix oops on pre-nv50 chipsets
    ...

    Linus Torvalds