23 Dec, 2011

2 commits


27 Nov, 2011

1 commit

  • Interrupts must be disabled prior to calling usb_hcd_unlink_urb_from_ep.
    If interrupts are not disabled, it can potentially lead to a deadlock.
    The deadlock is readily reproduceable on a slower (ARM based) device
    such as the TI Pandaboard.

    Signed-off-by: Bart Westgeest
    Cc: stable
    Signed-off-by: Greg Kroah-Hartman

    Bart Westgeest
     

01 Nov, 2011

2 commits


20 Sep, 2011

1 commit

  • Revert changes in definitions that were submitted on May 11 2011 and
    committed on June 7 2011. No reason for the change in these values was
    given in the patch comment, it broke compatibility with older
    versions, and was difficult to detect by the simultaneous move of the
    lines of code.

    Signed-off-by: Alexander Thomas
    Cc: stable
    Signed-off-by: Greg Kroah-Hartman

    Alexander Thomas
     

26 Aug, 2011

1 commit


24 Aug, 2011

7 commits

  • * git://git.kernel.org/pub/scm/linux/kernel/git/lwfinger/r8192E: (61 commits)
    staging: rtl8192e: Fix compilation warnings
    staging: rtl8192e: Fix unload/reload problem
    staging: rtl8192e: Remove dead code associated with CONFIG_RTL_RFKILL
    staging: rtl8192e: Remove conditional code associated with EEPROM_OLD_FORMAT_SUPPORT
    staging: rtl8192e: Remove dead code associated with EFUSE_REPG_WORKAROUND
    staging: rtl8192e: Remove LOOP_TEST as parameter
    staging: rtl8192e: Remove dead code associated with CONFIG_FW_SETCHAN
    staging: rtl8192e: Remove dead code associated with CONFIG_RTLWIFI_DEBUGFS
    staging: rtl8192e: Remove dead code associated with _RTL8192_EXT_PATCH_
    staging: rtl8192e: Remove ifdefs for CONFIG_RTLLIB_DEBUG
    staging: rtl8192e: Remove dead code associated with RTL819x_DEBUG
    staging: rtl8192e: Remove dead code associated with _ENABLE_SW_BEACON
    staging: rtl8192e: Remove dead code associated with CONFIG_CRYPTO_HMAC
    staging: rtl8192e: Remove dead code associated with CONFIG_BT_30
    staging: rtl8192e: Remove dead code associated with ENABLE_NULL_PT_DEBUG
    staging: rtl8192e: Remove dead code associated with CONFIG_64BIT_DMA
    staging: rtl8192e: Remove dead code associated with CONFIG_RTLLIB_CRYPT_TKIP
    staging: rtl8192e: Remove dead code associated with IRQF_SHARED
    staging: rtl8192e: Remove dead code associated with CONFIG_CFG_80211
    staging: rtl8192e: Remove dead code associated with BUILT_IN_CRYPTO
    ...

    Greg Kroah-Hartman
     
  • Test the just-initialized value rather than some other one.

    The semantic match that finds this problem is as follows:
    (http://coccinelle.lip6.fr/)

    //
    @r@
    identifier x,y,f!={PTR_ERR,ERR_PTR,ERR_CAST};
    statement S;
    @@

    x = f(...);
    (
    if (\(x == NULL\|IS_ERR(x)\)) S
    |
    *if (\(y == NULL\|IS_ERR(y)\))
    { ... when != x
    return ...; }
    )
    //

    Signed-off-by: Julia Lawall
    Acked-by: David Chang
    Signed-off-by: Greg Kroah-Hartman

    Julia Lawall
     
  • stub.h and vhci.h are missing proper #ifndef/#define header guards, so
    add them.

    Signed-off-by: Tobias Klauser
    Signed-off-by: Greg Kroah-Hartman

    Tobias Klauser
     
  • Initial version of USBIP protocol document.

    Signed-off-by: David Chang
    Acked-by: matt mooney
    Signed-off-by: Greg Kroah-Hartman

    Márton Németh
     
  • mkdir() could fail, so we should check its return value.

    Signed-off-by: Tobias Klauser
    Signed-off-by: Greg Kroah-Hartman

    Tobias Klauser
     
  • Fix brace positioning and spaces at the start of lines in order to
    comply with the kernel coding style.

    Signed-off-by: Akshay Joshi
    Acked-by: matt mooney
    Signed-off-by: Greg Kroah-Hartman

    Akshay Joshi
     
  • Remove trailing spaces to comply with the kernel coding style.

    Signed-off-by: Akshay Joshi
    Acked-by: matt mooney
    Signed-off-by: Greg Kroah-Hartman

    Akshay Joshi
     

02 Aug, 2011

1 commit


27 Jul, 2011

1 commit

  • Conflicts:
    Documentation/feature-removal-schedule.txt
    drivers/staging/bcm/headers.h
    drivers/staging/brcm80211/brcmfmac/dhd_linux.c
    drivers/staging/brcm80211/brcmfmac/dhd_sdio.c
    drivers/staging/brcm80211/brcmfmac/wl_cfg80211.h
    drivers/staging/brcm80211/brcmfmac/wl_iw.c
    drivers/staging/et131x/et131x_netdev.c
    drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
    drivers/staging/rtl8192e/r8192E.h
    drivers/staging/usbip/userspace/src/utils.h

    Larry Finger
     

09 Jul, 2011

8 commits


06 Jul, 2011

16 commits