19 Dec, 2010

1 commit

  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6:
    x86: avoid high BIOS area when allocating address space
    x86: avoid E820 regions when allocating address space
    x86: avoid low BIOS area when allocating address space
    resources: add arch hook for preventing allocation in reserved areas
    Revert "resources: support allocating space within a region from the top down"
    Revert "PCI: allocate bus resources from the top down"
    Revert "x86/PCI: allocate space from the end of a region, not the beginning"
    Revert "x86: allocate space within a region top-down"
    Revert "PCI: fix pci_bus_alloc_resource() hang, prefer positive decode"
    PCI: Update MCP55 quirk to not affect non HyperTransport variants

    Linus Torvalds
     

18 Dec, 2010

3 commits

  • This reverts commit b126b4703afa4010b161784a43650337676dd03b.

    We're going back to the old behavior of allocating from bus resources
    in _CRS order.

    Acked-by: H. Peter Anvin
    Signed-off-by: Bjorn Helgaas
    Signed-off-by: Jesse Barnes

    Bjorn Helgaas
     
  • This reverts commit 82e3e767c21fef2b1b38868e20eb4e470a1e38e3.

    We're going back to considering bus resources in the order we found
    them (in _CRS order, when we're using _CRS), so we don't need to
    define any ordering.

    Acked-by: H. Peter Anvin
    Signed-off-by: Bjorn Helgaas
    Signed-off-by: Jesse Barnes

    Bjorn Helgaas
     
  • * 'bkl_removal' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6:
    [media] uvcvideo: Convert to unlocked_ioctl
    [media] uvcvideo: Lock stream mutex when accessing format-related information
    [media] uvcvideo: Move mmap() handler to uvc_queue.c
    [media] uvcvideo: Move mutex lock/unlock inside uvc_free_buffers
    [media] uvcvideo: Lock controls mutex when querying menus
    [media] v4l2-dev: fix race condition
    [media] V4L: improve the BKL replacement heuristic
    [media] v4l2-dev: use mutex_lock_interruptible instead of plain mutex_lock
    [media] cx18: convert to unlocked_ioctl
    [media] radio-timb: convert to unlocked_ioctl
    [media] sh_vou: convert to unlocked_ioctl
    [media] cafe_ccic: replace ioctl by unlocked_ioctl
    [media] et61x251_core: trivial conversion to unlocked_ioctl
    [media] sn9c102: convert to unlocked_ioctl
    [media] BKL: trivial ioctl -> unlocked_ioctl video driver conversions
    [media] typhoon: convert to unlocked_ioctl
    [media] si4713: convert to unlocked_ioctl
    [media] tea5764: convert to unlocked_ioctl
    [media] cadet: use unlocked_ioctl
    [media] BKL: trivial BKL removal from V4L2 radio drivers

    Linus Torvalds
     

17 Dec, 2010

2 commits

  • I wrote this quirk awhile ago to properly setup MCP55 chips on hypertransport
    busses so that interrupts reached whatever cpu happend to boot the kdump kernel.
    while that works well, it was recently shown to me that a a non-hypertransport
    variant of the MCP55 exists, and on those system the register that this quirk
    manipulates causes hangs if you write to it. Since the quirk was only meant to
    handle errors found on MCP55 chips that have a HT interface, this patch adds a
    filter to make sure the chip is an HT capable before making the needed register
    adjustment. This lets the broken MCP55s work with kdump while not breaking the
    non-HT variants.

    Resolves https://bugzilla.kernel.org/show_bug.cgi?id=23952

    Tested successfully by the reporter and myself.

    Cc: stable@kernel.org
    Reported-by: Mathieu Bérard
    Acked-by: Vivek Goyal
    Signed-off-by: Neil Horman
    Signed-off-by: Jesse Barnes

    Neil Horman
     
  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
    Input: define separate EVIOCGKEYCODE_V2/EVIOCSKEYCODE_V2
    Input: wacom - add another Bamboo Pen ID (0xd4)

    Linus Torvalds
     

16 Dec, 2010

1 commit


15 Dec, 2010

19 commits

  • The desire to keep old names for the EVIOCGKEYCODE/EVIOCSKEYCODE while
    extending them to support large scancodes was a mistake. While we tried
    to keep ABI intact (and we succeeded in doing that, programs compiled
    on older kernels will work on newer ones) there is still a problem with
    recompiling existing software with newer kernel headers.

    New kernel headers will supply updated ioctl numbers and kernel will
    expect that userspace will use struct input_keymap_entry to set and
    retrieve keymap data. But since the names of ioctls are still the same
    userspace will happily compile even if not adjusted to make use of the
    new structure and will start miraculously fail in the field.

    To avoid this issue let's revert EVIOCGKEYCODE/EVIOCSKEYCODE definitions
    and add EVIOCGKEYCODE_V2/EVIOCSKEYCODE_V2 so that userspace can explicitly
    select the style of ioctls it wants to employ.

    Reviewed-by: Henrik Rydberg
    Acked-by: Jarod Wilson
    Acked-by: Mauro Carvalho Chehab
    Signed-off-by: Dmitry Torokhov

    Dmitry Torokhov
     
  • * 'for-linus' of git://neil.brown.name/md:
    md: protect against NULL reference when waiting to start a raid10.
    md: fix bug with re-adding of partially recovered device.
    md: fix possible deadlock in handling flush requests.
    md: move code in to submit_flushes.
    md: remove handling of flush_pending in md_submit_flush_data

    Linus Torvalds
     
  • There is a possibility that the last word of a transaction will be lost
    if data is not ready. Re-read in poll_transfer() to solve this issue
    when poll_mode is enabled.

    Verified on SPI touch screen device.

    Signed-off-by: Major Lee
    Signed-off-by: Alan Cox
    Signed-off-by: Linus Torvalds

    Major Lee
     
  • This gets caught by the new sanity check code. Instead of the slash use a
    different symbol. This was originally found by Major Lee who proposed a
    rather more complex patch which changed the name according to the chip
    type.

    On the basis that we are in a late -rc and making Linus grumpy isn't always
    a good idea (however fun) this is a simple alternative.

    Signed-off-by: Alan Cox
    Signed-off-by: Linus Torvalds

    Alan Cox
     
  • …/git/tmlind/linux-omap-2.6

    * 'omap-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6:
    OMAP2: PRCM: fix some SHIFT macros that were actually bitmasks
    OMAP2+: PM/serial: fix console semaphore acquire during suspend
    OMAP1: SRAM: fix size for OMAP1611 SoCs
    arm: omap2: io: fix clk_get() error check
    arm: plat-omap: counter_32k: use IS_ERR() instead of NULL check
    omap: nand: remove hardware ECC as default
    omap: zoom: wl1271 slot is MMC_CAP_POWER_OFF_CARD
    omap: PM debug: fix wake-on-timer debugfs dependency

    Linus Torvalds
     
  • * master.kernel.org:/home/rmk/linux-2.6-arm:
    ARM: 6535/1: V6 MPCore v6_dma_inv_range and v6_dma_flush_range RWFO fix
    ARM: 6534/1: Make CONFIG_FPE_NWFPE depend on !CONFIG_THUMB2_KERNEL
    ARM: 6533/1: Thumb-2: Make CONFIG_THUMB2_KERNEL depend on !CPU_V6
    Change bcmring Maintainer list.
    ARM: Update mach-types
    ARM: 6528/1: Use CTR for the I-cache line size on ARMv7
    ARM: 6527/1: Use CTR instead of CCSIDR for the D-cache line size on ARMv7
    ARM: pxa/palm: fix ifdef around gen_nand driver registration
    ARM: pxa: fix pxa2xx-flash section mismatch
    ARM: mmp2: remove not used clk_rtc

    Linus Torvalds
     
  • * git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6: (75 commits)
    pppoe.c: Fix kernel panic caused by __pppoe_xmit
    WAN: Fix a TX IRQ causing BUG() in PC300 and PCI200SYN drivers.
    bnx2x: Advance a version number to 1.60.01-0
    bnx2x: Fixed a compilation warning
    bnx2x: LSO code was broken on BE platforms
    qlge: Fix deadlock when cancelling worker.
    net: fix skb_defer_rx_timestamp()
    cxgb4vf: Ingress Queue Entry Size needs to be 64 bytes
    phy: add the IC+ IP1001 driver
    atm: correct sysfs 'device' link creation and parent relationships
    MAINTAINERS: remove me from tulip
    SCTP: Fix SCTP_SET_PEER_PRIMARY_ADDR to accpet v4mapped address
    enic: Bug Fix: Pass napi reference to the isr that services receive queue
    ipv6: fix nl group when advertising a new link
    connector: add module alias
    net: Document the kernel_recvmsg() function
    r8169: Fix runtime power management
    hso: IP checksuming doesn't work on GE0301 option cards
    xfrm: Fix xfrm_state_migrate leak
    net: Convert netpoll blocking api in bonding driver to be a counter
    ...

    Linus Torvalds
     
  • * git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6:
    [SCSI] hpsa: fix redefinition of PCI_DEVICE_ID_CISSF
    [SCSI] qla2xxx: Update version number to 8.03.05-k0.
    [SCSI] qla2xxx: Properly set the return value in qla2xxx_eh_abort function.
    [SCSI] qla2xxx: Correct issue where NPIV-config data was not being allocated for 82xx parts.
    [SCSI] qla2xxx: Change MSI initialization from using incorrect request_irq parameter.
    [SCSI] qla2xxx: Populate Command Type 6 LUN field properly.
    [SCSI] zfcp: Issue FCP command without holding SCSI host_lock
    [SCSI] zfcp: Prevent usage w/o holding a reference
    [SCSI] zfcp: No ERP escalation on gpn_ft eval
    [SCSI] zfcp: Correct false abort data assignment.
    [SCSI] zfcp: Fix common FCP request reception
    [SCSI] Eliminate error handler overload of the SCSI serial number
    [SCSI] pmcraid: disable msix and expand device config entry
    [SCSI] bsg: correct fault if queue object removed while dev_t open
    [SCSI] osd: checking NULL instead of ERR_PTR()

    Linus Torvalds
     
  • * 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/linux-2.6-kgdb:
    kgdboc,input: Fix regression with keyboard release key and early debugging

    Linus Torvalds
     
  • * 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6:
    ACPI / PM: Do not save/restore NVS on Sony Vaio VGN-NW130D
    ACPI/HEST: adjust section selection
    ACPI: eliminate unused variable warning for !ACPI_SLEEP
    ACPI/PNP: avoid section mismatch warning
    ACPI thermal: remove two unused functions
    ACPI: fix a section mismatch
    ACPI, APEI, use raw spinlock in ERST
    ACPI: video: fix build for CONFIG_ACPI=n
    ACPI: video: fix build for VIDEO_OUTPUT_CONTROL=n
    ACPI: fix allowing to add/remove multiple _OSI strings
    acpi: fix _OSI string setup regression
    ACPI: EC: Add another dmi match entry for MSI hardware
    ACPI battery: update status upon sysfs query
    ACPI ac: update AC status upon sysfs query
    ACPI / PM: Do not refcount power resources that can't be turned on
    ACPI / PM: Check device state before refcounting power resources

    Linus Torvalds
     
  • * 'idle-release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6:
    intel_idle: recognize ARAT on WSM-EX

    Linus Torvalds
     
  • …l/git/lethal/fbdev-2.6

    * 'fbdev-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/lethal/fbdev-2.6:
    fbdev: Fix fb_find_nearest_mode refresh comparison

    Linus Torvalds
     
  • * 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/staging:
    hwmon: (ltc4215) make sysfs file match the alarm cause

    Linus Torvalds
     
  • * 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx:
    dmaengine: at_hdmac: fix buffer transfer size specification
    fsldma: fix issue of slow dma
    dmaengine i.MX SDMA: initialize on module_init
    dma : EG20T PCH: Fix miss-setting DMA descriptor
    intel_mid_dma: fix section mismatch warnings
    dmaengine: imx-sdma: fix bug in buffer descriptor initialization
    drivers/dma/ppc4xx: Use printf extension %pR for struct resource
    drivers/dma/ioat: Use the ccflag-y instead of EXTRA_CFLAGS
    drivers/dma/: Use the ccflag-y instead of EXTRA_CFLAGS
    dma: intel_mid_dma: fix double free on mid_setup_dma error path
    dma: imx-dma: fix imxdma_probe error path

    Linus Torvalds
     
  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband:
    IB/uverbs: Handle large number of entries in poll CQ

    Linus Torvalds
     
  • * 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6:
    firewire: ohci: fix regression with Agere FW643 rev 06, disable MSI
    firewire: ohci: fix regression with VIA VT6315, disable MSI

    Linus Torvalds
     
  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6:
    regulator: tps6586x: correct register table
    regulator: tps6586x: Handle both enable reg/bits being the same
    regulator: tps6586x: Fix TPS6586X_DVM to store goreg/bit
    regulator: tps6586x: Add missing bit mask generation

    Linus Torvalds
     
  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp:
    amd64_edac: Fix interleaving check
    EDAC: Correct MiB_TO_PAGES() macro
    EDAC: Fix workqueue-related crashes

    Linus Torvalds
     
  • * 'drm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6:
    drm/radeon/kms: don't apply 7xx HDP flush workaround on AGP
    drm: use after free in drm_queue_vblank_event()
    drm/kms: remove spaces from connector names (v2)

    Linus Torvalds
     

14 Dec, 2010

7 commits

  • Refresh rate nearness is not calculated or reset when nearest resolution
    changes.

    This patch resets the refresh rate differential measurement whenever a
    new nearest resolution is discovered. This fixes two error cases;
    first, wherein the first mode's refresh rate differential is never
    calculated and second, when the closest refresh rate from a previous
    nearest resolution is erroneously preserved.

    Signed-off-by: Andrew Kephart
    Signed-off-by: Paul Mundt

    Andrew Kephart
     
  • Buffer transfer size is the number of transfers to be performed in
    relation with the width of the _source_ interface.
    So in the DMA_FROM_DEVICE case, it should be the register width that
    should be taken into account.

    Signed-off-by: Nicolas Ferre
    Signed-off-by: Dan Williams

    Nicolas Ferre
     
  • The commit 111c182340cd22e238ab1cc6564df336c6ebd7cb (kgdboc: reset
    input devices (keyboards) when exiting debugger) introduced a
    regression in early debugging such that you get a kernel oops on
    continue (with the go command) if you boot a kernel with:

    earlyprintk=vga ekgdboc=kbd kgdbwait

    The restore kgdboc_restore_input() routine schedules work for the
    purpose of sending key release events for any keys that were in the
    depressed state prior to entering the kernel debugger. A simple fix
    to the crash is to not invoke the schedule_work() if the kernel
    system_state is anything other than SYSTEM_RUNNING.

    Signed-off-by: Jason Wessel
    Acked-by: Dmitry Torokhov
    Reviewed-by: Sergei Shtylyov

    Jason Wessel
     
  • Len Brown
     
  • The saving of the NVS memory area during suspend and restoring it
    during resume causes problems to appear on Sony Vaio VGN-NW130D, so
    blacklist that machine to avoid those problems.

    Addresses https://bugzilla.kernel.org/show_bug.cgi?id=23002

    Signed-off-by: Rafael J. Wysocki
    Reported-and-tested-by: Adriano
    Signed-off-by: Len Brown

    Rafael J. Wysocki
     
  • Fixed fsl dma slow issue by initializing dma mode register with
    bandwidth control. It boosts dma performance and should works
    with 85xx board.

    Signed-off-by: Forrest Shi
    Signed-off-by: Li Yang
    Signed-off-by: Dan Williams

    Forrest Shi
     
  • The ltc4215 driver used the chip's "power good" status bit to provide
    the power1_alarm file. This is wrong: the chip is really reporting the
    status of one of the monitored voltages.

    Change the sysfs file from power1_alarm to in2_min_alarm instead. This
    matches the voltage that the chip is raising an alarm for.

    Signed-off-by: Ira W. Snyder
    Signed-off-by: Guenter Roeck

    Ira W. Snyder
     

13 Dec, 2010

7 commits