1. 17 9月, 2008 22 次提交
  2. 15 9月, 2008 1 次提交
  3. 14 9月, 2008 11 次提交
  4. 13 9月, 2008 2 次提交
  5. 11 9月, 2008 4 次提交
    • J
      ath9k: Assign seq# when mac80211 requests this · 69da6b87
      Jouni Malinen 提交于
      Use TX control flag IEEE80211_TX_CTL_ASSIGN_SEQ as a request to update
      the seq# for the frames. This will likely require some further cleanup
      to get seq# correctly for Beacons vs. other frames and also potentially
      for multiple BSSes. Anyway, this is better than ending up sending out
      most frames with seq# 0.
      
      (This is a backport of patch w/ same title already in net-next-2.6.
      It is verified to fix http://bugzilla.kernel.org/show_bug.cgi?id=11394
      and it should be acceptable for -rc due to the driver being new
      in 2.6.27.)
      Signed-off-by: NJouni Malinen <jouni.malinen@atheros.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      69da6b87
    • J
      block: disable sysfs parts of the disk command filter · 2dc75d3c
      Jens Axboe 提交于
      We still have life time issues with the sysfs command filter kobject,
      so disable it for 2.6.27 release. We can revisit this and make it work
      properly for 2.6.28, for 2.6.27 release it's too risky.
      Signed-off-by: NJens Axboe <jens.axboe@oracle.com>
      2dc75d3c
    • G
      VIDEO_SH_MOBILE_CEU should depend on HAS_DMA · 5368f69c
      Geert Uytterhoeven 提交于
      commit 0d3244d6 ("V4L/DVB (8342):
      sh_mobile_ceu_camera: Add SuperH Mobile CEU driver V3") introduced
      VIDEO_SH_MOBILE_CEU, which selects VIDEOBUF_DMA_CONTIG. This circumvents the
      dependency on HAS_DMA of VIDEOBUF_DMA_CONTIG.
      
      Add a dependency on HAS_DMA to VIDEO_SH_MOBILE_CEU to fix this.
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      Acked-by: NPaul Mundt <lethal@linux-sh.org>
      Acked-by: NMagnus Damm <damm@igel.co.jp>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      5368f69c
    • M
      ide: Fix pointer arithmetic in hpt3xx driver code (3rd try) · 62ff2ecf
      Masoud Sharbiani 提交于
      git commit 74811f35 causes crash at
      module load (or boot) time on my machine with a hpt374 controller.
      The reason for this is that for initializing second controller which sets
      (hwif->dev == host->dev[1]) to true (1), adds 1 to a void ptr, which
      advances it by one byte instead of advancing it by sizeof(hpt_info) bytes.
      Because of this, all initialization functions get corrupted data in info
      variable which causes a crash at boot time.
      
      This patch fixes that and makes my machine boot again.
      
      The card itself is a HPT374 raid conroller: Here is the lspci -v output:
      03:06.0 RAID bus controller: HighPoint Technologies, Inc. HPT374 (rev
      07)
              Subsystem: HighPoint Technologies, Inc. Unknown device 0001
              Flags: bus master, 66MHz, medium devsel, latency 120, IRQ 28
              I/O ports at 8000 [size=8]
              I/O ports at 7800 [size=4]
              I/O ports at 7400 [size=8]
              I/O ports at 7000 [size=4]
              I/O ports at 6800 [size=256]
              Expansion ROM at fe8e0000 [disabled] [size=128K]
              Capabilities: [60] Power Management version 2
      
      03:06.1 RAID bus controller: HighPoint Technologies, Inc. HPT374 (rev
      07)
              Subsystem: HighPoint Technologies, Inc. Unknown device 0001
              Flags: bus master, 66MHz, medium devsel, latency 120, IRQ 28
              I/O ports at 9800 [size=8]
              I/O ports at 9400 [size=4]
              I/O ports at 9000 [size=8]
              I/O ports at 8800 [size=4]
              I/O ports at 8400 [size=256]
              Capabilities: [60] Power Management version 2
      Signed-off-by: NMasoud Sharbiani <masouds@google.com>
      Cc: Sergei Shtylyov <sshtylyov@ru.mvista.com>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      [bart: use dev_get_drvdata() per Sergei's suggestion]
      Signed-off-by: NBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
      62ff2ecf