17 Mar, 2017

1 commit

  • The last caller of assert_held_device_hotplug() is gone, so remove it again.

    Link: http://lkml.kernel.org/r/20170314125226.16779-3-heiko.carstens@de.ibm.com
    Signed-off-by: Heiko Carstens
    Acked-by: Dan Williams
    Cc: Michal Hocko
    Cc: "Rafael J. Wysocki"
    Cc: Vladimir Davydov
    Cc: Ben Hutchings
    Cc: Gerald Schaefer
    Cc: Martin Schwidefsky
    Cc: Sebastian Ott
    Cc: Greg Kroah-Hartman
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Heiko Carstens
     

04 Mar, 2017

2 commits

  • Pull vfs 'statx()' update from Al Viro.

    This adds the new extended stat() interface that internally subsumes our
    previous stat interfaces, and allows user mode to specify in more detail
    what kind of information it wants.

    It also allows for some explicit synchronization information to be
    passed to the filesystem, which can be relevant for network filesystems:
    is the cached value ok, or do you need open/close consistency, or what?

    From David Howells.

    Andreas Dilger points out that the first version of the extended statx
    interface was posted June 29, 2010:

    https://www.spinics.net/lists/linux-fsdevel/msg33831.html

    * 'rebased-statx' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
    statx: Add a system call to make enhanced file info available

    Linus Torvalds
     
  • Pull sched.h split-up from Ingo Molnar:
    "The point of these changes is to significantly reduce the
    header footprint, to speed up the kernel build and to
    have a cleaner header structure.

    After these changes the new 's typical preprocessed
    size goes down from a previous ~0.68 MB (~22K lines) to ~0.45 MB (~15K
    lines), which is around 40% faster to build on typical configs.

    Not much changed from the last version (-v2) posted three weeks ago: I
    eliminated quirks, backmerged fixes plus I rebased it to an upstream
    SHA1 from yesterday that includes most changes queued up in -next plus
    all sched.h changes that were pending from Andrew.

    I've re-tested the series both on x86 and on cross-arch defconfigs,
    and did a bisectability test at a number of random points.

    I tried to test as many build configurations as possible, but some
    build breakage is probably still left - but it should be mostly
    limited to architectures that have no cross-compiler binaries
    available on kernel.org, and non-default configurations"

    * 'WIP.sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (146 commits)
    sched/headers: Clean up
    sched/headers: Remove #ifdefs from
    sched/headers: Remove the include from
    sched/headers, hrtimer: Remove the include from
    sched/headers, x86/apic: Remove the header inclusion from
    sched/headers, timers: Remove the include from
    sched/headers: Remove from
    sched/headers: Remove from
    sched/core: Remove unused prefetch_stack()
    sched/headers: Remove from
    sched/headers: Remove the 'init_pid_ns' prototype from
    sched/headers: Remove from
    sched/headers: Remove from
    sched/headers: Remove the runqueue_is_locked() prototype
    sched/headers: Remove from
    sched/headers: Remove from
    sched/headers: Remove from
    sched/headers: Remove from
    sched/headers: Remove the include from
    sched/headers: Remove from
    ...

    Linus Torvalds
     

03 Mar, 2017

