18 May, 2011

13 commits

  • Now that we have CONFIG_DYNAMIC_DEBUG there is no need for yet
    another flag causing dev_dbg() and pr_debug() statements in the
    core PM code to produce output. Moreover, CONFIG_PM_VERBOSE
    causes so much output to be generated that it's not really useful
    and almost no one sets it.

    References: https://bugzilla.kernel.org/show_bug.cgi?id=23182
    Signed-off-by: Rafael J. Wysocki

    Rafael J. Wysocki
     
  • * power-domains:
    PM: Fix build issue in clock_ops.c for CONFIG_PM_RUNTIME unset
    PM: Revert "driver core: platform_bus: allow runtime override of dev_pm_ops"
    OMAP1 / PM: Use generic clock manipulation routines for runtime PM
    PM / Runtime: Generic clock manipulation rountines for runtime PM (v6)
    PM / Runtime: Add subsystem data field to struct dev_pm_info
    OMAP2+ / PM: move runtime PM implementation to use device power domains
    PM / Platform: Use generic runtime PM callbacks directly
    shmobile: Use power domains for platform runtime PM
    PM: Export platform bus type's default PM callbacks
    PM: Make power domain callbacks take precedence over subsystem ones

    Rafael J. Wysocki
     
  • * syscore:
    PM: Remove sysdev suspend, resume and shutdown operations
    PM / PowerPC: Use struct syscore_ops instead of sysdevs for PM
    PM / UNICORE32: Use struct syscore_ops instead of sysdevs for PM
    PM / AVR32: Use struct syscore_ops instead of sysdevs for PM
    PM / Blackfin: Use struct syscore_ops instead of sysdevs for PM
    ARM / Samsung: Use struct syscore_ops for "core" power management
    ARM / PXA: Use struct syscore_ops for "core" power management
    ARM / SA1100: Use struct syscore_ops for "core" power management
    ARM / Integrator: Use struct syscore_ops for core PM
    ARM / OMAP: Use struct syscore_ops for "core" power management
    ARM: Use struct syscore_ops instead of sysdevs for PM in common code

    Rafael J. Wysocki
     
  • This reverts commit bea3864fb627d110933cfb8babe048b63c4fc76e
    (PM / Hibernate: Reduce autotuned default image size), because users
    are now able to resolve the issue this commit was supposed to address
    in a different way (i.e. by using the new /sys/power/reserved_size
    interface).

    Signed-off-by: Rafael J. Wysocki

    Rafael J. Wysocki
     
  • Martin reports that on his system hibernation occasionally fails due
    to the lack of memory, because the radeon driver apparently allocates
    too much of it during the device freeze stage. It turns out that the
    amount of memory allocated by radeon during hibernation (and
    presumably during system suspend too) depends on the utilization of
    the GPU (e.g. hibernating while there are two KDE 4 sessions with
    compositing enabled causes radeon to allocate more memory than for
    one KDE 4 session).

    In principle it should be possible to use image_size to make the
    memory preallocation mechanism free enough memory for the radeon
    driver, but in practice it is not easy to guess the right value
    because of the way the preallocation code uses image_size. For this
    reason, it seems reasonable to allow users to control the amount of
    memory reserved for driver allocations made after the hibernate
    preallocation, which currently is constant and amounts to 1 MB.

    Introduce a new sysfs file, /sys/power/reserved_size, whose value
    will be used as the amount of memory to reserve for the
    post-preallocation reservations made by device drivers, in bytes.
    For backwards compatibility, set its default (and initial) value to
    the currently used number (1 MB).

    References: https://bugzilla.kernel.org/show_bug.cgi?id=34102
    Reported-and-tested-by: Martin Steigerwald
    Signed-off-by: Rafael J. Wysocki

    Rafael J. Wysocki
     
  • wakeup_source_add() adds an item into wakeup_sources list.

    There is no need to call synchronize_rcu() at this point.

    Its only needed in wakeup_source_remove()

    Signed-off-by: Eric Dumazet
    Signed-off-by: Rafael J. Wysocki

    Eric Dumazet
     
  • We need to prevent kernel-forked processes during system poweroff.
    Such processes try to access the filesystem whose disks we are
    trying to shutdown at the same time. This causes delays and exceptions
    in the storage drivers.

    A follow-up patch will add these calls and need usermodehelper_disable()
    also on systems without suspend support.

    Signed-off-by: Kay Sievers
    Signed-off-by: Rafael J. Wysocki

    Kay Sievers
     
  • acpi_sleep=s4_nonvs is superseded by acpi_sleep=nonvs, so remove it.

    Signed-off-by: WANG Cong
    Acked-by: Pavel Machek
    Acked-by: Len Brown
    Signed-off-by: Rafael J. Wysocki

    Amerigo Wang
     
  • The "wakeup" device sysfs file is only created if CONFIG_PM_SLEEP
    is set, so put it under CONFIG_PM_SLEEP and make a build warning
    related to it go away.

    Signed-off-by: Rafael J. Wysocki
    Acked-by: Greg Kroah-Hartman

    Rafael J. Wysocki
     
  • Some drivers erroneously use request_firmware() from their ->resume()
    (or ->thaw(), or ->restore()) callbacks, which is not going to work
    unless the firmware has been built in. This causes system resume to
    stall until the firmware-loading timeout expires, which makes users
    think that the resume has failed and reboot their machines
    unnecessarily. For this reason, make _request_firmware() print a
    warning and return immediately with error code if it has been called
    when tasks are frozen and it's impossible to start any new usermode
    helpers.

    Signed-off-by: Rafael J. Wysocki
    Acked-by: Greg Kroah-Hartman
    Reviewed-by: Valdis Kletnieks

    Rafael J. Wysocki
     
  • The driver core tries to prevent race conditions between runtime PM
    and driver removal from happening by incrementing the runtime PM
    usage counter of the device and executing pm_runtime_barrier() before
    running the bus notifier and the ->remove() callbacks provided by the
    device's subsystem or driver. This guarantees that, if a future
    runtime suspend of the device has been scheduled or a runtime resume
    or idle request has been queued up right before the driver removal,
    it will be canceled or waited for to complete and no other
    asynchronous runtime suspend or idle requests for the device will be
    put into the PM workqueue until the ->remove() callback returns.
    However, it doesn't prevent resume requests from being queued up
    after pm_runtime_barrier() has been called and it doesn't prevent
    pm_runtime_resume() from executing the device subsystem's runtime
    resume callback. Morever, it prevents the device's subsystem or
    driver from putting the device into the suspended state by calling
    pm_runtime_suspend() from its ->remove() routine. This turns out to
    be a major inconvenience for some subsystems and drivers that want to
    leave the devices they handle in the suspended state.

    To really prevent runtime PM callbacks from racing with the bus
    notifier callback in __device_release_driver(), which is necessary,
    because the notifier is used by some subsystems to carry out
    operations affecting the runtime PM functionality, use
    pm_runtime_get_sync() instead of the combination of
    pm_runtime_get_noresume() and pm_runtime_barrier(). This will resume
    the device if it's in the suspended state and will prevent it from
    being suspended again until pm_runtime_put_*() is called.

    To allow subsystems and drivers to put devices into the suspended
    state by calling pm_runtime_suspend() from their ->remove() routines,
    execute pm_runtime_put_sync() after running the bus notifier in
    __device_release_driver(). This will require subsystems and drivers
    to make their ->remove() callbacks avoid races with runtime PM
    directly, but it will allow of more flexibility in the handling of
    devices during the removal of their drivers.

    Signed-off-by: Rafael J. Wysocki

    Rafael J. Wysocki
     
  • The freezer processes are dealing with multiple threads running
    simultaneously, and on a UP system, the memory reads/writes do
    not need barriers to keep things in sync. These are only needed
    on SMP systems, so use SMP barriers instead.

    Signed-off-by: Mike Frysinger
    Acked-by: Pavel Machek
    Signed-off-by: Rafael J. Wysocki

    Mike Frysinger
     
  • The current implementation of suspend-to-RAM returns 0 if there is an
    error from suspend_enter(), because suspend_devices_and_enter() ignores
    the return value from suspend_enter(). This patch addresses this issue
    and properly keep the error return from suspend_enter() and let
    suspend_devices_and_enter relay the error return.

    Signed-off-by: MyungJoo Ham
    Signed-off-by: Kyungmin Park
    Signed-off-by: Rafael J. Wysocki

    MyungJoo Ham
     

