29 Jul, 2010

1 commit

  • kmemleak ignores page_alloc() and so believes the final sub-page
    allocation using the plain kmalloc is decoupled and lost. This leads to
    lots of false-positives with code that uses scatterlists.

    The options seem to be either to tell kmemleak that the kmalloc is not
    leaked or to notify kmemleak of the page allocations. The danger of the
    first approach is that we may hide a real leak, so choose the latter
    approach (of which I am not sure of the downsides).

    v2: Added comments on the suggestion of Catalin.

    Signed-off-by: Chris Wilson
    Cc: Tejun Heo
    Cc: Jens Axboe
    Signed-off-by: Catalin Marinas

    Chris Wilson
     

19 Jul, 2010

5 commits


05 Jul, 2010

9 commits

  • Linus Torvalds
     
  • * master.kernel.org:/home/rmk/linux-2.6-arm:
    ARM: 6205/1: perf: ensure counter delta is treated as unsigned
    ARM: 6202/1: Do not ARM_DMA_MEM_BUFFERABLE on RealView boards with L210/L220
    ARM: 6201/1: RealView: Do not use outer_sync() on ARM11MPCore boards with L220
    ARM: 6195/1: OMAP3: pmu: make CPU_HAS_PMU dependent on OMAP3_EMU
    ARM: 6194/1: change definition of cpu_relax() for ARM11MPCore
    ARM: 6193/1: RealView: Align the machine_desc.phys_io to 1MB section
    ARM: 6192/1: VExpress: Align the machine_desc.phys_io to 1MB section
    ARM: 6188/1: Add a config option for the ARM11MPCore DMA cache maintenance workaround
    ARM: 6187/1: The v6_dma_inv_range() function must preserve data on SMP
    ARM: 6186/1: Avoid the CONSISTENT_DMA_SIZE warning on noMMU builds
    ARM: mx3: mx31lilly: fix build error for !CONFIG_USB_ULPI
    [ARM] mmp: fix build failure due to IRQ_PMU depends on ARCH_PXA
    [ARM] pxa/mioa701: fix camera regression
    [ARM] pxa/z2: fix flash layout to final version
    [ARM] pxa/z2: fix missing include in battery driver
    [ARM] pxa: fix incorrect gpio type in udc_pxa2xx.h

    Linus Torvalds
     
  • …/git/tip/linux-2.6-tip

    * 'perf-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
    perf, x86: Fix incorrect branches event on AMD CPUs
    perf tools: Fix find tids routine by excluding "." and ".."
    x86: Send a SIGTRAP for user icebp traps

    Linus Torvalds
     
  • We should initialize the module dynamic debug datastructures
    only after determining that the module is not loaded yet. This
    fixes a bug that introduced in 2.6.35-rc2, where when a trying
    to load a module twice, we also load it's dynamic printing data
    twice which causes all sorts of nasty issues. Also handle
    the dynamic debug cleanup later on failure.

    Signed-off-by: Yehuda Sadeh
    Signed-off-by: Rusty Russell (removed a #ifdef)
    Signed-off-by: Linus Torvalds

    Yehuda Sadeh
     
  • * 'for-linus' of git://oss.sgi.com/xfs/xfs:
    xfs: remove block number from inode lookup code
    xfs: rename XFS_IGET_BULKSTAT to XFS_IGET_UNTRUSTED
    xfs: validate untrusted inode numbers during lookup
    xfs: always use iget in bulkstat
    xfs: prevent swapext from operating on write-only files

    Linus Torvalds
     
  • * 'merge-devicetree' of git://git.secretlab.ca/git/linux-2.6:
    of/dma: fix build breakage in ppc4xx adma driver

    Linus Torvalds
     
  • * 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/i7core:
    MAINTAINERS: Add an entry for i7core_edac
    i7core_edac: Avoid doing multiple probes for the same card
    i7core_edac: Properly discover the first QPI device

    Linus Torvalds
     
  • * 'rc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6:
    kbuild: Propagate LOCALVERSION= down to scripts/setlocalversion
    kbuild: Clean up and speed up the localversion logic

    Linus Torvalds
     
  • Hardware performance counters on ARM are 32-bits wide but atomic64_t
    variables are used to represent counter data in the hw_perf_event structure.

    The armpmu_event_update function right-shifts a signed 64-bit delta variable
    and adds the result to the event count. This can lead to shifting in sign-bits
    if the MSB of the 32-bit counter value is set. This results in perf output
    such as:

    Performance counter stats for 'sleep 20':

    18446744073460670464 cycles
    Acked-by: Jamie Iles
    Signed-off-by: Will Deacon
    Signed-off-by: Russell King

    Will Deacon
     

03 Jul, 2010

7 commits


02 Jul, 2010

18 commits

  • When calculating the DCT channel from the syndrome we need to know the
    syndrome type (x4 vs x8). On F10h, this is read out from extended PCI
    cfg space register F3x180 while on K8 we only support x4 syndromes and
    don't have extended PCI config space anyway.

    Make the code accessing F3x180 F10h only and fall back to x4 syndromes
    on everything else.

    Cc: # .33.x .34.x
    Reported-by: Jeffrey Merkey
    Signed-off-by: Borislav Petkov

    Borislav Petkov
     
  • Conflicts:
    Makefile

    Michal Marek
     
  • RealView boards with certain revisions of the L210/L220 cache controller
    may have issues (hardware deadlock) with the mandatory barriers (DSB
    followed by an L2 cache sync) when ARM_DMA_MEM_BUFFERABLE is enabled.
    The patch disables ARM_DMA_MEM_BUFFERABLE for these boards.

    Tested-by: Linus Walleij
    Signed-off-by: Catalin Marinas
    Signed-off-by: Russell King

    Catalin Marinas
     
  • RealView boards with certain revisions of the L220 cache controller (ARM11*
    processors only) may have issues (hardware deadlock) with the recent changes to
    the mb() barrier implementation (DSB followed by an L2 cache sync). The patch
    redefines the RealView ARM11MPCore mandatory barriers without the outer_sync()
    call.

    Cc:
    Tested-by: Linus Walleij
    Signed-off-by: Catalin Marinas
    Signed-off-by: Russell King

    Catalin Marinas
     
  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/anholt/drm-intel:
    drm/i915: fix page flip finish vs. prepare on plane B
    drm/i915: change default panel fitting mode to preserve aspect ratio
    drm/i915: fix uninitialized variable warning in i915_setup_compression()
    drm/i915: take struct_mutex in i915_dma_cleanup()
    drm/i915: Fix CRT hotplug regression in 2.6.35-rc1
    i915: fix ironlake edp panel setup (v4)
    drm/i915: don't access FW_BLC_SELF on 965G
    drm/i915: Account for space on the ring buffer consumed whilst wrapping.
    drm/i915: gen3 page flipping fixes
    drm/i915: don't queue flips during a flip pending event
    drm/i915: Fix incorrect intel_ring_begin size in BSD ringbuffer.
    drm/i915: Turn on 945 self-refresh only if single CRTC is active
    drm/i915/gen4: Fix interrupt setup ordering
    drm/i915: Use RSEN instead of HTPLG for tfp410 monitor detection.
    drm/i915: Move non-phys cursors into the GTT
    Revert "drm/i915: Don't enable pipe/plane/VCO early (wait for DPMS on)."

    (Included the "fix page flip finish vs. prepare on plane B" patch from
    Jesse on top of the pull request from Eric. -- Linus)

    Linus Torvalds
     
  • The refreshed patch had a copy & paste bug.

    Reported-by: Simon Farnsworth
    Signed-off-by: Jesse Barnes
    Signed-off-by: Linus Torvalds

    Jesse Barnes
     
  • * 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev:
    ata_generic: implement ATA_GEN_* flags and force enable DMA on MBP 7,1
    ahci,ata_generic: let ata_generic handle new MBP w/ MCP89
    libahci: Fix bug in storing EM messages

    Linus Torvalds
     
  • When booting 2.6.35-rc3 on a x86 system without an ERST ACPI table with
    the 'quiet' option, we still observe an "ERST: Table is not found!"
    warning.

    Quiesce it to the same info log level as the other 'table not found'
    warnings.

    Signed-off-by: Daniel J Blueman
    Signed-off-by: Linus Torvalds

    Daniel J Blueman
     
  • Since commit 4bdadb9785696439c6e2b3efe34aa76df1149c83 ("drm/i915:
    Selectively enable self-reclaim"), we've been passing GFP_MOVABLE to the
    i915 page allocator where we weren't before due to some over-eager
    removal of the page mapping gfp_flags games the code used to play.

    This caused hibernate on Intel hardware to result in a lot of memory
    corruptions on resume. See for example

    http://bugzilla.kernel.org/show_bug.cgi?id=13811

    Reported-by: Evengi Golov (in bugzilla)
    Signed-off-by: Dave Airlie
    Tested-by: M. Vefa Bicakci
    Cc: stable@kernel.org
    Cc: Chris Wilson
    Cc: KOSAKI Motohiro
    Cc: Hugh Dickins
    Signed-off-by: Linus Torvalds

    Linus Torvalds
     
  • We did this a long time ago in the DDX driver, but now this fix belongs
    in the kernel.

    Preserving the aspect ratio is a nicer default.

    Fixes https://bugs.freedesktop.org/show_bug.cgi?id=18033.

    Tested-by: Josh Triplett
    Signed-off-by: Jesse Barnes
    Signed-off-by: Eric Anholt

    Jesse Barnes
     
  • Fixes:

    drivers/gpu/drm/i915/i915_dma.c: In function ‘i915_setup_compression’:
    drivers/gpu/drm/i915/i915_dma.c:1311: error: ‘compressed_llb’ may be used uninitialized in this function

    Signed-off-by: Prarit Bhargava
    Signed-off-by: Eric Anholt

    Prarit Bhargava
     
  • intel_cleanup_ring_buffer() calls drm_gem_object_unreference() (as
    opposed to drm_gem_object_unreference_unlocked()) so it needs to be
    called with "struct_mutex" held. If we don't hold the lock, it triggers
    a BUG_ON(!mutex_is_locked(&dev->struct_mutex));

    I also audited the other places that call intel_cleanup_ring_buffer()
    and they all hold the lock so they're OK.

    This was introduced in: 8187a2b70e3 "drm/i915: introduce
    intel_ring_buffer structure (V2)" and it's a regression from v2.6.34.

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

    Signed-off-by: Dan Carpenter
    Reported-by: Benny Halevy
    Tested-by: Benny Halevy
    Signed-off-by: Eric Anholt

    Dan Carpenter
     
  • Commit 7a772c492fcfffae812ffca78a628e76fa57fe58 has two bugs which
    made the hotplug problems on my laptop worse instead of better.

    First, it did not, in fact, disable the CRT plug interrupt -- it
    disabled all the other hotplug interrupts. It seems rather doubtful
    that that bit of the patch fixed anything, so let's just remove it.
    (If you want to add it back, you probably meant ~CRT_HOTPLUG_INT_EN.)

    Second, on at least my GM45, setting CRT_HOTPLUG_ACTIVATION_PERIOD_64
    and CRT_HOTPLUG_VOLTAGE_COMPARE_50 (when they were previously unset)
    causes a hotplug interrupt about three seconds later. The old code
    never restored PORT_HOTPLUG_EN so this could only happen once, but
    they new code restores those registers. So just set those bits when
    we set up the interrupt in the first place.

    Signed-off-by: Andy Lutomirski
    Signed-off-by: Eric Anholt

    Andy Lutomirski
     
  • The eDP spec claims a 20% overhead for the 8:10 encoding scheme used
    on the wire. Take this into account when picking the lane/clock speed
    for the panel.

    v3: some panels are out of spec, try our best to deal with them, don't
    refuse modes on eDP panels, and try the largest allowed settings if
    all else fails on eDP.
    v4: fix stupid typo, forgot to git add before amending.

    Fixes several reports in bugzilla:

    https://bugs.freedesktop.org/show_bug.cgi?id=28070

    Signed-off-by: Dave Airlie
    Signed-off-by: Eric Anholt

    Dave Airlie
     
  • The register offset for FW_BLC_SELF is a totally different set of bits
    on Broadwater (it's actually MI_RDRET_STATE), so don't treat it like
    FW_BLC_SELF on 965G chips.

    Fixes bug https://bugs.freedesktop.org/show_bug.cgi?id=26874.

    Cc: stable@kernel.org
    Tested-by: Norman Yarvin
    Signed-off-by: Jesse Barnes
    Signed-off-by: Eric Anholt

    Jesse Barnes
     
  • If we fill the tail of the physical ring buffer with NOOP when wrapping,
    we need to account for the reduction in available space.

    Signed-off-by: Chris Wilson
    Signed-off-by: Eric Anholt

    Chris Wilson
     
  • IDE mode of MCP89 on MBP 7,1 doesn't set DMA enable bits in the BMDMA
    status register. Make the following changes to work around the problem.

    * Instead of using hard coded 1 in id->driver_data as class code
    match, use ATA_GEN_CLASS_MATCH and carry the matched id in
    host->private_data.

    * Instead of matching PCI_VENDOR_ID_CENATEK, use ATA_GEN_FORCE_DMA
    flag in id instead.

    * Add ATA_GEN_FORCE_DMA to the id entry of MBP 7,1.

    Signed-off-by: Tejun Heo
    Cc: Peer Chen
    Cc: stable@kernel.org
    Reported-by: Anders Østhus
    Reported-by: Andreas Graf
    Reported-by: Benoit Gschwind
    Reported-by: Damien Cassou
    Reported-by: tixetsal@juno.com
    Signed-off-by: Jeff Garzik

    Tejun Heo
     
  • For yet unknown reason, MCP89 on MBP 7,1 doesn't work w/ ahci under
    linux but the controller doesn't require explicit mode setting and
    works fine with ata_generic. Make ahci ignore the controller on MBP
    7,1 and let ata_generic take it for now.

    Reported in bko#15923.

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

    NVIDIA is investigating why ahci mode doesn't work.

    Signed-off-by: Tejun Heo
    Cc: Peer Chen
    Cc: stable@kernel.org
    Reported-by: Anders Østhus
    Reported-by: Andreas Graf
    Reported-by: Benoit Gschwind
    Reported-by: Damien Cassou
    Reported-by: tixetsal@juno.com
    Signed-off-by: Jeff Garzik

    Tejun Heo