4 commits

  • Add a system call to make extended file information available, including
    file creation and some attribute flags where available through the
    underlying filesystem.

    The getattr inode operation is altered to take two additional arguments: a
    u32 request_mask and an unsigned int flags that indicate the
    synchronisation mode. This change is propagated to the vfs_getattr*()
    function.

    Functions like vfs_stat() are now inline wrappers around new functions
    vfs_statx() and vfs_statx_fd() to reduce stack usage.

    ========
    OVERVIEW
    ========

    The idea was initially proposed as a set of xattrs that could be retrieved
    with getxattr(), but the general preference proved to be for a new syscall
    with an extended stat structure.

    A number of requests were gathered for features to be included. The
    following have been included:

    (1) Make the fields a consistent size on all arches and make them large.

    (2) Spare space, request flags and information flags are provided for
    future expansion.

    (3) Better support for the y2038 problem [Arnd Bergmann] (tv_sec is an
    __s64).

    (4) Creation time: The SMB protocol carries the creation time, which could
    be exported by Samba, which will in turn help CIFS make use of
    FS-Cache as that can be used for coherency data (stx_btime).

    This is also specified in NFSv4 as a recommended attribute and could
    be exported by NFSD [Steve French].

    (5) Lightweight stat: Ask for just those details of interest, and allow a
    netfs (such as NFS) to approximate anything not of interest, possibly
    without going to the server [Trond Myklebust, Ulrich Drepper, Andreas
    Dilger] (AT_STATX_DONT_SYNC).

    (6) Heavyweight stat: Force a netfs to go to the server, even if it thinks
    its cached attributes are up to date [Trond Myklebust]
    (AT_STATX_FORCE_SYNC).

    And the following have been left out for future extension:

    (7) Data version number: Could be used by userspace NFS servers [Aneesh
    Kumar].

    Can also be used to modify fill_post_wcc() in NFSD which retrieves
    i_version directly, but has just called vfs_getattr(). It could get
    it from the kstat struct if it used vfs_xgetattr() instead.

    (There's disagreement on the exact semantics of a single field, since
    not all filesystems do this the same way).

    (8) BSD stat compatibility: Including more fields from the BSD stat such
    as creation time (st_btime) and inode generation number (st_gen)
    [Jeremy Allison, Bernd Schubert].

    (9) Inode generation number: Useful for FUSE and userspace NFS servers
    [Bernd Schubert].

    (This was asked for but later deemed unnecessary with the
    open-by-handle capability available and caused disagreement as to
    whether it's a security hole or not).

    (10) Extra coherency data may be useful in making backups [Andreas Dilger].

    (No particular data were offered, but things like last backup
    timestamp, the data version number and the DOS archive bit would come
    into this category).

    (11) Allow the filesystem to indicate what it can/cannot provide: A
    filesystem can now say it doesn't support a standard stat feature if
    that isn't available, so if, for instance, inode numbers or UIDs don't
    exist or are fabricated locally...

    (This requires a separate system call - I have an fsinfo() call idea
    for this).

    (12) Store a 16-byte volume ID in the superblock that can be returned in
    struct xstat [Steve French].

    (Deferred to fsinfo).

    (13) Include granularity fields in the time data to indicate the
    granularity of each of the times (NFSv4 time_delta) [Steve French].

    (Deferred to fsinfo).

    (14) FS_IOC_GETFLAGS value. These could be translated to BSD's st_flags.
    Note that the Linux IOC flags are a mess and filesystems such as Ext4
    define flags that aren't in linux/fs.h, so translation in the kernel
    may be a necessity (or, possibly, we provide the filesystem type too).

    (Some attributes are made available in stx_attributes, but the general
    feeling was that the IOC flags were to ext[234]-specific and shouldn't
    be exposed through statx this way).

    (15) Mask of features available on file (eg: ACLs, seclabel) [Brad Boyer,
    Michael Kerrisk].

    (Deferred, probably to fsinfo. Finding out if there's an ACL or
    seclabal might require extra filesystem operations).

    (16) Femtosecond-resolution timestamps [Dave Chinner].

    (A __reserved field has been left in the statx_timestamp struct for
    this - if there proves to be a need).

    (17) A set multiple attributes syscall to go with this.

    ===============
    NEW SYSTEM CALL
    ===============

    The new system call is:

    int ret = statx(int dfd,
    const char *filename,
    unsigned int flags,
    unsigned int mask,
    struct statx *buffer);

    The dfd, filename and flags parameters indicate the file to query, in a
    similar way to fstatat(). There is no equivalent of lstat() as that can be
    emulated with statx() by passing AT_SYMLINK_NOFOLLOW in flags. There is
    also no equivalent of fstat() as that can be emulated by passing a NULL
    filename to statx() with the fd of interest in dfd.

    Whether or not statx() synchronises the attributes with the backing store
    can be controlled by OR'ing a value into the flags argument (this typically
    only affects network filesystems):

    (1) AT_STATX_SYNC_AS_STAT tells statx() to behave as stat() does in this
    respect.

    (2) AT_STATX_FORCE_SYNC will require a network filesystem to synchronise
    its attributes with the server - which might require data writeback to
    occur to get the timestamps correct.

    (3) AT_STATX_DONT_SYNC will suppress synchronisation with the server in a
    network filesystem. The resulting values should be considered
    approximate.

    mask is a bitmask indicating the fields in struct statx that are of
    interest to the caller. The user should set this to STATX_BASIC_STATS to
    get the basic set returned by stat(). It should be noted that asking for
    more information may entail extra I/O operations.

    buffer points to the destination for the data. This must be 256 bytes in
    size.

    ======================
    MAIN ATTRIBUTES RECORD
    ======================

    The following structures are defined in which to return the main attribute
    set:

    struct statx_timestamp {
    __s64 tv_sec;
    __s32 tv_nsec;
    __s32 __reserved;
    };

    struct statx {
    __u32 stx_mask;
    __u32 stx_blksize;
    __u64 stx_attributes;
    __u32 stx_nlink;
    __u32 stx_uid;
    __u32 stx_gid;
    __u16 stx_mode;
    __u16 __spare0[1];
    __u64 stx_ino;
    __u64 stx_size;
    __u64 stx_blocks;
    __u64 __spare1[1];
    struct statx_timestamp stx_atime;
    struct statx_timestamp stx_btime;
    struct statx_timestamp stx_ctime;
    struct statx_timestamp stx_mtime;
    __u32 stx_rdev_major;
    __u32 stx_rdev_minor;
    __u32 stx_dev_major;
    __u32 stx_dev_minor;
    __u64 __spare2[14];
    };

    The defined bits in request_mask and stx_mask are:

    STATX_TYPE Want/got stx_mode & S_IFMT
    STATX_MODE Want/got stx_mode & ~S_IFMT
    STATX_NLINK Want/got stx_nlink
    STATX_UID Want/got stx_uid
    STATX_GID Want/got stx_gid
    STATX_ATIME Want/got stx_atime{,_ns}
    STATX_MTIME Want/got stx_mtime{,_ns}
    STATX_CTIME Want/got stx_ctime{,_ns}
    STATX_INO Want/got stx_ino
    STATX_SIZE Want/got stx_size
    STATX_BLOCKS Want/got stx_blocks
    STATX_BASIC_STATS [The stuff in the normal stat struct]
    STATX_BTIME Want/got stx_btime{,_ns}
    STATX_ALL [All currently available stuff]

    stx_btime is the file creation time, stx_mask is a bitmask indicating the
    data provided and __spares*[] are where as-yet undefined fields can be
    placed.

    Time fields are structures with separate seconds and nanoseconds fields
    plus a reserved field in case we want to add even finer resolution. Note
    that times will be negative if before 1970; in such a case, the nanosecond
    fields will also be negative if not zero.

    The bits defined in the stx_attributes field convey information about a
    file, how it is accessed, where it is and what it does. The following
    attributes map to FS_*_FL flags and are the same numerical value:

    STATX_ATTR_COMPRESSED File is compressed by the fs
    STATX_ATTR_IMMUTABLE File is marked immutable
    STATX_ATTR_APPEND File is append-only
    STATX_ATTR_NODUMP File is not to be dumped
    STATX_ATTR_ENCRYPTED File requires key to decrypt in fs

    Within the kernel, the supported flags are listed by:

    KSTAT_ATTR_FS_IOC_FLAGS

    [Are any other IOC flags of sufficient general interest to be exposed
    through this interface?]

    New flags include:

    STATX_ATTR_AUTOMOUNT Object is an automount trigger

    These are for the use of GUI tools that might want to mark files specially,
    depending on what they are.

    Fields in struct statx come in a number of classes:

    (0) stx_dev_*, stx_blksize.

    These are local system information and are always available.

    (1) stx_mode, stx_nlinks, stx_uid, stx_gid, stx_[amc]time, stx_ino,
    stx_size, stx_blocks.

    These will be returned whether the caller asks for them or not. The
    corresponding bits in stx_mask will be set to indicate whether they
    actually have valid values.

    If the caller didn't ask for them, then they may be approximated. For
    example, NFS won't waste any time updating them from the server,
    unless as a byproduct of updating something requested.

    If the values don't actually exist for the underlying object (such as
    UID or GID on a DOS file), then the bit won't be set in the stx_mask,
    even if the caller asked for the value. In such a case, the returned
    value will be a fabrication.

    Note that there are instances where the type might not be valid, for
    instance Windows reparse points.

    (2) stx_rdev_*.

    This will be set only if stx_mode indicates we're looking at a
    blockdev or a chardev, otherwise will be 0.

    (3) stx_btime.

    Similar to (1), except this will be set to 0 if it doesn't exist.

    =======
    TESTING
    =======

    The following test program can be used to test the statx system call:

    samples/statx/test-statx.c

    Just compile and run, passing it paths to the files you want to examine.
    The file is built automatically if CONFIG_SAMPLES is enabled.

    Here's some example output. Firstly, an NFS directory that crosses to
    another FSID. Note that the AUTOMOUNT attribute is set because transiting
    this directory will cause d_automount to be invoked by the VFS.

    [root@andromeda ~]# /tmp/test-statx -A /warthog/data
    statx(/warthog/data) = 0
    results=7ff
    Size: 4096 Blocks: 8 IO Block: 1048576 directory
    Device: 00:26 Inode: 1703937 Links: 125
    Access: (3777/drwxrwxrwx) Uid: 0 Gid: 4041
    Access: 2016-11-24 09:02:12.219699527+0000
    Modify: 2016-11-17 10:44:36.225653653+0000
    Change: 2016-11-17 10:44:36.225653653+0000
    Attributes: 0000000000001000 (-------- -------- -------- -------- -------- -------- ---m---- --------)

    Secondly, the result of automounting on that directory.

    [root@andromeda ~]# /tmp/test-statx /warthog/data
    statx(/warthog/data) = 0
    results=7ff
    Size: 4096 Blocks: 8 IO Block: 1048576 directory
    Device: 00:27 Inode: 2 Links: 125
    Access: (3777/drwxrwxrwx) Uid: 0 Gid: 4041
    Access: 2016-11-24 09:02:12.219699527+0000
    Modify: 2016-11-17 10:44:36.225653653+0000
    Change: 2016-11-17 10:44:36.225653653+0000

    Signed-off-by: David Howells
    Signed-off-by: Al Viro

    David Howells
     
  • Pull more power management updates deom Rafael Wysocki:
    "These fix two bugs introduced by recent power management updates (in
    the cpuidle menu governor and intel_pstate) and a few other issues,
    clean up things and remove unused code.

    Specifics:

    - Fix for a cpuidle menu governor problem that started to take an
    unnecessary spinlock after one of the recent updates and that did
    not play well with the RT patch (Rafael Wysocki).

    - Fix for the new intel_pstate operation mode switching feature added
    recently that did not reinitialize P-state limits properly when
    switching operation modes (Rafael Wysocki).

    - Removal of unused global notifiers from the PM QoS framework
    (Viresh Kumar).

    - Generic power domains framework update to make it handle
    asynchronous invocations of PM callbacks in the "noirq" phases of
    system suspend/hibernation correctly (Ulf Hansson).

    - Two hibernation core cleanups (Rafael Wysocki).

    - intel_idle cleanup related to the sysfs interface (Len Brown).

    - Off-by-one bug fix in the OPP (Operating Performance Points)
    framework (Andrzej Hajda).

    - OPP framework's documentation fix (Viresh Kumar).

    - cpufreq qoriq driver cleanup (Tang Yuantian).

    - Fixes for typos in comments in the device runtime PM framework
    (Christophe Jaillet)"

    * tag 'pm-extra-4.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
    PM / OPP: Documentation: Fix opp-microvolt in examples
    intel_idle: stop exposing platform acronyms in sysfs
    cpufreq: intel_pstate: Fix limits issue with operation mode switching
    PM / hibernate: Define pr_fmt() and use pr_*() instead of printk()
    PM / hibernate: Untangle power_down()
    cpuidle: menu: Avoid taking spinlock for accessing QoS values
    PM / QoS: Remove global notifiers
    PM / runtime: Fix some typos
    cpufreq: qoriq: clean up unused code
    PM / OPP: fix off-by-one bug in dev_pm_opp_get_max_volt_latency loop
    PM / Domains: Power off masters immediately in the power off sequence
    PM / Domains: Rename is_async to one_dev_on for genpd_power_off()
    PM / Domains: Move genpd_power_off() above genpd_power_on()

    Linus Torvalds
     
  • * pm-cpuidle:
    intel_idle: stop exposing platform acronyms in sysfs
    cpuidle: menu: Avoid taking spinlock for accessing QoS values

    * pm-cpufreq:
    cpufreq: intel_pstate: Fix limits issue with operation mode switching
    cpufreq: qoriq: clean up unused code

    * pm-sleep:
    PM / hibernate: Define pr_fmt() and use pr_*() instead of printk()
    PM / hibernate: Untangle power_down()

    Rafael J. Wysocki
     
  • * pm-core:
    PM / runtime: Fix some typos

    * pm-qos:
    PM / QoS: Remove global notifiers

    * pm-domains:
    PM / Domains: Power off masters immediately in the power off sequence
    PM / Domains: Rename is_async to one_dev_on for genpd_power_off()
    PM / Domains: Move genpd_power_off() above genpd_power_on()

    * pm-opp:
    PM / OPP: Documentation: Fix opp-microvolt in examples
    PM / OPP: fix off-by-one bug in dev_pm_opp_get_max_volt_latency loop

    Rafael J. Wysocki
     