17 May, 2011

10 commits

  • * git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6:
    net: Change netdev_fix_features messages loglevel
    vmxnet3: Fix inconsistent LRO state after initialization
    sfc: Fix oops in register dump after mapping change
    IPVS: fix netns if reading ip_vs_* procfs entries
    bridge: fix forwarding of IPv6

    Linus Torvalds
     
  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc:
    Revert "mmc: fix a race between card-detect rescan and clock-gate work instances"

    Linus Torvalds
     
  • Fix new kernel-doc warning in mm/page_alloc.c:

    Warning(mm/page_alloc.c:2370): No description found for parameter 'nid'

    Signed-off-by: Randy Dunlap
    Signed-off-by: Linus Torvalds

    Randy Dunlap
     
  • During pci remove/rescan testing found:

    pci 0000:c0:03.0: PCI bridge to [bus c4-c9]
    pci 0000:c0:03.0: bridge window [io 0x1000-0x0fff]
    pci 0000:c0:03.0: bridge window [mem 0xf0000000-0xf00fffff]
    pci 0000:c0:03.0: bridge window [mem 0xfc180000000-0xfc197ffffff 64bit pref]
    pci 0000:c0:03.0: device not available (can't reserve [io 0x1000-0x0fff])
    pci 0000:c0:03.0: Error enabling bridge (-22), continuing
    pci 0000:c0:03.0: enabling bus mastering
    pci 0000:c0:03.0: setting latency timer to 64
    pcieport 0000:c0:03.0: device not available (can't reserve [io 0x1000-0x0fff])
    pcieport: probe of 0000:c0:03.0 failed with error -22

    This bug was caused by commit c8adf9a3e873 ("PCI: pre-allocate
    additional resources to devices only after successful allocation of
    essential resources.")

    After that commit, pci_hotplug_io_size is changed to additional_io_size
    from minium size. So it will not go through resource_size(res) != 0
    path, and will not be reset.

    The root cause is: pci_bridge_check_ranges will set RESOURCE_IO flag for
    pci bridge, and later if children do not need IO resource. those bridge
    resources will not need to be allocated. but flags is still there.
    that will confuse the the pci_enable_bridges later.

    related code:

    static void assign_requested_resources_sorted(struct resource_list *head,
    struct resource_list_x *fail_head)
    {
    struct resource *res;
    struct resource_list *list;
    int idx;

    for (list = head->next; list; list = list->next) {
    res = list->res;
    idx = res - &list->dev->resource[0];
    if (resource_size(res) && pci_assign_resource(list->dev, idx)) {
    ...
    reset_resource(res);
    }
    }
    }

    At last, We have to clear the flags in pbus_size_mem/io when requested
    size == 0 and !add_head. becasue this case it will not go through
    adjust_resources_sorted().

    Just make size1 = size0 when !add_head. it will make flags get cleared.

    At the same time when requested size == 0, add_size != 0, will still
    have in head and add_list. because we do not clear the flags for it.

    After this, we will get right result:

    pci 0000:c0:03.0: PCI bridge to [bus c4-c9]
    pci 0000:c0:03.0: bridge window [io disabled]
    pci 0000:c0:03.0: bridge window [mem 0xf0000000-0xf00fffff]
    pci 0000:c0:03.0: bridge window [mem 0xfc180000000-0xfc197ffffff 64bit pref]
    pci 0000:c0:03.0: enabling bus mastering
    pci 0000:c0:03.0: setting latency timer to 64
    pcieport 0000:c0:03.0: setting latency timer to 64
    pcieport 0000:c0:03.0: irq 160 for MSI/MSI-X
    pcieport 0000:c0:03.0: Signaling PME through PCIe PME interrupt
    pci 0000:c4:00.0: Signaling PME through PCIe PME interrupt
    pcie_pme 0000:c0:03.0:pcie01: service driver pcie_pme loaded
    aer 0000:c0:03.0:pcie02: service driver aer loaded
    pciehp 0000:c0:03.0:pcie04: Hotplug Controller:

    v3: more simple fix. also fix one typo in pbus_size_mem

    Signed-off-by: Yinghai Lu
    Reviewed-by: Ram Pai
    Cc: Jesse Barnes
    Cc: Bjorn Helgaas
    Signed-off-by: Linus Torvalds

    Yinghai Lu
     
  • Those reduced to DEBUG can possibly be triggered by unprivileged processes
    and are nothing exceptional. Illegal checksum combinations can only be
    caused by driver bug, so promote those messages to WARN.

    Since GSO without SG will now only cause DEBUG message from
    netdev_fix_features(), remove the workaround from register_netdevice().

    Signed-off-by: Michał Mirosław
    Signed-off-by: David S. Miller

    Michał Mirosław
     
  • During initialization of vmxnet3, the state of LRO
    gets out of sync with netdev->features.

    This leads to very poor TCP performance in a IP forwarding
    setup and is hitting many VMware users.

    Simplified call sequence:
    1. vmxnet3_declare_features() initializes "adapter->lro" to true.

    2. The kernel automatically disables LRO if IP forwarding is enabled,
    so vmxnet3_set_flags() gets called. This also updates netdev->features.

    3. Now vmxnet3_setup_driver_shared() is called. "adapter->lro" is still
    set to true and LRO gets enabled again, even though
    netdev->features shows it's disabled.

    Fix it by updating "adapter->lro", too.

    The private vmxnet3 adapter flags are scheduled for removal
    in net-next, see commit a0d2730c9571aeba793cb5d3009094ee1d8fda35
    "net: vmxnet3: convert to hw_features".

    Patch applies to 2.6.37 / 2.6.38 and 2.6.39-rc6.

    Please CC: comments.

    Signed-off-by: Thomas Jarosch
    Acked-by: Stephen Hemminger
    Signed-off-by: David S. Miller

    Thomas Jarosch
     
  • Commit 747df2258b1b9a2e25929ef496262c339c380009 ('sfc: Always map MCDI
    shared memory as uncacheable') introduced a separate mapping for the
    MCDI shared memory (MC_TREG_SMEM). This means we can no longer easily
    include it in the register dump. Since it is not particularly useful
    in debugging, substitute a recognisable dummy value.

    Signed-off-by: Ben Hutchings
    Signed-off-by: David S. Miller

    Ben Hutchings
     
  • Fix a build issue in drivers/base/power/clock_ops.c occuring when
    CONFIG_PM_RUNTIME is not set.

    Signed-off-by: Rafael J. Wysocki

    Rafael J. Wysocki
     
  • The platform_bus_set_pm_ops() operation is deprecated in favor of the
    new device power domain infrastructre implemented in commit
    7538e3db6e015e890825fbd9f8659952896ddd5b (PM: add support for device
    power domains)

    Signed-off-by: Kevin Hilman
    Signed-off-by: Rafael J. Wysocki

    Kevin Hilman
     
  • Convert OMAP1 to using the new generic clock manipulation routines
    and a device power domain for runtime PM instead of overriding the
    platform bus type's runtime PM callbacks. This allows us to simplify
    OMAP1-specific code and to share some code with other platforms
    (shmobile in particular).

    Signed-off-by: Rafael J. Wysocki
    Acked-by: Kevin Hilman

    Rafael J. Wysocki
     

16 May, 2011

8 commits

  • …/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:
    OMAP3: set the core dpll clk rate in its set_rate function
    omap: iommu: Return IRQ_HANDLED in fault handler when no fault occured

    Linus Torvalds
     
  • * 'drm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6:
    drm: Take lock around probes for drm_fb_helper_hotplug_event
    drm/i915: Revert i915.semaphore=1 default from 47ae63e0
    vga_switcheroo: don't toggle-switch devices
    drm/radeon/kms: add some evergreen/ni safe regs
    drm/radeon/kms: fix extended lvds info parsing
    drm/radeon/kms: fix tiling reg on fusion

    Linus Torvalds
     
  • This reverts commit 26fc8775b51484d8c0a671198639c6d5ae60533e, which has
    been reported to cause boot/resume-time crashes for some users:

    https://bbs.archlinux.org/viewtopic.php?id=118751.

    Signed-off-by: Chris Ball
    Cc:

    Chris Ball
     
  • We need to hold the dev->mode_config.mutex whilst detecting the output
    status. But we also need to drop it for the call into
    drm_fb_helper_single_fb_probe(), which indirectly acquires the lock when
    attaching the fbcon.

    Failure to do so exposes a race with normal output probing. Detected by
    adding some warnings that the mutex is held to the backend detect routines:

    [ 17.772456] WARNING: at drivers/gpu/drm/i915/intel_crt.c:471 intel_crt_detect+0x3e/0x373 [i915]()
    [ 17.772458] Hardware name: Latitude E6400
    [ 17.772460] Modules linked in: ....
    [ 17.772582] Pid: 11, comm: kworker/0:1 Tainted: G W 2.6.38.4-custom.2 #8
    [ 17.772584] Call Trace:
    [ 17.772591] [] ? warn_slowpath_common+0x78/0x8c
    [ 17.772603] [] ? intel_crt_detect+0x3e/0x373 [i915]
    [ 17.772612] [] ? drm_helper_probe_single_connector_modes+0xbf/0x2af [drm_kms_helper]
    [ 17.772619] [] ? drm_fb_helper_probe_connector_modes+0x39/0x4d [drm_kms_helper]
    [ 17.772625] [] ? drm_fb_helper_hotplug_event+0xa5/0xc3 [drm_kms_helper]
    [ 17.772633] [] ? output_poll_execute+0x146/0x17c [drm_kms_helper]
    [ 17.772638] [] ? cfq_init_queue+0x247/0x345
    [ 17.772644] [] ? output_poll_execute+0x0/0x17c [drm_kms_helper]
    [ 17.772648] [] ? process_one_work+0x193/0x28e
    [ 17.772652] [] ? worker_thread+0xef/0x172
    [ 17.772655] [] ? worker_thread+0x0/0x172
    [ 17.772658] [] ? worker_thread+0x0/0x172
    [ 17.772663] [] ? kthread+0x7a/0x82
    [ 17.772668] [] ? kernel_thread_helper+0x4/0x10
    [ 17.772671] [] ? kthread+0x0/0x82
    [ 17.772674] [] ? kernel_thread_helper+0x0/0x10

    Reported-by: Frederik Himpe
    References: https://bugs.freedesktop.org/show_bug.cgi?id=36394
    Signed-off-by: Chris Wilson
    Signed-off-by: Dave Airlie

    Chris Wilson
     
  • My Q67 / i7-2600 box has rev09 Sandy Bridge graphics. It hangs
    instantly when GNOME loads and it hangs so hard the reset button
    doesn't work. Setting i915.semaphore=0 fixes it.

    Semaphores were disabled in a1656b9090f7008d2941c314f5a64724bea2ae37
    in 2.6.38 and were re-enabled by

    commit 47ae63e0c2e5fdb582d471dc906eb29be94c732f
    Merge: c59a333 467cffb
    Author: Chris Wilson
    Date: Mon Mar 7 12:32:44 2011 +0000

    Merge branch 'drm-intel-fixes' into drm-intel-next

    Apply the trivial conflicting regression fixes, but keep GPU semaphores
    enabled.

    Conflicts:
    drivers/gpu/drm/i915/i915_drv.h
    drivers/gpu/drm/i915/i915_gem_execbuffer.c

    (It's worth noting that the offending change is i915_drv.c,
    which is not a conflict.)

    Signed-off-by: Andy Lutomirski
    Acked-by: Keith Packard
    Signed-off-by: Dave Airlie

    Andy Lutomirski
     
  • If the requested device is already active, ignore the request.

    This restores the original behaviour of the interface. The change was
    probably an unintended side effect of

    commit 66b37c6777c4 vga_switcheroo: split switching into two stages

    which did not take into account to duplicate the !active check in the split-off
    stage2.

    Fix this by factoring that check out of stage1 into the debugfs_write routine.

    References: https://bugzilla.kernel.org/show_bug.cgi?id=34252
    Reported-by: Igor Murzov
    Tested-by: Igor Murzov
    Signed-off-by: Florian Mickler
    Signed-off-by: Dave Airlie

    Florian Mickler
     
  • David S. Miller
     
  • * git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable:
    Btrfs: fix FS_IOC_SETFLAGS ioctl
    Btrfs: fix FS_IOC_GETFLAGS ioctl
    fs: remove FS_COW_FL
    Btrfs: fix easily get into ENOSPC in mixed case
    Prevent oopsing in posix_acl_valid()

    Linus Torvalds
     

15 May, 2011

9 commits