1. 14 6月, 2007 34 次提交
  2. 13 6月, 2007 6 次提交
    • D
      Input: move input-polldev to drivers/input · 893e7c2d
      Dmitry Torokhov 提交于
      To work around deficiences in Kconfig that allows to "select"
      a symbol without automatically selecting all dependencies for
      that symbol move input-polldev from drivers/input/misc to
      drivers/input thus removing extra dependency on CONFIG_INPUT_MISC.
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      893e7c2d
    • L
      Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6 · a0e1d1d0
      Linus Torvalds 提交于
      * 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6: (89 commits)
        myri10ge: update driver version
        myri10ge: report when the link partner is running in Myrinet mode
        myri10ge: limit the number of recoveries
        NetXen: Fix link status messages
        Revert "[netdrvr e100] experiment with doing RX in a similar manner to eepro100"
        [PATCH] libertas: convert libertas_mpp into anycast_mask
        [PATCH] libertas: actually send mesh frames to mesh netdev
        [PATCH] libertas: deauthenticate from AP in channel switch
        [PATCH] libertas: pull current channel from firmware on mesh autostart
        [PATCH] libertas: reduce SSID and BSSID mixed-case abuse
        [PATCH] libertas: remove WPA_SUPPLICANT structure
        [PATCH] libertas: remove structure WLAN_802_11_SSID and libertas_escape_essid
        [PATCH] libertas: tweak association debug output
        [PATCH] libertas: fix big-endian associate command.
        [PATCH] libertas: don't byte-swap firmware version number. It's a byte array.
        [PATCH] libertas: more endianness fixes, in tx.c this time
        [PATCH] libertas: More endianness fixes.
        [PATCH] libertas: first pass at fixing up endianness issues
        [PATCH] libertas: sparse fixes
        [PATCH] libertas: fix character set in README
        ...
      a0e1d1d0
    • J
      Merge branch 'master' into upstream-fixes · b2329239
      Jeff Garzik 提交于
      b2329239
    • J
      Merge branch 'libertas-fixes' of... · bca1a551
      Jeff Garzik 提交于
      Merge branch 'libertas-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6 into upstream-fixes
      bca1a551
    • J
      Merge branch 'libertas' of... · 12b90de6
      Jeff Garzik 提交于
      Merge branch 'libertas' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6 into upstream-fixes
      12b90de6
    • T
      sysfs: fix race condition around sd->s_dentry, take#2 · dd14cbc9
      Tejun Heo 提交于
      Allowing attribute and symlink dentries to be reclaimed means
      sd->s_dentry can change dynamically.  However, updates to the field
      are unsynchronized leading to race conditions.  This patch adds
      sysfs_lock and use it to synchronize updates to sd->s_dentry.
      
      Due to the locking around ->d_iput, the check in sysfs_drop_dentry()
      is complex.  sysfs_lock only protect sd->s_dentry pointer itself.  The
      validity of the dentry is protected by dcache_lock, so whether dentry
      is alive or not can only be tested while holding both locks.
      
      This is minimal backport of sysfs_drop_dentry() rewrite in devel
      branch.
      Signed-off-by: NTejun Heo <htejun@gmail.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      dd14cbc9