1. 30 5月, 2007 6 次提交
    • L
      Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6 · 6e98ee75
      Linus Torvalds 提交于
      * 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6:
        [SPARC64]: Fill holes in hypervisor APIs and fix KTSB registry.
        [SPARC64]: Fix two bugs wrt. kernel 4MB TSB.
        [SPARC]: Mark as emulating cmpxchg, add appropriate depends for DRM.
        [SPARC]: Emulate cmpxchg like parisc
        [SPARC64]: Fix _PAGE_EXEC_4U check in sun4u I-TLB miss handler.
        [SPARC]: Linux always started with 9600 8N1
        [SPARC64]: arch/sparc64/time.c doesn't compile on Ultra 1 (no PCI)
        [SPARC64]: Eliminate NR_CPUS limitations.
        [SPARC64]: Use machine description and OBP properly for cpu probing.
        [SPARC64]: Negotiate hypervisor API for PCI services.
        [SPARC64]: Report proper system soft state to the hypervisor.
        [SPARC64]: Fix typo in sun4v_hvapi_register error handling.
        [SCSI] ESP: Kill SCSI_ESP_CORE and link directly just like jazz_esp
        [SCSI] jazz_esp: Converted to use esp_core.
        [SPARC64]: PCI device scan is way too verbose by default.
        [SERIAL] sunzilog: section mismatch fix
        [SPARC32]: Removes mismatch section warnigs in sparc time.c file
        [SPARC64]: Don't be picky about virtual-dma values on sun4v.
        [SPARC64]: Kill unused DIE_PAGE_FAULT enum value.
        [SCSI] pluto: Use wait_for_completion_timeout.
      6e98ee75
    • L
      Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6 · 486b4ce1
      Linus Torvalds 提交于
      * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6:
        firewire: fix return code
        firewire: prefix modules with firewire- instead of fw-
        firewire: Add missing byteswapping for receive DMA programs.
        ieee1394: raw1394: Fix async send
        ieee1394: eth1394: bring back a parent device
        ieee1394: eth1394: handle tlabel exhaustion
        ieee1394: eth1394: remove bogus netif_wake_queue
        ieee1394: sbp2: include workqueue.h
      486b4ce1
    • L
      Merge branch 'hwmon-for-linus' of git://jdelvare.pck.nerim.net/jdelvare-2.6 · 358a9afc
      Linus Torvalds 提交于
      * 'hwmon-for-linus' of git://jdelvare.pck.nerim.net/jdelvare-2.6:
        hwmon/applesmc: Handle name file creation error and deletion
        hwmon/applesmc: Simplify dependencies
        hwmon-vid: Don't spam the logs when VRM version is missing
        hwmon/w83627hf: Be quiet when no chip is found
        hwmon/coretemp: Add more safety checks
        hwmon/ds1621: Fix swapped temperature limits
      358a9afc
    • L
      Merge branch 'for_paulus' of master.kernel.org:/pub/scm/linux/kernel/git/galak/powerpc · 55663219
      Linus Torvalds 提交于
      * 'for_paulus' of master.kernel.org:/pub/scm/linux/kernel/git/galak/powerpc:
        [POWERPC] Fix Kconfig warning
        [PPC] Fix modpost warning
        [POWERPC] Fix modpost warning
        [POWERPC] Fix Section mismatch warnings
        [POWERPC] QE: fix Kconfig 'select' warning with UCC_FAST
        [POWERPC] 52xx: unbreak lite5200 dts (_pic vs. -pic)
        [PPC] Remove duplicate export of __div64_32.
        [PPC] Fix COMMON symbol warnings
      55663219
    • L
      Merge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6 · a4326635
      Linus Torvalds 提交于
      * master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6:
        [SCSI] megaraid_sas: intercept cmd timeout and throttle io
        [SCSI] fusion: Fix |/|| confusion
        [SCSI] aic94xx: asd_clear_nexus should fail if the cleared task does not complete
        [SCSI] aic7xxx: fix aicasm build failure with gcc-3.4.6
        [SCSI] aacraid: apply commit config for reset_devices flag
        [SCSI] sd: fix refcounting regression in suspend/resume routines
        [SCSI] aacraid: fix panic on short Inquiry
        [SCSI] aacraid: Correct sa platform support. (Was: [Bug 8469] Bad EIP value on pentium3 SMP kernel-2.6.21.1)
        [SCSI] NCR53C9x: correct spelling mistake in deprecation notice
        [SCSI] tgt: fix a rdma indirect transfer error bug
        [SCSI] MegaRAID: Update MAINTAINERS email-id
        [SCSI] stex: minor cleanup and version update
        [SCSI] stex: fix reset recovery for console device
        [SCSI] stex: extend hard reset wait time
        [SCSI] stex: fix id mapping issue
        [SCSI] ipr: Proper return codes for eh_dev_reset for SATA devices
        [SCSI] zfcp: IO stall after deleting and path checker changes after reenabling zfcp devices
        [SCSI] zfcp: avoid clutter in erp_dbf
      a4326635
    • A
      USB: replace flush_workqueue with cancel_sync_work · d5d4db70
      Alan Stern 提交于
      This patch (as912) replaces a couple of calls to flush_workqueue()
      with cancel_sync_work() and cancel_rearming_delayed_work().  Using a
      more directed approach allows us to avoid some nasty deadlocks.  The
      prime example occurs when a first-level device (the parent is a root
      hub) is removed while at the same time the root hub gets a remote
      wakeup request.  khubd would try to flush the autosuspend workqueue
      while holding the root-hub's lock, and the remote-wakeup workqueue
      routine would be waiting to lock the root hub.
      
      The patch also reorganizes the power management portion of
      usb_disconnect(), separating it out into its own routine.  The
      autosuspend workqueue entry is cancelled immediately instead of
      waiting for the device's release routine.  In addition,
      synchronization with the autosuspend thread is carried out even for
      root hubs (an oversight in the original code).
      Signed-off-by: NAlan Stern <stern@rowland.harvard.edu>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: Greg KH <gregkh@suse.de>
      Cc: Mark Lord <lkml@rtr.ca>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      d5d4db70
  2. 29 5月, 2007 20 次提交
  3. 28 5月, 2007 14 次提交