20 Apr, 2011

7 commits


19 Apr, 2011

15 commits

  • Depending on the unit mask settings some FPU events may be scheduled
    only on cpu counter #3. This patch fixes this.

    Signed-off-by: Robert Richter
    Signed-off-by: Peter Zijlstra
    Cc: Stephane Eranian
    Link: http://lkml.kernel.org/r/1302913676-14352-3-git-send-email-robert.richter@amd.com
    Signed-off-by: Ingo Molnar

    Robert Richter
     
  • With AMD cpu family 15h a unit mask was introduced for the Data Cache
    Miss event (0x041/L1-dcache-load-misses). We need to enable bit 0
    (first data cache miss or streaming store to a 64 B cache line) of
    this mask to proper count data cache misses.

    Now we set this bit for all families and models. In case a PMU does
    not implement a unit mask for event 0x041 the bit is ignored.

    Signed-off-by: Andre Przywara
    Signed-off-by: Robert Richter
    Signed-off-by: Peter Zijlstra
    Link: http://lkml.kernel.org/r/1302913676-14352-2-git-send-email-robert.richter@amd.com
    Signed-off-by: Ingo Molnar

    Andre Przywara
     
  • Linus Torvalds
     
  • * 'for-39-rc4' of git://codeaurora.org/quic/kernel/davidb/linux-msm:
    msm: timer: fix missing return value
    msm: Remove extraneous ffa device check

    Linus Torvalds
     
  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
    Input: xen-kbdfront - fix mouse getting stuck after save/restore
    Input: estimate number of events per packet
    Input: evdev - indicate buffer overrun with SYN_DROPPED
    Input: document event types and codes and their intended use
    Input: add KEY_IMAGES specifically for AL Image Browser
    Input: twl4030_keypad - fix potential NULL dereference in twl4030_kp_probe()
    Input: h3600_ts - fix error handling at connect
    Input: twl4030_keypad - avoid potential NULL-pointer dereference

    Linus Torvalds
     
  • * 'for-linus' of git://git.kernel.dk/linux-2.6-block:
    block: add blk_run_queue_async
    block: blk_delay_queue() should use kblockd workqueue
    md: fix up raid1/raid10 unplugging.
    md: incorporate new plugging into raid5.
    md: provide generic support for handling unplug callbacks.
    md - remove old plugging code.
    md/dm - remove remains of plug_fn callback.
    md: use new plugging interface for RAID IO.
    block: drop queue lock before calling __blk_run_queue() for kblockd punt
    Revert "block: add callback function for unplug notification"
    block: Enhance new plugging support to support general callbacks

    Linus Torvalds
     
  • * 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc:
    powerpc/powermac: Build fix with SMP and CPU hotplug
    powerpc/perf_event: Skip updating kernel counters if register value shrinks
    powerpc: Don't write protect kernel text with CONFIG_DYNAMIC_FTRACE enabled
    powerpc: Fix oops if scan_dispatch_log is called too early
    powerpc/pseries: Use a kmem cache for DTL buffers
    powerpc/kexec: Fix regression causing compile failure on UP
    powerpc/85xx: disable Suspend support if SMP enabled
    powerpc/e500mc: Remove CPU_FTR_MAYBE_CAN_NAP/CPU_FTR_MAYBE_CAN_DOZE
    powerpc/book3e: Fix CPU feature handling on 64-bit e5500
    powerpc: Check device status before adding serial device
    powerpc/85xx: Don't add disabled PCIe devices

    Linus Torvalds
     
  • * git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable: (24 commits)
    Btrfs: fix free space cache leak
    Btrfs: avoid taking the chunk_mutex in do_chunk_alloc
    Btrfs end_bio_extent_readpage should look for locked bits
    Btrfs: don't force chunk allocation in find_free_extent
    Btrfs: Check validity before setting an acl
    Btrfs: Fix incorrect inode nlink in btrfs_link()
    Btrfs: Check if btrfs_next_leaf() returns error in btrfs_real_readdir()
    Btrfs: Check if btrfs_next_leaf() returns error in btrfs_listxattr()
    Btrfs: make uncache_state unconditional
    btrfs: using cached extent_state in set/unlock combinations
    Btrfs: avoid taking the trans_mutex in btrfs_end_transaction
    Btrfs: fix subvolume mount by name problem when default mount subvolume is set
    fix user annotation in ioctl.c
    Btrfs: check for duplicate iov_base's when doing dio reads
    btrfs: properly handle overlapping areas in memmove_extent_buffer
    Btrfs: fix memory leaks in btrfs_new_inode()
    Btrfs: check for duplicate iov_base's when doing dio reads
    Btrfs: reuse the extent_map we found when calling btrfs_get_extent
    Btrfs: do not use async submit for small DIO io's
    Btrfs: don't split dio bios if we don't have to
    ...

    Linus Torvalds
     
  • Rather than pass in some random truncated offset to the pid-related
    functions, check that the offset is in range up-front.

    This is just cleanup, the previous commit fixed the real problem.

    Cc: stable@kernel.org
    Signed-off-by: Linus Torvalds

    Linus Torvalds
     
  • next_pidmap() just quietly accepted whatever 'last' pid that was passed
    in, which is not all that safe when one of the users is /proc.

    Admittedly the proc code should do some sanity checking on the range
    (and that will be the next commit), but that doesn't mean that the
    helper functions should just do that pidmap pointer arithmetic without
    checking the range of its arguments.

    So clamp 'last' to PID_MAX_LIMIT. The fact that we then do "last+1"
    doesn't really matter, the for-loop does check against the end of the
    pidmap array properly (it's only the actual pointer arithmetic overflow
    case we need to worry about, and going one bit beyond isn't going to
    overflow).

    [ Use PID_MAX_LIMIT rather than pid_max as per Eric Biederman ]

    Reported-by: Tavis Ormandy
    Analyzed-by: Robert Święcki
    Cc: Eric W. Biederman
    Cc: Pavel Emelyanov
    Signed-off-by: Linus Torvalds

    Linus Torvalds
     
  • Mouse gets "stuck" after restore of PV guest but buttons are in working
    condition.

    If driver has been configured for ABS coordinates at start it will get
    XENKBD_TYPE_POS events and then suddenly after restore it'll start getting
    XENKBD_TYPE_MOTION events, that will be dropped later and they won't get
    into user-space.

    Regression was introduced by hunk 5 and 6 of
    5ea5254aa0ad269cfbd2875c973ef25ab5b5e9db
    ("Input: xen-kbdfront - advertise either absolute or relative
    coordinates").

    Driver on restore should ask xen for request-abs-pointer again if it is
    available. So restore parts that did it before 5ea5254.

    Acked-by: Olaf Hering
    Signed-off-by: Igor Mammedov
    [v1: Expanded the commit description]
    Signed-off-by: Konrad Rzeszutek Wilk
    Signed-off-by: Dmitry Torokhov

    Igor Mammedov
     
  • Calculate a default based on the number of ABS axes, REL axes,
    and MT slots for the device during input device registration.

    Signed-off-by: Jeff Brown
    Reviewed-by: Henrik Rydberg
    Signed-off-by: Dmitry Torokhov

    Jeff Brown
     
  • The GART can only map physical memory below 1TB. Make sure
    the gart driver in the kernel does not try to map memory
    above 1TB.

    Cc:
    Signed-off-by: Joerg Roedel
    Link: http://lkml.kernel.org/r/1303134346-5805-5-git-send-email-joerg.roedel@amd.com
    Signed-off-by: H. Peter Anvin

    Joerg Roedel
     
  • The DISTLBWALKPRB bit must be set for the GART because the
    gatt table is mapped UC. But the current code does not set
    the bit at boot when the BIOS setup the aperture correctly.
    Fix that by setting this bit when enabling the GART instead
    of the other places.

    Cc:
    Cc: Borislav Petkov
    Signed-off-by: Joerg Roedel
    Link: http://lkml.kernel.org/r/1303134346-5805-4-git-send-email-joerg.roedel@amd.com
    Signed-off-by: H. Peter Anvin

    Joerg Roedel
     
  • Probably by copy&paste this function was indented by spaces.
    Convert this to tabs.

    Signed-off-by: Joerg Roedel
    Link: http://lkml.kernel.org/r/1303134346-5805-3-git-send-email-joerg.roedel@amd.com
    Signed-off-by: H. Peter Anvin

    Joerg Roedel
     

18 Apr, 2011

18 commits

  • This patch fixes a deadlock in GFS2 where two processes are trying
    to reclaim an unlinked dinode:
    One holds the inode glock and calls gfs2_lookup_by_inum trying to look
    up the inode, which it can't, due to I_FREEING. The other has set
    I_FREEING from vfs and is at the beginning of gfs2_delete_inode
    waiting for the glock, which is held by the first. The solution is to
    add a new non_block parameter to the gfs2_iget function that causes it
    to return -ENOENT if the inode is being freed.

    Signed-off-by: Bob Peterson
    Signed-off-by: Steven Whitehouse

    Bob Peterson
     
  • This adds a couple of missing tests to avoid read-only nodes
    from attempting to deallocate unlinked inodes.

    Signed-off-by: Steven Whitehouse
    Reported-by: Michel Andre de la Porte

    Steven Whitehouse
     
  • GFS2 was relying on the writepage code to write out the zeroed data for
    fallocate. However, with FALLOC_FL_KEEP_SIZE set, this may be past i_size.
    If it is, it will be ignored. To work around this, gfs2 now calls
    write_dirty_buffer directly on the buffer_heads when FALLOC_FL_KEEP_SIZE
    is set, and it's writing past i_size.

    This version is just a cleanup of my last version

    Signed-off-by: Benjamin Marzinski
    Signed-off-by: Steven Whitehouse

    Benjamin Marzinski
     
  • I did an audit of gfs2's transaction glock for bugzilla bug
    658619 and ran across this:

    In function gfs2_write_end, in the unlikely event that
    gfs2_meta_inode_buffer returns an error, the code may forget
    to unlock the transaction lock because the "failed" label
    appears after the call to function gfs2_trans_end.

    Signed-off-by: Bob Peterson
    Signed-off-by: Steven Whitehouse

    Bob Peterson
     
  • The free space caching code was recently reworked to
    cache all the pages it needed instead of using find_get_page everywhere.

    One loop was missed though, so it ended up leaking pages. This fixes
    it to use our page array instead of find_get_page.

    Signed-off-by: Chris Mason

    Chris Mason
     
  • Instead of overloading __blk_run_queue to force an offload to kblockd
    add a new blk_run_queue_async helper to do it explicitly. I've kept
    the blk_queue_stopped check for now, but I suspect it's not needed
    as the check we do when the workqueue items runs should be enough.

    Signed-off-by: Christoph Hellwig
    Signed-off-by: Jens Axboe

    Christoph Hellwig
     
  • Reported-by: Christoph Hellwig
    Signed-off-by: Jens Axboe

    Jens Axboe
     
  • In omap_rtc_probe error path, free_irq() was using NULL rather than the
    driver data as the data pointer so free_irq() wouldn't have matched.

    Signed-off-by: Axel Lin
    Cc: "George G. Davis"
    Cc: Alessandro Zummo
    Cc: rtc-linux@googlegroups.com
    Link: http://lkml.kernel.org/r/%3C1303005778.2889.2.camel%40phoenix%3E
    Signed-off-by: Thomas Gleixner

    Axel Lin
     
  • A dynamic posix clock is protected from asynchronous removal by a mutex.
    However, using a mutex has the unwanted effect that a long running clock
    operation in one process will unnecessarily block other processes.

    For example, one process might call read() to get an external time stamp
    coming in at one pulse per second. A second process calling clock_gettime
    would have to wait for almost a whole second.

    This patch fixes the issue by using a reader/writer semaphore instead of
    a mutex.

    Signed-off-by: Richard Cochran
    Cc: John Stultz
    Link: http://lkml.kernel.org/r/%3C20110330132421.GA31771%40riccoc20.at.omicron.at%3E
    Signed-off-by: Thomas Gleixner

    Richard Cochran
     
  • We just need to make sure that an unplug event wakes up the md
    thread, which is exactly what mddev_check_plugged does.

    Also remove some plug-related code that is no longer needed.

    Signed-off-by: NeilBrown

    NeilBrown
     
  • In raid5 plugging is used for 2 things:
    1/ collecting writes that require a bitmap update
    2/ collecting writes in the hope that we can create full
    stripes - or at least more-full.

    We now release these different sets of stripes when plug_cnt
    is zero.

    Also in make_request, we call mddev_check_plug to hopefully increase
    plug_cnt, and wake up the thread at the end if plugging wasn't
    achieved for some reason.

    Signed-off-by: NeilBrown

    NeilBrown
     
  • When an md device adds a request to a queue, it can call
    mddev_check_plugged.
    If this succeeds then we know that the md thread will be woken up
    shortly, and ->plug_cnt will be non-zero until then, so some
    processing can be delayed.

    If it fails, then no unplug callback is expected and the make_request
    function needs to do whatever is required to make the request happen.

    Signed-off-by: NeilBrown

    NeilBrown
     
  • md has some plugging infrastructure for RAID5 to use because the
    normal plugging infrastructure required a 'request_queue', and when
    called from dm, RAID5 doesn't have one of those available.

    This relied on the ->unplug_fn callback which doesn't exist any more.

    So remove all of that code, both in md and raid5. Subsequent patches
    with restore the plugging functionality.

    Signed-off-by: NeilBrown

    NeilBrown
     
  • Now that unplugging is done differently, the unplug_fn callback is
    never called, so it can be completely discarded.

    Signed-off-by: NeilBrown

    NeilBrown
     
  • md/raid submits a lot of IO from the various raid threads.
    So adding start/finish plug calls to those so that some
    plugging happens.

    Signed-off-by: NeilBrown

    NeilBrown
     
  • If we know we are going to punt to kblockd, we can drop the queue
    lock before calling into __blk_run_queue() since it only does a
    safe bit test and a workqueue call. Since kblockd needs to grab
    this very lock as one of the first things it does, it's a good
    optimization to drop the lock before waking kblockd.

    Signed-off-by: Jens Axboe

    Jens Axboe
     
  • MD can't use this since it really requires us to be able to
    keep more than a single piece of state for the unplug. Commit
    048c9374 added the required support for MD, so get rid of this
    now unused code.

    This reverts commit f75664570d8b75469cc468f23c2b27220984983b.

    Conflicts:

    block/blk-core.c

    Signed-off-by: Jens Axboe

    Jens Axboe
     
  • md/raid requires an unplug callback, but as it does not uses
    requests the current code cannot provide one.

    So allow arbitrary callbacks to be attached to the blk_plug.

    Signed-off-by: NeilBrown
    Signed-off-by: Jens Axboe

    NeilBrown