02 Mar, 2017

3 commits


27 Feb, 2017

1 commit

  • After commit 9908859acaa9 (cpuidle/menu: add per CPU PM QoS resume
    latency consideration) the cpuidle menu governor calls
    dev_pm_qos_read_value() on CPU devices to read the current resume
    latency QoS constraint values for them. That function takes a spinlock
    to prevent the device's power.qos pointer from becoming NULL during
    the access which is a problem for the RT patchset where spinlocks are
    converted into mutexes and the idle loop stops working.

    However, it is not even necessary for the menu governor to take
    that spinlock, because the power.qos pointer accessed under it
    cannot be modified during the access anyway.

    For this reason, introduce a "raw" routine for accessing device
    QoS resume latency constraints without locking and use it in the
    menu governor.

    Fixes: 9908859acaa9 (cpuidle/menu: add per CPU PM QoS resume latency consideration)
    Acked-by: Alex Shi
    Signed-off-by: Rafael J. Wysocki

    Rafael J. Wysocki
     

25 Feb, 2017

4 commits

  • Commit 31bc3858ea3e ("add automatic onlining policy for the newly added
    memory") provides the capability to have added memory automatically
    onlined during add, but this appears to be slightly broken.

    The current implementation uses walk_memory_range() to call
    online_memory_block, which uses memory_block_change_state() to online
    the memory. Instead, we should be calling device_online() for the
    memory block in online_memory_block(). This would online the memory
    (the memory bus online routine memory_subsys_online() called from
    device_online calls memory_block_change_state()) and properly update the
    device struct offline flag.

    As a result of the current implementation, attempting to remove a memory
    block after adding it using auto online fails. This is because doing a
    remove, for instance

    echo offline > /sys/devices/system/memory/memoryXXX/state

    uses device_offline() which checks the dev->offline flag.

    Link: http://lkml.kernel.org/r/20170222220744.8119.19687.stgit@ltcalpine2-lp14.aus.stglabs.ibm.com
    Signed-off-by: Nathan Fontenot
    Cc: Michael Ellerman
    Cc: Michael Roth
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Nathan Fontenot
     
  • The callers of the DMA alloc functions already provide the proper
    context GFP flags. Make sure to pass them through to the CMA allocator,
    to make the CMA compaction context aware.

    Link: http://lkml.kernel.org/r/20170127172328.18574-3-l.stach@pengutronix.de
    Signed-off-by: Lucas Stach
    Acked-by: Vlastimil Babka
    Acked-by: Michal Hocko
    Cc: Radim Krcmar
    Cc: Catalin Marinas
    Cc: Will Deacon
    Cc: Chris Zankel
    Cc: Ralf Baechle
    Cc: Paolo Bonzini
    Cc: Alexander Graf
    Cc: Joonsoo Kim
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Lucas Stach
     
  • Most users of this interface just want to use it with the default
    GFP_KERNEL flags, but for cases where DMA memory is allocated it may be
    called from a different context.

    No functional change yet, just passing through the flag to the
    underlying alloc_contig_range function.

    Link: http://lkml.kernel.org/r/20170127172328.18574-2-l.stach@pengutronix.de
    Signed-off-by: Lucas Stach
    Acked-by: Vlastimil Babka
    Acked-by: Michal Hocko
    Cc: Radim Krcmar
    Cc: Catalin Marinas
    Cc: Will Deacon
    Cc: Chris Zankel
    Cc: Ralf Baechle
    Cc: Paolo Bonzini
    Cc: Alexander Graf
    Cc: Joonsoo Kim
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Lucas Stach
     
  • mem_hotplug_begin() assumes that it can set mem_hotplug.active_writer
    and run the hotplug process without racing another thread. Validate
    this assumption with a lockdep assertion.

    Link: http://lkml.kernel.org/r/148693886229.16345.1770484669403334689.stgit@dwillia2-desk3.amr.corp.intel.com
    Signed-off-by: Dan Williams
    Reported-by: Ben Hutchings
    Cc: Michal Hocko
    Cc: Toshi Kani
    Cc: Vlastimil Babka
    Cc: Logan Gunthorpe
    Cc: Greg Kroah-Hartman
    Cc: Masayoshi Mizuma
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Dan Williams
     

24 Feb, 2017

5 commits


23 Feb, 2017

1 commit

  • Pull driver core updates from Greg KH:
    "Here is the "small" driver core patches for 4.11-rc1.

    Not much here, some firmware documentation and self-test updates, a
    debugfs code formatting issue, and a new feature for call_usermodehelper
    to make it more robust on systems that want to lock it down in a more
    secure way.

    All of these have been linux-next for a while now with no reported
    issues"

    * tag 'driver-core-4.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core:
    kernfs: handle null pointers while printing node name and path
    Introduce STATIC_USERMODEHELPER to mediate call_usermodehelper()
    Make static usermode helper binaries constant
    kmod: make usermodehelper path a const string
    firmware: revamp firmware documentation
    selftests: firmware: send expected errors to /dev/null
    selftests: firmware: only modprobe if driver is missing
    platform: Print the resource range if device failed to claim
    kref: prefer atomic_inc_not_zero to atomic_add_unless
    debugfs: improve formatting of debugfs_real_fops()

    Linus Torvalds
     

21 Feb, 2017

4 commits

  • …nel/git/rafael/linux-pm

    Pull device property updates from Rafael J. Wysocki:
    "Generic device properties framework updates for v4.11-rc1

    Allow built-in (static) device properties to be declared as constant,
    make it possible to save memory by discarding alternative (but unused)
    built-in (static) property sets and add support for automatic handling
    of built-in properties to the I2C code"

    * tag 'device-properties-4.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
    i2c: allow specify device properties in i2c_board_info
    device property: export code duplicating array of property entries
    device property: constify property arrays values
    device property: allow to constify properties

    Linus Torvalds
     
  • Pull power management updates from Rafael Wysocki:
    "The majority of changes go into the Operating Performance Points (OPP)
    framework and cpufreq this time, followed by devfreq and some
    scattered updates all over.

    The OPP changes are mostly related to switching over from RCU-based
    synchronization, that turned out to be overly complicated and
    problematic, to reference counting using krefs.

    In the cpufreq land there are core cleanups, documentation updates, a
    new driver for Broadcom BMIPS SoCs, a new cpufreq-dt sub-driver for TI
    SoCs that require special handling, ARM64 SoCs support for the qoriq
    driver, intel_pstate updates, powernv driver update and assorted
    fixes.

    The devfreq changes are mostly fixes related to the sysfs interface
    and some Exynos drivers updates.

    Apart from that, the cpuidle menu governor will support per-CPU PM QoS
    constraints for the wakeup latency now, some bugs in the wakeup IRQs
    framework are fixed, the generic power domains framework should handle
    asynchronous invocations of *noirq suspend/resume callbacks from now
    on, the analyze_suspend.py script is updated and there is a new tool
    for intel_pstate diagnostics.

    Specifics:

    - Operating Performance Points (OPP) framework fixes, cleanups and
    switch over from RCU-based synchronization to reference counting
    using krefs (Viresh Kumar, Wei Yongjun, Dave Gerlach)

    - cpufreq core cleanups and documentation updates (Viresh Kumar,
    Rafael Wysocki)

    - New cpufreq driver for Broadcom BMIPS SoCs (Markus Mayer)

    - New cpufreq-dt sub-driver for TI SoCs requiring special handling,
    like in the AM335x, AM437x, DRA7x, and AM57x families, along with
    new DT bindings for it (Dave Gerlach, Paul Gortmaker)

    - ARM64 SoCs support for the qoriq cpufreq driver (Tang Yuantian)

    - intel_pstate driver updates including a new sysfs knob to control
    the driver's operation mode and fixes related to the no_turbo sysfs
    knob and the hardware-managed P-states feature support (Rafael
    Wysocki, Srinivas Pandruvada)

    - New interface to export ultra-turbo frequencies for the powernv
    cpufreq driver (Shilpasri Bhat)

    - Assorted fixes for cpufreq drivers (Arnd Bergmann, Dan Carpenter,
    Wei Yongjun)

    - devfreq core fixes, mostly related to the sysfs interface exported
    by it (Chanwoo Choi, Chris Diamand)

    - Updates of the exynos-bus and exynos-ppmu devfreq drivers (Chanwoo
    Choi)

    - Device PM QoS extension to support CPUs and support for per-CPU
    wakeup (device resume) latency constraints in the cpuidle menu
    governor (Alex Shi)

    - Wakeup IRQs framework fixes (Grygorii Strashko)

    - Generic power domains framework update including a fix to make it
    handle asynchronous invocations of *noirq suspend/resume callbacks
    correctly (Ulf Hansson, Geert Uytterhoeven)

    - Assorted fixes and cleanups in the core suspend/hibernate code, PM
    QoS framework and x86 ACPI idle support code (Corentin Labbe, Geert
    Uytterhoeven, Geliang Tang, John Keeping, Nick Desaulniers)

    - Update of the analyze_suspend.py script is updated to version 4.5
    offering multiple improvements (Todd Brandt)

    - New tool for intel_pstate diagnostics using the pstate_sample
    tracepoint (Doug Smythies)"

    * tag 'pm-4.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: (85 commits)
    MAINTAINERS: cpufreq: add bmips-cpufreq.c
    PM / QoS: Fix memory leak on resume_latency.notifiers
    PM / Documentation: Spelling s/wrtie/write/
    PM / sleep: Fix test_suspend after sleep state rework
    cpufreq: CPPC: add ACPI_PROCESSOR dependency
    cpufreq: make ti-cpufreq explicitly non-modular
    cpufreq: Do not clear real_cpus mask on policy init
    tools/power/x86: Debug utility for intel_pstate driver
    AnalyzeSuspend: fix drag and zoom bug in javascript
    PM / wakeirq: report a wakeup_event on dedicated wekup irq
    PM / wakeirq: Fix spurious wake-up events for dedicated wakeirqs
    PM / wakeirq: Enable dedicated wakeirq for suspend
    cpufreq: dt: Don't use generic platdev driver for ti-cpufreq platforms
    cpufreq: ti: Add cpufreq driver to determine available OPPs at runtime
    Documentation: dt: add bindings for ti-cpufreq
    PM / OPP: Expose _of_get_opp_desc_node as dev_pm_opp API
    cpufreq: qoriq: Don't look at clock implementation details
    cpufreq: qoriq: add ARM64 SoCs support
    PM / Domains: Provide dummy governors if CONFIG_PM_GENERIC_DOMAINS=n
    cpufreq: brcmstb-avs-cpufreq: remove unnecessary platform_set_drvdata()
    ...

    Linus Torvalds
     
  • Pull regmap updates from Mark Brown:
    "For v4.11 activity on the regmap API has literally doubled, there are
    two patches this release:

    - fixes from Charles Keepax to make the kerneldoc generate correctly

    - a cleanup from Geliang Tang using rb_entry() rather than open
    coding it with container_of()"

    * tag 'regmap-v4.11' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap:
    regmap: Fixup the kernel-doc comments on functions/structures
    regmap: use rb_entry()

    Linus Torvalds
     
  • Pull irq updates from Thomas Gleixner:
    "This update provides:

    - Yet another two irq controller chip drivers

    - A few updates and fixes for GICV3

    - A resource managed function for interrupt allocation

    - Fixes, updates and enhancements all over the place"

    * 'irq-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
    irqchip/qcom: Fix error handling
    genirq: Clarify logic calculating bogus irqreturn_t values
    genirq/msi: Add stubs for get_cached_msi_msg/pci_write_msi_msg
    genirq/devres: Use dev_name(dev) as default for devname
    genirq: Fix /proc/interrupts output alignment
    irqdesc: Add a resource managed version of irq_alloc_descs()
    irqchip/gic-v3-its: Zero command on allocation
    irqchip/gic-v3-its: Fix command buffer allocation
    irqchip/mips-gic: Fix local interrupts
    irqchip: Add a driver for Cortina Gemini
    irqchip: DT bindings for Cortina Gemini irqchip
    irqchip/gic-v3: Remove duplicate definition of GICD_TYPER_LPIS
    irqchip/gic-v3-its: Rename MAPVI to MAPTI
    irqchip/gic-v3-its: Drop deprecated GITS_BASER_TYPE_CPU
    irqchip/gic-v3-its: Refactor command encoding
    irqchip/gic-v3-its: Enable cacheable attribute Read-allocate hints
    irqchip/qcom: Add IRQ combiner driver
    ACPI: Add support for ResourceSource/IRQ domain mapping
    ACPI: Generic GSI: Do not attempt to map non-GSI IRQs during bus scan
    irq/platform-msi: Fix comment about maximal MSIs

    Linus Torvalds
     

20 Feb, 2017

3 commits

  • * pm-core:
    PM / wakeirq: report a wakeup_event on dedicated wekup irq
    PM / wakeirq: Fix spurious wake-up events for dedicated wakeirqs
    PM / wakeirq: Enable dedicated wakeirq for suspend

    * pm-qos:
    PM / QoS: Fix memory leak on resume_latency.notifiers
    PM / QoS: Remove unneeded linux/miscdevice.h include

    * pm-domains:
    PM / Domains: Provide dummy governors if CONFIG_PM_GENERIC_DOMAINS=n
    PM / Domains: Fix asynchronous execution of *noirq() callbacks
    PM / Domains: Correct comment in irq_safe_dev_in_no_sleep_domain()
    PM / Domains: Rename functions in genpd for power on/off

    Rafael J. Wysocki
     
  • * pm-cpuidle:
    CPU / PM: expose pm_qos_resume_latency for CPUs
    cpuidle/menu: add per CPU PM QoS resume latency consideration
    cpuidle/menu: stop seeking deeper idle if current state is deep enough
    ACPI / idle: small formatting fixes

    Rafael J. Wysocki
     
  • * pm-opp: (24 commits)
    PM / OPP: Expose _of_get_opp_desc_node as dev_pm_opp API
    PM / OPP: Make _find_opp_table_unlocked() static
    PM / OPP: Update Documentation to remove RCU specific bits
    PM / OPP: Simplify dev_pm_opp_get_max_volt_latency()
    PM / OPP: Simplify _opp_set_availability()
    PM / OPP: Move away from RCU locking
    PM / OPP: Take kref from _find_opp_table()
    PM / OPP: Update OPP users to put reference
    PM / OPP: Add 'struct kref' to struct dev_pm_opp
    PM / OPP: Use dev_pm_opp_get_opp_table() instead of _add_opp_table()
    PM / OPP: Take reference of the OPP table while adding/removing OPPs
    PM / OPP: Return opp_table from dev_pm_opp_set_*() routines
    PM / OPP: Add 'struct kref' to OPP table
    PM / OPP: Add per OPP table mutex
    PM / OPP: Split out part of _add_opp_table() and _remove_opp_table()
    PM / OPP: Don't expose srcu_head to register notifiers
    PM / OPP: Rename dev_pm_opp_get_suspend_opp() and return OPP rate
    PM / OPP: Don't allocate OPP table from _opp_allocate()
    PM / OPP: Rename and split _dev_pm_opp_remove_table()
    PM / OPP: Add light weight _opp_free() routine
    ...

    Rafael J. Wysocki
     

18 Feb, 2017

1 commit

  • Since commit 2d984ad132a8 (PM / QoS: Introcuce latency tolerance device
    PM QoS type) we reassign "c" to point at qos->latency_tolerance before
    freeing c->notifiers, but the notifiers field of latency_tolerance is
    never used.

    Restore the original behaviour of freeing the notifiers pointer on
    qos->resume_latency, which is used, and fix the following kmemleak
    warning.

    unreferenced object 0xed9dba00 (size 64):
    comm "kworker/0:1", pid 36, jiffies 4294670128 (age 15202.983s)
    hex dump (first 32 bytes):
    00 00 00 00 04 ba 9d ed 04 ba 9d ed 00 00 00 00 ................
    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
    backtrace:
    [] kmemleak_alloc+0x74/0xb8
    [] kmem_cache_alloc_trace+0x170/0x25c
    [] dev_pm_qos_constraints_allocate+0x3c/0xe4
    [] __dev_pm_qos_add_request+0x84/0x1a0
    [] dev_pm_qos_add_request+0x3c/0x54
    [] usb_hub_create_port_device+0x110/0x2b8
    [] hub_probe+0xadc/0xc80
    [] usb_probe_interface+0x1b4/0x260
    [] driver_probe_device+0x198/0x40c
    [] __device_attach_driver+0x8c/0x98
    [] bus_for_each_drv+0x8c/0x9c
    [] __device_attach+0x98/0x138
    [] device_initial_probe+0x14/0x18
    [] bus_probe_device+0x30/0x88
    [] device_add+0x430/0x554
    [] usb_set_configuration+0x660/0x6fc

    Fixes: 2d984ad132a8 (PM / QoS: Introcuce latency tolerance device PM QoS type)
    Signed-off-by: John Keeping
    Signed-off-by: Rafael J. Wysocki

    John Keeping
     

14 Feb, 2017

3 commits

  • There are two reasons for reporting wakeup event when dedicated wakeup
    IRQ is triggered:

    - wakeup events accounting, so proper statistical data will be
    displayed in sysfs and debugfs;

    - there are small window when System is entering suspend during which
    dedicated wakeup IRQ can be lost:

    dpm_suspend_noirq()
    |- device_wakeup_arm_wake_irqs()
    |- dev_pm_arm_wake_irq(X)
    |- IRQ is enabled and marked as wakeup source
    [1]...
    |- suspend_device_irqs()
    |- suspend_device_irq(X)
    |- irqd_set(X, IRQD_WAKEUP_ARMED);
    |- wakup IRQ armed

    The wakeup IRQ can be lost if it's triggered at point [1]
    and not armed yet.

    Hence, fix above cases by adding simple pm_wakeup_event() call in
    handle_threaded_wake_irq().

    Fixes: 4990d4fe327b (PM / Wakeirq: Add automated device wake IRQ handling)
    Signed-off-by: Grygorii Strashko
    Tested-by: Keerthy
    [ tony@atomide.com: added missing return to avoid warnings ]
    Tested-by: Tony Lindgren
    Signed-off-by: Tony Lindgren
    Signed-off-by: Rafael J. Wysocki

    Grygorii Strashko
     
  • Dedicated wakeirq is a one time event to wake-up the system from
    low-power state and then call pm_runtime_resume() on the device wired
    with the dedicated wakeirq.

    Sometimes dedicated wakeirqs can get deferred if they trigger after we
    call disable_irq_nosync() in dev_pm_disable_wake_irq(). This can happen
    if pm_runtime_get() is called around the same time a wakeirq fires.

    If an interrupt fires after disable_irq_nosync(), by default it will get
    tagged with IRQS_PENDING and will run later on when the interrupt is
    enabled again.

    Deferred wakeirqs usually just produce pointless wake-up events. But they
    can also cause suspend to fail if the deferred wakeirq fires during
    dpm_suspend_noirq() for example. So we really don't want to see the
    deferred wakeirqs triggering after the device has resumed.

    Let's fix the issue by setting IRQ_DISABLE_UNLAZY flag for the dedicated
    wakeirqs. The other option would be to implement irq_disable() in the
    dedicated wakeirq controller, but that's not a generic solution.

    For reference below is what happens with a IRQ_TYPE_EDGE_BOTH IRQ
    type wakeirq:

    - resume by dedicated IRQ (EDGE_FALLING)
    - suspend_enter()
    ....
    - arch_suspend_enable_irqs()
    |- dedicated IRQ armed and fired
    |- irq_pm_check_wakeup()
    |- disarm, disable IRQ and mark as IRQS_PENDING
    ....
    - dpm_resume_noirq()
    |- resume_device_irqs()
    |- __enable_irq()
    |- check_irq_resend()
    |- handle_threaded_wake_irq()
    |- dedicated IRQ processed
    |- device_wakeup_disarm_wake_irqs()
    |- disable_irq_wake()
    ....
    !-> dedicated IRQ (EDGE_RISING)
    -| handle_edge_irq()
    |- IRQ disabled: mask_ack_irq and mark as IRQS_PENDING
    ....
    - subsequent suspend
    ....
    |- dpm_suspend_noirq()
    |- device_wakeup_arm_wake_irqs()
    |- __enable_irq()
    |- check_irq_resend()
    (a) |- handle_threaded_wake_irq()
    |- pm_wakeup_event() --> abort suspend
    ....
    |- suspend_device_irqs()
    |- suspend_device_irq()
    |- dedicated IRQ armed
    ....
    (b) |- resend_irqs
    |- irq_pm_check_wakeup()
    |- IRQ armed -> abort suspend

    because of pending IRQ System suspend can be aborted at points
    (a)-not armed or (b)-armed.

    Fixes: 4990d4fe327b (PM / Wakeirq: Add automated device wake IRQ handling)
    Signed-off-by: Grygorii Strashko
    [ tony@atomide.com: added a comment, updated the description ]
    Tested-by: Tony Lindgren
    Signed-off-by: Tony Lindgren
    Signed-off-by: Rafael J. Wysocki

    Grygorii Strashko
     
  • We currently rely on runtime PM to enable dedicated wakeirq for suspend.
    This assumption fails in the following two cases:

    1. If the consumer driver does not have runtime PM implemented, the
    dedicated wakeirq never gets enabled for suspend

    2. If the consumer driver has runtime PM implemented, but does not idle
    in suspend

    Let's fix the issue by always enabling the dedicated wakeirq during
    suspend.

    Depends-on: bed570307ed7 (PM / wakeirq: Fix dedicated wakeirq for drivers not using autosuspend)
    Fixes: 4990d4fe327b (PM / Wakeirq: Add automated device wake IRQ handling)
    Reported-by: Keerthy
    Tested-by: Keerthy
    Signed-off-by: Grygorii Strashko
    [ tony@atomide.com: updated based on bed570307ed7, added description ]
    Tested-by: Tony Lindgren
    Signed-off-by: Tony Lindgren
    Signed-off-by: Rafael J. Wysocki

    Grygorii Strashko
     

10 Feb, 2017

2 commits


09 Feb, 2017

2 commits

  • …z/arm-platforms into irq/core

    Pull irqchip updates for 4.11 from Marc Zyngier

    - A number of gic-v3-its cleanups and fixes
    - A fix for the MIPS GIC
    - One new interrupt controller for the Cortina Gemini platform
    - Support for the Qualcomm interrupt combiner, together with
    its ACPI goodness

    Thomas Gleixner
     
  • As the PM core may invoke the *noirq() callbacks asynchronously, the
    current lock-less approach in genpd doesn't work. The consequence is that
    we may find concurrent operations racing to power on/off the PM domain.

    As of now, no immediate errors has been reported, but it's probably only a
    matter time. Therefor let's fix the problem now before this becomes a real
    issue, by deploying the locking scheme to the relevant functions.

    Reported-by: Brian Norris
    Signed-off-by: Ulf Hansson
    Tested-by: Geert Uytterhoeven
    Signed-off-by: Rafael J. Wysocki

    Ulf Hansson
     

08 Feb, 2017

1 commit


07 Feb, 2017

3 commits

  • Fixes the following sparse warning:

    drivers/base/power/opp/core.c:49:18: warning:
    symbol '_find_opp_table_unlocked' was not declared. Should it be static?

    Signed-off-by: Wei Yongjun
    Reviewed-by: Stephen Boyd
    Acked-by: Viresh Kumar
    Signed-off-by: Rafael J. Wysocki

    Wei Yongjun
     
  • When augmenting ACPI-enumerated devices with additional property data based
    on DMI info, a module has often several potential property sets, with only
    one being active on a given box. In order to save memory it should be
    possible to mark everything and __initdata or __initconst, execute DMI
    match early, and duplicate relevant properties. Then kernel will discard
    the rest of them.

    Signed-off-by: Dmitry Torokhov
    Signed-off-by: Rafael J. Wysocki

    Dmitry Torokhov
     
  • Data that is fed into property arrays should not be modified, so let's mark
    relevant pointers as const. This will allow us making source arrays as
    const/__initconst.

    Signed-off-by: Dmitry Torokhov
    Signed-off-by: Rafael J. Wysocki

    Dmitry Torokhov