Skip to content
  1. Feb 21, 2015
    • Rafael J. Wysocki's avatar
      Merge branches 'pnp', 'pm-cpuidle' and 'pm-cpufreq' · 3466b547
      Rafael J. Wysocki authored
      * pnp:
        PNP: Switch from __check_region() to __request_region()
      
      * pm-cpuidle:
        cpuidle: powernv: Avoid endianness conversions while parsing DT
        cpuidle: powernv: Read target_residency value of idle states from DT if available
      
      * pm-cpufreq:
        cpufreq: s3c: remove last use of resume_clocks callback
        cpufreq: s3c: remove incorrect __init annotations
      3466b547
    • Rafael J. Wysocki's avatar
      Merge branches 'acpi-ec', 'acpi-soc', 'acpi-video' and 'acpi-resources' · 9d0de5a6
      Rafael J. Wysocki authored
      * acpi-ec:
        ACPI / EC: Remove non-standard log emphasis
      
      * acpi-soc:
        ACPI / LPSS: Deassert resets for SPI host controllers on Braswell
        ACPI / LPSS: Always disable I2C host controllers
        Revert "ACPI / LPSS: Remove non-existing clock control from Intel Lynxpoint I2C"
      
      * acpi-video:
        ACPI / video: Disable native backlight on Samsung Series 9 laptops
      
      * acpi-resources:
        ACPI / resources: Change pr_info() to pr_debug() for debug information
      9d0de5a6
  2. Feb 20, 2015
  3. Feb 19, 2015
  4. Feb 18, 2015
    • Rafael J. Wysocki's avatar
      ACPI / resources: Change pr_info() to pr_debug() for debug information · 6a239af2
      Rafael J. Wysocki authored
      
      
      Annoying and noisy ACPI debug messages are printed with pr_info()
      after the recent ACPI resources handling rework.  Replace the
      pr_info() with pr_debug() to reduce to noise level.
      
      Reported-by: default avatarBorislav Petkov <bp@alien8.de>
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      6a239af2
    • Jens Reyer's avatar
      ACPI / video: Disable native backlight on Samsung Series 9 laptops · 3120d03c
      Jens Reyer authored
      Add video_disable_native_backlight quirk for SAMSUNG 900X3C/900X3D/
      900X3E/900X4C/900X4D laptops.
      
      The native intel backlight controls do not work correctly on SAMSUNG
      Series 9 (900X3C/900X3D/900X3E/900X4C/900X4D) laptops:
      One machine has an completely dimmed (= black) display after boot at the
      GDM login screen and brightness controls work only between 0 and 5%
      (= no effect).
      Another machine has the same brightness control issues if an external
      HDMI monitor is or gets connected, although the initial brightness is
      ok.
      After login to Gnome both machines always work fine.
      
      Tested on both machines.
      
      Link: https://bugs.freedesktop.org/show_bug.cgi?id=87286
      Link: https://bugs.debian.org/772440
      
      
      Signed-off-by: default avatarJens Reyer <jens.reyer@gmail.com>
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      3120d03c
    • Preeti U Murthy's avatar
      cpuidle: powernv: Read target_residency value of idle states from DT if available · 92c83ff5
      Preeti U Murthy authored
      
      
      The device tree now exposes the residency values for different idle states. Read
      these values instead of calculating residency from the latency values. The values
      exposed in the DT are validated for optimal power efficiency. However to maintain
      compatibility with the older firmware code which does not expose residency
      values, use default values as a fallback mechanism. While at it, use better
      APIs to parse the powermgmt device tree node.
      
      Signed-off-by: default avatarPreeti U Murthy <preeti@linux.vnet.ibm.com>
      Acked-by: default avatarStewart Smith <stewart@linux.vnet.ibm.com>
      Acked-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      92c83ff5
    • Linus Torvalds's avatar
      Merge tag 'suspend-to-idle-3.20-rc1' of... · 99fa0ad9
      Linus Torvalds authored
      Merge tag 'suspend-to-idle-3.20-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
      
      Pull suspend-to-idle updates from Rafael Wysocki:
       "Suspend-to-idle timer quiescing support for v3.20-rc1
      
        Until now suspend-to-idle has not been able to save much more energy
        than runtime PM because of timer interrupts that periodically bring
        CPUs out of idle while they are waiting for a wakeup interrupt.  Of
        course, the timer interrupts are not wakeup ones, so the handling of
        them can be deferred until a real wakeup interrupt happens, but at the
        same time we don't want to mass-expire timers at that point.
      
        The solution is to suspend the entire timekeeping when the last CPU is
        entering an idle state and resume it when the first CPU goes out of
        idle.  That has to be done with care, though, so as to avoid accessing
        suspended clocksources etc.  end we need extra support from idle
        drivers for that.
      
        This series of commits adds support for quiescing timers during
        suspend-to-idle and adds the requisite callbacks to intel_idle and the
        ACPI cpuidle driver"
      
      * tag 'suspend-to-idle-3.20-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
        ACPI / idle: Implement ->enter_freeze callback routine
        intel_idle: Add ->enter_freeze callbacks
        PM / sleep: Make it possible to quiesce timers during suspend-to-idle
        timekeeping: Make it safe to use the fast timekeeper while suspended
        timekeeping: Pass readout base to update_fast_timekeeper()
        PM / sleep: Re-implement suspend-to-idle handling
      99fa0ad9
    • Linus Torvalds's avatar
      Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security · 1d9e7140
      Linus Torvalds authored
      Pull security subsystem fixes from James Morris.
      
      * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security:
        Don't leak a key reference if request_key() tries to use a revoked keyring
        Added Little Endian support to vtpm module
        tpm, tpm_tis: fix TPM 2.0 probing
        tpm: fix suspend/resume paths for TPM 2.0
        Smack: secmark connections
      1d9e7140
    • Linus Torvalds's avatar
      Merge tag '64bit-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc · cc4f9c2a
      Linus Torvalds authored
      Pull ARM SoC 64-bit changes and additions from Olof Johansson:
       "The 64-bit set of updates this release cycle adds support for three
        new platforms:
      
         - Samsunc Exynos 7
         - Freescale LS2085a
         - Mediatek MT8173
      
        For all these, the changes mostly consititude additions of DT
        contents, but also some Kconfig entries to allow dependency/selection
        of drivers per-platform, etc"
      
      * tag '64bit-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc:
        arm64: Kconfig: clean up two no-op Kconfig options from CONFIG_ARCH_TEGRA*
        arm64: Fix sort of platform Kconfig entries
        arm64: Add support for FSL's LS2085A SoC in Kconfig and defconfig
        arm64: Add DTS support for FSL's LS2085A SoC
        arm64: mediatek: Add MT8173 SoC Kconfig and defconfig
        arm64: dts: Add mediatek MT8173 SoC and evaluation board dts and Makefile
        Document: DT: Add bindings for mediatek MT8173 SoC Platform
        arm64: Add Tegra132 support
        arm64: Enable ARMv8 based exynos7 SoC support
        arm64: dts: Add nodes for mmc, i2c, rtc, watchdog, adc on exynos7
        arm64: dts: Add PMU DT node for exynos7 SoC
        arm64: dts: Add initial pinctrl support to exynos7
        arm64: dts: Add initial device tree support for exynos7
      cc4f9c2a
    • Linus Torvalds's avatar
      Merge tag 'defconfig-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc · 03a40e29
      Linus Torvalds authored
      Pull ARM SoC defconfig changes from Olof Johansson:
       "Most of these changes are to enable new drivers that have been merged,
        or various additions to make defconfigs more useful.  There's also a
        set of patches trimming down omap2plus kernel size a bit since it is
        quite large"
      
      * tag 'defconfig-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (39 commits)
        ARM: config: add DEVTMPFS option by default to keystone config
        ARM: multi_v7_defconfig: Enable Exynos5420 Multi-Cluster PM support
        ARM: shmobile: Select CONFIG_REGULATOR in defconfig once again
        ARM: exynos_defconfig: Enable CONFIG_FHANDLE
        ARM: exynos_defconfig: Enable PMIC and MUIC drivers for Gears and Trats2
        ARM: exynos_defconfig: Enable CONFIG_LOCKUP_DETECTOR
        ARM: config: enable ARCH_HIP01
        ARM: omap2plus_defconfig: Enable OHCI & EHCI HCD support
        ARM: omap2plus_defconfig: Enable misc options for BeagleBoard-X15 platform
        ARM: imx_v6_v7_defconfig: enable more USB functions
        ARM: imx_v6_v7_defconfig: Select CONFIG_FB_MXS
        ARM: omap2plus_defconfig: Enable pcf857x
        ARM: omap2plus_defconfig: Add NOR flash support
        ARM: omap2plus_defconfig: Enable support for davinci_emac
        ARM: multi_v7_defconfig: Enable MiPHY28lp - ST's Generic (SATA, PCIe & USB3) PHY
        ARM: efm32: update defconfig
        ARM: at91: sama5: enable atmel-isi and ov2640 in defconfig
        ARM: multi_v7_defconfig: Enable Hip01 platform
        ARM: config: multi_v7: Update it for Keystone defconfig
        ARM: shmobile: Enable kzm9g board in multiplatform defconfig
        ...
      03a40e29
    • Linus Torvalds's avatar
      Merge tag 'drivers-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc · 18656782
      Linus Torvalds authored
      Pull ARM SoC driver updates from Olof Johansson:
       "These are changes for drivers that are intimately tied to some SoC and
        for some reason could not get merged through the respective subsystem
        maintainer tree.
      
        This time around, much of this is for at91, with the bulk of it being
        syscon and udc drivers.
      
        Also, there's:
         - coupled cpuidle support for Samsung Exynos4210
         - Renesas 73A0 common-clk work
         - of/platform changes to tear down DMA mappings on device destruction
         - a few updates to the TI Keystone knav code"
      
      * tag 'drivers-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (26 commits)
        cpuidle: exynos: add coupled cpuidle support for exynos4210
        ARM: EXYNOS: apply S5P_CENTRAL_SEQ_OPTION fix only when necessary
        soc: ti: knav_qmss_queue: change knav_range_setup_acc_irq to static
        soc: ti: knav_qmss_queue: makefile tweak to build as dynamic module
        pcmcia: at91_cf: depend on !ARCH_MULTIPLATFORM
        soc: ti: knav_qmss_queue: export API calls for use by user driver
        of/platform: teardown DMA mappings on device destruction
        usb: gadget: at91_udc: Allocate udc instance
        usb: gadget: at91_udc: Update DT binding documentation
        usb: gadget: at91_udc: Rework for multi-platform kernel support
        usb: gadget: at91_udc: Simplify probe and remove functions
        usb: gadget: at91_udc: Remove non-DT handling code
        usb: gadget: at91_udc: Document DT clocks and clock-names property
        usb: gadget: at91_udc: Drop uclk clock
        usb: gadget: at91_udc: Fix clock names
        mfd: syscon: Add Atmel SMC binding doc
        mfd: syscon: Add atmel-smc registers definition
        mfd: syscon: Add Atmel Matrix bus DT binding documentation
        mfd: syscon: Add atmel-matrix registers definition
        clk: shmobile: fix sparse NULL pointer warning
        ...
      18656782
    • Linus Torvalds's avatar
      Merge tag 'dt-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc · a233bb74
      Linus Torvalds authored
      Pull ARM SoC DT updates from Olof Johansson:
       "DT changes continue to be the bulk of our merge window contents.
      
        We continue to have a large set of changes across the board as new
        platforms and drivers are added.
      
        Some of the new platforms are:
         - Alphascale ASM9260
         - Marvell Armada 388
         - CSR Atlas7
         - TI Davinci DM816x
         - Hisilicon HiP01
         - ST STiH418
      
        There have also been some sweeping changes, including relicensing of
        DTS contents from GPL to GPLv2+/X11 so that the same files can be
        reused in other non-GPL projects more easily.  There's also been
        changes to the DT Makefile to make it a little less conflict-ridden
        and churny down the road"
      
      * tag 'dt-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (330 commits)
        ARM: dts: Add PPMU node for exynos4412-trats2
        ARM: dts: Add PPMU node for exynos3250-monk and exynos3250-rinato
        ARM: dts: Add PPMU dt node for exynos4 and exynos4210
        ARM: dts: Add PPMU dt node for exynos3250
        ARM: dts: add mipi dsi device node for exynos4415
        ARM: dts: add fimd device node for exynos4415
        ARM: dts: Add syscon phandle to the video-phy node for Exynos4
        ARM: dts: Add sound nodes for exynos4412-trats2
        ARM: dts: Fix CLK_MOUT_CAMn parent clocks assignment for exynos4412-trats2
        ARM: dts: Fix CLK_UART_ISP_SCLK clock assignment in exynos4x12.dtsi
        ARM: dts: Add max77693 charger node for exynos4412-trats2
        ARM: dts: Switch max77686 regulators to GPIO control for exynos4412-trats2
        ARM: dts: Add suspend configuration for max77686 regulators for exynos4412-trats2
        ARM: dts: Add Maxim 77693 fuel gauge node for exynos4412-trats2
        ARM: dts: am57xx-beagle-x15: Fix USB2 mode
        ARM: dts: am57xx-beagle-x15: Add extcon nodes for USB
        ARM: dts: dra72-evm: Add extcon nodes for USB
        ARM: dts: dra7-evm: Add extcon nodes for USB
        ARM: dts: rockchip: move the hdmi ddc-i2c-bus property to the actual boards
        ARM: dts: rockchip: enable vops and hdmi output on rk3288-firefly and -evb
        ...
      a233bb74
    • Jarkko Nikula's avatar
      Revert "ACPI / LPSS: Remove non-existing clock control from Intel Lynxpoint I2C" · f8f87c03
      Jarkko Nikula authored
      Revert commit b893e80e
      
       ("ACPI / LPSS: Remove non-existing clock control
      from Intel Lynxpoint I2C") because it causes touchpad to not load on Dell
      XPS13.
      
      Regression is a clear indication that not only some early prototype version
      of Lynxpoint I2C but also newer versions can be doing clock gating even
      documentation does not state it.
      
      Therefore it is best to revert since this clock gating haven't caused known
      issues on those Lynxpoint version which don't do clock gating.
      
      Reported-by-and-tested-by: default avatarChris Rorvick <chris@rorvick.com>
      Signed-off-by: default avatarJarkko Nikula <jarkko.nikula@linux.intel.com>
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      f8f87c03
    • Scot Doyle's avatar
      ACPI / EC: Remove non-standard log emphasis · 92e4b1bc
      Scot Doyle authored
      Remove unusual pr_info() visual emphasis introduced in ad479e7f
      
      
      "ACPI / EC: Introduce STARTED/STOPPED flags to replace BLOCKED flag".
      
      Signed-off-by: default avatarScot Doyle <lkml14@scotdoyle.com>
      [ rjw: Change pr_info() to pr_debug() too in those places. ]
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      92e4b1bc
    • Linus Torvalds's avatar
      Merge tag 'soc-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc · 878ba61a
      Linus Torvalds authored
      Pull ARM SoC platform changes from Olof Johansson:
       "New and updated SoC support.  Also included are some cleanups where
        the platform maintainers hadn't separated cleanups from new developent
        in separate branches.
      
        Some of the larger things worth pointing out:
      
         - A large set of changes from Alexandre Belloni and Nicolas Ferre
           preparing at91 platforms for multiplatform and cleaning up quite a
           bit in the process.
      
         - Removal of CSR's "Marco" SoC platform that never made it out to the
           market.  We love seeing these since it means the vendor published
           support before product was out, which is exactly what we want!
      
        New platforms this release are:
      
         - Conexant Digicolor (CX92755 SoC)
         - Hisilicon HiP01 SoC
         - CSR/sirf Atlas7 SoC
         - ST STiH418 SoC
         - Common code changes for Nvidia Tegra132 (64-bit SoC)
      
        We're seeing more and more platforms having a harder time labelling
        changes as cleanups vs new development -- which is a good sign that
        we've come quite far on the cleanup effort.  So over time we might
        start combining the cleanup and new-development branches more"
      
      * tag 'soc-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (124 commits)
        ARM: at91/trivial: unify functions and machine names
        ARM: at91: remove at91_dt_initialize and machine init_early()
        ARM: at91: change board files into SoC files
        ARM: at91: remove at91_boot_soc
        ARM: at91: move alternative initial mapping to board-dt-sama5.c
        ARM: at91: merge all SOC_AT91SAM9xxx
        ARM: at91: at91rm9200: set idle and restart from rm9200_dt_device_init()
        ARM: digicolor: select syscon and timer
        ARM: zynq: Simplify SLCR initialization
        ARM: zynq: PM: Fixed simple typo.
        ARM: zynq: Setup default gpio number for Xilinx Zynq
        ARM: digicolor: add low level debug support
        ARM: initial support for Conexant Digicolor CX92755 SoC
        ARM: OMAP2+: Add dm816x hwmod support
        ARM: OMAP2+: Add clock domain support for dm816x
        ARM: OMAP2+: Add board-generic.c entry for ti81xx
        ARM: at91: pm: remove warning to remove SOC_AT91SAM9263 usage
        ARM: at91: remove unused mach/system_rev.h
        ARM: at91: stop using HAVE_AT91_DBGUx
        ARM: at91: fix ordering of SRAM and PM initialization
        ...
      878ba61a
    • Linus Torvalds's avatar
      Merge tag 'cleanup-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc · ea7531ac
      Linus Torvalds authored
      Pull ARM SoC cleanups from Olof Johansson:
       "This is a good healthy set of various code removals.  Total net delta
        is 8100 lines removed.
      
        Among the larger cleanups are:
      
         - Removal of old Samsung S3C DMA infrastructure by Arnd
         - Removal of the non-DT version of the 'lager' board by Magnus Damm
         - General stale code removal on OMAP and Davinci by Rickard Strandqvist
         - Removal of non-DT support on am3517 platforms by Tony Lindgren
      
        ... plus several other cleanups of various platforms across the board"
      
      * tag 'cleanup-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (47 commits)
        ARM: sirf: drop redundant function and marco declaration
        arm: omap: specify PMUs are for ARMv7 CPUs
        arm: shmobile: specify PMUs are for ARMv7 CPUs
        arm: iop: specify PMUs are for XScale CPUs
        arm: pxa: specify PMUs are for XScale CPUs
        arm: realview: specify PMU types
        ARM: SAMSUNG: remove unused DMA infrastructure
        ARM: OMAP3: Add back Kconfig option MACH_OMAP3517EVM for ASoC
        ARM: davinci: Remove CDCE949 driver
        ARM: at91: remove useless at91rm9200_set_type()
        ARM: at91: remove useless at91rm9200_dt_initialize()
        ARM: at91: move debug-macro.S into the common space
        ARM: at91: remove useless at91_sysirq_mask_rtx
        ARM: at91: remove useless config MACH_AT91SAM9_DT
        ARM: at91: remove useless config MACH_AT91RM9200_DT
        ARM: at91: remove unused mach/memory.h
        ARM: at91: remove useless header file includes
        ARM: at91: remove unneeded header file
        rtc: at91/Kconfig: remove useless options
        ARM: at91/Documentation: add a README for Atmel SoCs
        ...
      ea7531ac
    • Linus Torvalds's avatar
      Merge tag 'fixes-non-critical-for-linus' of... · 4025fa97
      Linus Torvalds authored
      Merge tag 'fixes-non-critical-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
      
      Pull ARM SoC non-critical fixes from Olof Johansson:
       "Here's a small collection of fixes accrued during the last release
        that weren't considered severe enough to merge during the -rc series.
      
        A few of these are around resurrecting TI81xx support that's been
        broken for quite a while, the rest are smaller fixes -- most for PXA
        but a few across the board.
      
        There are also some updates to MAINTAINERS here, in particular for
        Broadcom platforms"
      
      * tag 'fixes-non-critical-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (23 commits)
        MAINTAINERS: fix git repositories for Broadcom SoCs
        ARM: pxa: fix broken isa interrupts for zeus and viper
        ARM: DRA7: hwmod: Fix boot crash with DEBUG_LL enabled on UART3
        ARM: OMAP: DRA7: hwmod: Make gpmc software supervised as the smart idle is broken
        ARM: AM43xx: hwmod: set DSS submodule parent hwmods
        ARM: OMAP2+: hwmod: print error if wait_target_ready() failed
        MAINTAINERS: add maintainer for OMAP hwmod data
        ARM: OMAP2+: Disable omap3 PM init for ti81xx
        ARM: OMAP2+: Fix reboot for 81xx
        ARM: OMAP2+: Fix dm814 and dm816 for clocks and timer init
        ARM: OMAP2+: Fix ti81xx class type
        ARM: OMAP2+: Fix ti81xx devtype
        ARM: OMAP2+: Fix error handling for omap2_clk_enable_init_clocks
        MAINTAINERS: add a git entry for BMIPS-based BCM7xxx SoCs
        MAINTAINERS: add a git entry for BCM7xxx ARM-based SoCs
        MAINTAINERS: update Broadcom Cygnus SoC git tree
        MAINTAINERS: move BCM63xx ARM-based SoCs git tree
        hx4700: regulator: declare full constraints
        ARM: pxa: add regulator_has_full_constraints to spitz board file
        ARM: pxa: add regulator_has_full_constraints to poodle board file
        ...
      4025fa97
    • Linus Torvalds's avatar
      Merge branch 'akpm' (patches from Andrew) · c397f8fa
      Linus Torvalds authored
      Merge fifth set of updates from Andrew Morton:
      
       - A few things which were awaiting merges from linux-next:
           - rtc
           - ocfs2
           - misc others
      
       - Willy's "dax" feature: direct fs access to memory (mainly NV-DIMMs)
         which isn't backed by pageframes.
      
      * emailed patches from Andrew Morton <akpm@linux-foundation.org>: (37 commits)
        rtc: add driver for DS1685 family of real time clocks
        MAINTAINERS: add entry for Maxim PMICs on Samsung boards
        lib/Kconfig: use bool instead of boolean
        powerpc: drop _PAGE_FILE and pte_file()-related helpers
        ocfs2: set append dio as a ro compat feature
        ocfs2: wait for orphan recovery first once append O_DIRECT write crash
        ocfs2: complete the rest request through buffer io
        ocfs2: do not fallback to buffer I/O write if appending
        ocfs2: allocate blocks in ocfs2_direct_IO_get_blocks
        ocfs2: implement ocfs2_direct_IO_write
        ocfs2: add orphan recovery types in ocfs2_recover_orphans
        ocfs2: add functions to add and remove inode in orphan dir
        ocfs2: prepare some interfaces used in append direct io
        MAINTAINERS: fix spelling mistake & remove trailing WS
        dax: does not work correctly with virtual aliasing caches
        brd: rename XIP to DAX
        ext4: add DAX functionality
        dax: add dax_zero_page_range
        ext2: get rid of most mentions of XIP in ext2
        ext2: remove ext2_aops_xip
        ...
      c397f8fa
  5. Feb 17, 2015