summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-11-25MLK-13369-1: ASoC: fsl: fix the hard code gpr address in machine driverShengjiu Wang
There is hard code for gpr address in machine driver, imx-wm8960 and imx-wm8958, when the sai interface changed to sai1 or sai3, there will be issue, so remove the hard code, use the property from the device tree. Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com>
2019-11-25MLK-12907: ASoC: imx_mqs: mqs can't be recorderShengjiu Wang
mqs can't be used as recorder, the capture property need to be zero. Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com>
2019-11-25MLK-12787-1: ASoC: imx-wm8962: Add codec-master propertyShengjiu Wang
Add codec-master property for imx-wm8962. If set this in device tree, the codec will work as master, if don't set it, the cpu dai will work as master. Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com>
2019-11-25MLK-12745-2: ASoC: fsl_esai: remove the channel swap workaround for imx6ull ↵Dong Aisheng
(part 2) In imx6ull, the esai errata ERR008000 for imx6q/dl is fixed, so remove the workaround from imx6ull. Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com> [ Aisheng: split ESAI DAI changes ] Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
2019-11-25MLK-12745-1: ASoC: imx-cs42888: add codec master mode supportShengjiu Wang
Add codec master mode support, the default is slave mode. Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com>
2019-11-25MLK-12464-1: ASoC: fsl: imx-wm8960: Fix no clock after suspend/resume randomlyShengjiu Wang
After suspend and resume, the wm8960 codec will change the state from BIAS_OFF to BIAS_ON, in this time, the hw_free is called, the PLL will be diabled, and next instance is started in rapid sequence, hw_params is called But PLL is not enabled, because the bias state is not BIAS_ON. As PLL is disabled in BIAS_ON->BIAS_STANDBY, so don't need to disable pll in hw_free of machine driver. Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com>
2019-11-25MLK-12244 ASoC: fsl: Set the sound card owner fieldZidan Wang
When load sound card, the pulseaudio will using the sound card to playback and record. It may be cause a kernel crash when the sound card is unloaded while the playback/record is active After setting the sound card owner field, when pulseaudio is running, the sound card module ref-count will not be 0 and the sound card will not be unloaded. So you should stop the pulseaudio when you want to unload the sound card. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> [ Aisheng: hdmi change merged into hdmi branch ] Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
2019-11-25MLK-12165: ASoC: fsl: imx-cs42888: remove 32k and 64k supportShengjiu Wang
Revert "MLK-11623 ASoC: imx-cs42888: add 32k and 64k sample rate support" This reverts commit 314a01f40599134086480ef3c5e89a54aeedbf1f. In Async mode, record and playback use different samplerate, one is 32k, another is 48kHz, there will be issue "unsupported sysclk ratio". example case is arecord -Dhw:0,1 -f S16_LE -r 32000 -c 2 | aplay -f S16_LE -r 32000 -c 2 Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com>
2019-11-25MLK-12057 ASoC: imx-wm8960: add headphone/micphone/headset jack supportZidan Wang
Add headphone/micphone/headset jack support for different board. There are headphone detect gpio and microphone detect gpio which can be configured from device tree. If headphone and microphone using the same gpio for jack detect, it suppose to be a headset and will register a headphone jack for it. If headphone and microphone using different gpio for jack detect, it suppose not to be a headset, and will register headphone jack and microphone jack respectively. Is't not appropriate to set the adc data output in machine driver. It will not be compatibly when we change hardware connection. wm8960 codec driver has added "ADC Data Output Select" kcontrol, so that we can set the ADC data output from user space. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> (cherry picked from commit 92f65b4bee51fabdfa3a3c191f511c2ec7cb18a1)
2019-11-25MLK-12043: ASoC: fsl: imx-cs42888: Add return value checkShengjiu Wang
Report by coverity (CID 18428). The return value need be checked for snd_soc_dai_set_sysclk(). Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com>
2019-11-25MLK-11915-05 ASoC: imx-wm8958: init codec_np to avoid wild pointerZidan Wang
init codec_np to avoid wild pointer. Reported by Coverity. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> (cherry picked from commit 76665930654867cf38a86ba747a9f8a5bf2665e2)
2019-11-25MLK-11915-04 ASoC: imx-cs42888: init asrc_np to avoid wild pointer and check ↵Zidan Wang
return value of set_fmt() init asrc_np to avoid wild pointer and check return value of set_fmt(). Reported by Coverity. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> (cherry picked from commit 4ccc87a93e180e09b6494fd6c6d81b07dc054e9b)
2019-11-25MLK-11915-03 ASoC: imx-sii902x: init sii902x_np to avoid wild pointerZidan Wang
init sii902x_np to avoid wild pointer. Reported by Coverity. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> (cherry picked from commit 780e27683c38f785ea7f7e07e83b00ffd3c22d78)
2019-11-25MLK-11915-02 ASoC: imx-wm8962: init codec_np to avoid wild pointerZidan Wang
init codec_np to avoid wild pointer. Reported by Coverity. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> (cherry picked from commit 8e27b90c9adf5033038a40e0b61a7ffe4c971290)
2019-11-25MLK-11915-01 ASoC: imx-wm8960: check return value and init codec_np to avoid ↵Zidan Wang
wild pointer check return value for set_fmt and set_sysclk function, and init codec_np to avoid wild pointer. Reported by coverity. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> (cherry picked from commit 68021ab9ada4a7f3037993a3887453e12271d4ed)
2019-11-25MLK-11623 ASoC: imx-cs42888: add 32k and 64k sample rate supportZidan Wang
When codec sysclk is 24576000, the sample rate ratio can be 128, 192, 256, 384, 512, 768, 1024. So 32k, 48k, 64k, 96k, 192k can be support. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> (cherry picked from commit b436254cd55dc0d2ebb6d2ca7ce5f58520ea5dbc)
2019-11-25MLK-10713-2 ASoC: imx-sii902x: Add 96k and 192k sample rate supportZidan Wang
Add 96k and 192k sample rate support for hdmi audio. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> (cherry picked from commit fa94b89ab94ce78800d112d0a013d0c0901d9b78)
2019-11-25MLK-10611-2 ASoC: imx-sii902x: forbid using SAI when SAI is being used by ↵Zidan Wang
other device imx7d-sdb board using one SAI for wm8960 and sii902x hdmi audio, wm8960 using SAI as slave mode and sii902x hdmi audio using SAI as master mode, so SAI can't be used at the same time. Forbid palyback(capture) when SAI is being used capture(playback) by other device. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> (cherry picked from commit bac15c28c3b8a57fbe04ea80b8fb5eb47a0211f1)
2019-11-25MLK-10518-1 ASoC: imx-sii902x: add machine driver for sii902x hdmi audioZidan Wang
Add machine driver for sii902x hdmi audio. Restricting by SAI master clock, the hdmi audio just support 16bit 24bit sample width and 32k 48k sample rate. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> (cherry picked from commit 8dc359b46c81105efcd13007325d9cadc9a6214d)
2019-11-25MLK-11259-2: ASoC: fsl: enable ASRC p2p for ssi->wm8962 (part1)Shengjiu Wang
Enable ASRC p2p for ssi->wm8962, base on the new p2p script, which support to select dualfifo for source/destination device. Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com> [ Aisheng: split ASRC changes ] Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
2019-11-25MLK-11479-11 ASoC: imx-wm8962: Add non-SSI cpu dai support (part 1)Nicolin Chen
cherry-pick below patch from v3.14.y: ENGR00307635-5 ASoC: imx-wm8962: Add non-SSI cpu dai support The current imx-wm8962 machine driver is designed for SSI as CPU DAI only while as its name we should make the driver more generic to any other CPU DAI on i.MX serires -- ESAI, SAI for example. So this patch makes the driver more general so as to support those non-SSI cases. Acked-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <Guangyu.Chen@freescale.com> (cherry picked from commit b6fca438dde1b4c0bbdee31729871d601f287dc9) [ Aisheng: split dts changes ] Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
2019-11-25MLK-11479-10 ASoC: fsl: pop noise with wm8962Shengjiu Wang
cherry-pick below patch from v3.14.y: ENGR00312217-1 ASoC: fsl: pop noise with wm8962 The reason of pop noise is that we change the sysclk in hw_free, which is for another wm8962 issue. So in currently the pop noise can't be resolved with no confliction. So for Android, because the samplerate is fixed. we can use other workaround for this issue: change the sysclk in the set_bias(). Signed-off-by: Shengjiu Wang <b02247@freescale.com> (cherry picked from commit 84babc7fa0a56f6620f8b04a86baece620297dda)
2019-11-25MLK-11479-09 pulseaudio5.0 mute Headphone volume when Headphone pluggedShengjiu Wang
cherry-pick below patch from v3.14.y: ENGR00306857 pulseaudio5.0 mute Headphone volume when Headphone plugged Pulseaudio will detect the Headphone Jack, then swith to Headphone. So register new Jack for Headphone, the iface=CARD. Signed-off-by: Shengjiu Wang <b02247@freescale.com> (cherry picked from commit 6a715373c43f16e48883061049e67919281878d1)
2019-11-25MLK-11479-06 ASoC: fsl: Add WM8962 jack detecting supportNicolin Chen
cherry-pick below patch from v3.14.y: ENGR00277715-3 ASoC: fsl: Add WM8962 jack detecting support There're two GPIOs connected to the headphone jack and microphone jack, thus add the states detection. Reviewed-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <b42378@freescale.com>
2019-11-25MLK-11479-05 ASoC: fsl: Fix set-mute-failed issue after WM8962 captureNicolin Chen
cherry-pick below patch from v3.14.y: ENGR00277471 ASoC: fsl: Fix set-mute-failed issue after WM8962 capture We only need to mute WM8962 after playback, so add direction check before doing mute. And a mute failure would cause hw_free() abruptly return after it, which might drop the essential procedure code for FLL controlling. Thus put mute before FLL controlling code and drop its return check. Acked-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <b42378@freescale.com> (cherry picked from commit 3133b6cfb31b202805d31d449bfa70383e5e1c75)
2019-11-25MLK-11479-04 ASoC: imx-wm8962: Set MCLK source clock to 0Hz in hw_free()Nicolin Chen
cherry-pick below patch from v3.14.y: ENGR00274386-2 ASoC: imx-wm8962: Set MCLK source clock to 0Hz in hw_free() When DAPM closed WM8962 after playback, its driver would prompt 'wm8962 0-001a: Unsupported sysclk ratio 500' due to the invalid divisor calculated by WM8962 codec driver. To fix it, we can work around by setting its MCLK source to 0Hz, so the codec driver would never get an invalid divisor any more. Since hw_params() would re-set the MCLK source, no need to worry about any side-effect. Acked-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <b42378@freescale.com> (cherry picked from commit a935f7680ac3958ce72cf7413cac278c0683d4c0)
2019-11-25MLK-11479-01 ASoC: fsl: Use hw_params() and hw_free() to set FLLNicolin Chen
We followed community way by using set_bias() to set FLL of WM8962. But this can't meet our requirement: aplay -Dhw: 16khz.wav 24khz.wav. Thus use hw_params() and hw_free() instead. Acked-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <b42378@freescale.com>
2019-11-25Revert "ASoC: imx-wm8962: Remove global variables"Leonard Crestez
This reverts commit 8f7206d69ab8c8fb8620566338d54c4b9b80477a It is broken and breaks rebasing of imx_4.9.y wm8962 code See: http://mailman.alsa-project.org/pipermail/alsa-devel/2018-February/132595.html Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
2019-11-25MLK-11435 ASoC: fsl_mqs: add snd_soc_pm_ops for mqs machine driverZidan Wang
add snd_soc_pm_ops for mqs machine driver to make the trigger suspend/resume be called in suspend/resume. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> (cherry picked from commit 7887d4d9ab461f8d1d67f62c6cbc032e082193c2)
2019-11-25MLK-10055-1: ASoC: imx-cs42888: when codec probe failed, alsa return RETRY ↵Shengjiu Wang
error. If there is no codec device, the machine driver will not register the card. then alsa will not return RETRY error. update the error handling for machine driver. Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com> (cherry picked from commit 01ffd8e5e828d20214a196e64b981c9fd94c913e)
2019-11-25MLK-11429-21: ASoC: imx-cs42888: port cs42888 machine driver from imx_3.10.yShengjiu Wang
cherry-pick below patch from imx_3.14.y ENGR00330403-1: ASoC: imx-cs42888: port cs42888 machine driver from imx_3.10.y Port the cs42888 machine driver from imx_3.10.y and do update according to new esai driver and asrc driver. Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com> (cherry picked from commit 7ed3aac83630a38eb397ed92f815a28e07198748)
2019-11-25MLK-11053: ASoC: imx_mqs: Remove 96k and 192k support for mqsShengjiu Wang
If the mclk is 24.576MHz, mqs can't support 96k and 192kHz, because the we can't get a proper clock divider for mqs. Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com>
2019-11-25MLK-10775-2: ASoC: imx-mqs: add asrc p2p support in sai->mqsShengjiu Wang
add asrc p2p support in sai->mqs Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com>
2019-11-25MLK-10108-2: ASoC: imx-mqs: set tdm slot in hw_params() for sai master modeZidan Wang
Set tdm slot in hw_params() for sai master mode. Signed-off-by: Zidan Wang <zidan.wang@freescale.com>
2019-11-25MLK-9723-5: ASoC: imx-mqs: add mqs machine driverShengjiu Wang
Implement machine driver for mqs, which use the sai as cpu dai. sai work on master mode. Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com> (cherry picked from commit cac9eb41debc6444d753dc936cdf76874260b9e4)
2019-11-25MLK-11369-4 ASoC: imx-wm8958: port wm8958 machine driver from imx_3.14.yZidan Wang
port wm8958 machine driver from imx_3.14.y. Signed-off-by: Zidan Wang <zidan.wang@freescale.com> Fix build for DRIVER_ATTR removal during 4.14 rebase Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
2019-11-25MLK-11369-1 ASoC: imx-wm8960: port wm8960 machine driver from imx_3.14.y branchZidan Wang
port wm8960 machine driver from imx_3.14.y branch Signed-off-by: Zidan Wang <zidan.wang@freescale.com> Fix build for DRIVER_ATTR removal during 4.14 rebase Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
2019-11-25Revert "ASoC: imx-wm8962: Remove machine driver"Shengjiu Wang
This reverts commit 790d631dcfec6b073b04bb6809bce4c09baf198a.
2019-11-25imx busfreq: Add API header fileLeonard Crestez
Add sufficient enough definitions so that drivers which call request_bus_freq and release_bus_freq can compile even if CONFIG_HAVE_IMX_BUSFREQ is missing. Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
2019-11-24Linux 5.4Linus Torvalds
2019-11-24Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsLinus Torvalds
Pull cramfs fix from Al Viro: "Regression fix, fallen through the cracks" * 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: cramfs: fix usage on non-MTD device
2019-11-23cramfs: fix usage on non-MTD deviceMaxime Bizon
When both CONFIG_CRAMFS_MTD and CONFIG_CRAMFS_BLOCKDEV are enabled, if we fail to mount on MTD, we don't try on block device. Note: this relies upon cramfs_mtd_fill_super() leaving no side effects on fc state in case of failure; in general, failing get_tree_...() does *not* mean "fine to try again"; e.g. parsed options might've been consumed by fill_super callback and freed on failure. Fixes: 74f78fc5ef43 ("vfs: Convert cramfs to use the new mount API") Signed-off-by: Maxime Bizon <mbizon@freebox.fr> Signed-off-by: Nicolas Pitre <nico@fluxnic.net> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
2019-11-23Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhostLinus Torvalds
Pull last minute virtio bugfixes from Michael Tsirkin: "Minor bugfixes all over the place" * tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost: virtio_balloon: fix shrinker count virtio_balloon: fix shrinker scan number of pages virtio_console: allocate inbufs in add_port() only if it is needed virtio_ring: fix return code on DMA mapping fails
2019-11-22Merge branch 'for-linus' of ↵Linus Torvalds
git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input Pull input fix from Dmitry Torokhov: "Just a single revert as RMI mode should not have been enabled for this model [yet?]" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: Revert "Input: synaptics - enable RMI mode for X1 Extreme 2nd Generation"
2019-11-22Revert "Input: synaptics - enable RMI mode for X1 Extreme 2nd Generation"Lyude Paul
This reverts commit 68b9c5066e39af41d3448abfc887c77ce22dd64d. Ugh, I really dropped the ball on this one :\. So as it turns out RMI4 works perfectly fine on the X1 Extreme Gen 2 except for one thing I didn't notice because I usually use the trackpoint: clicking with the touchpad. Somehow this is broken, in fact we don't even seem to indicate BTN_LEFT as a valid event type for the RMI4 touchpad. And, I don't even see any RMI4 events coming from the touchpad when I press down on it. This only seems to work for PS/2 mode. Since that means we have a regression, and PS/2 mode seems to work fine for the time being - revert this for now. We'll have to do a more thorough investigation on this. Signed-off-by: Lyude Paul <lyude@redhat.com> Link: https://lore.kernel.org/r/20191119234534.10725-1-lyude@redhat.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
2019-11-22Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netLinus Torvalds
Pull networking fixes from David Miller: 1) Validate tunnel options length in act_tunnel_key, from Xin Long. 2) Fix DMA sync bug in gve driver, from Adi Suresh. 3) TSO kills performance on some r8169 chips due to HW issues, disable by default in that case, from Corinna Vinschen. 4) Fix clock disable mismatch in fec driver, from Chubong Yuan. 5) Fix interrupt status bits define in hns3 driver, from Huazhong Tan. 6) Fix workqueue deadlocks in qeth driver, from Julian Wiedmann. 7) Don't napi_disable() twice in r8152 driver, from Hayes Wang. 8) Fix SKB extension memory leak, from Florian Westphal. * git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net: (54 commits) r8152: avoid to call napi_disable twice MAINTAINERS: Add myself as maintainer of virtio-vsock udp: drop skb extensions before marking skb stateless net: rtnetlink: prevent underflows in do_setvfinfo() can: m_can_platform: remove unnecessary m_can_class_resume() call can: m_can_platform: set net_device structure as driver data hv_netvsc: Fix send_table offset in case of a host bug hv_netvsc: Fix offset usage in netvsc_send_table() net-ipv6: IPV6_TRANSPARENT - check NET_RAW prior to NET_ADMIN sfc: Only cancel the PPS workqueue if it exists nfc: port100: handle command failure cleanly net-sysfs: fix netdev_queue_add_kobject() breakage r8152: Re-order napi_disable in rtl8152_close net: qca_spi: Move reset_count to struct qcaspi net: qca_spi: fix receive buffer size check net/ibmvnic: Ignore H_FUNCTION return from H_EOI to tolerate XIVE mode Revert "net/ibmvnic: Fix EOI when running in XIVE mode" net/mlxfw: Verify FSM error code translation doesn't exceed array size net/mlx5: Update the list of the PCI supported devices net/mlx5: Fix auto group size calculation ...
2019-11-22afs: Fix large file supportMarc Dionne
By default s_maxbytes is set to MAX_NON_LFS, which limits the usable file size to 2GB, enforced by the vfs. Commit b9b1f8d5930a ("AFS: write support fixes") added support for the 64-bit fetch and store server operations, but did not change this value. As a result, attempts to write past the 2G mark result in EFBIG errors: $ dd if=/dev/zero of=foo bs=1M count=1 seek=2048 dd: error writing 'foo': File too large Set s_maxbytes to MAX_LFS_FILESIZE. Fixes: b9b1f8d5930a ("AFS: write support fixes") Signed-off-by: Marc Dionne <marc.dionne@auristor.com> Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-11-22afs: Fix possible assert with callbacks from yfs serversMarc Dionne
Servers sending callback breaks to the YFS_CM_SERVICE service may send up to YFSCBMAX (1024) fids in a single RPC. Anything over AFSCBMAX (50) will cause the assert in afs_break_callbacks to trigger. Remove the assert, as the count has already been checked against the appropriate max values in afs_deliver_cb_callback and afs_deliver_yfs_cb_callback. Fixes: 35dbfba3111a ("afs: Implement the YFS cache manager service") Signed-off-by: Marc Dionne <marc.dionne@auristor.com> Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-11-22r8152: avoid to call napi_disable twiceHayes Wang
Call napi_disable() twice would cause dead lock. There are three situations may result in the issue. 1. rtl8152_pre_reset() and set_carrier() are run at the same time. 2. Call rtl8152_set_tunable() after rtl8152_close(). 3. Call rtl8152_set_ringparam() after rtl8152_close(). For #1, use the same solution as commit 84811412464d ("r8152: Re-order napi_disable in rtl8152_close"). For #2 and #3, add checking the flag of IFF_UP and using napi_disable/napi_enable during mutex. Signed-off-by: Hayes Wang <hayeswang@realtek.com> Signed-off-by: David S. Miller <davem@davemloft.net>
2019-11-22Merge branch 'akpm' (patches from Andrew)Linus Torvalds
Merge misc fixes from Andrew Morton: "Three fixes" * emailed patches from Andrew Morton <akpm@linux-foundation.org>: mm/ksm.c: don't WARN if page is still mapped in remove_stable_node() mm/memory_hotplug: don't access uninitialized memmaps in shrink_zone_span() Revert "fs: ocfs2: fix possible null-pointer dereferences in ocfs2_xa_prepare_entry()"