From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org,
Vincenzo Frascino <vincenzo.frascino@arm.com>,
Christophe Leroy <christophe.leroy@c-s.fr>,
Shuah Khan <skhan@linuxfoundation.org>,
Michael Ellerman <mpe@ellerman.id.au>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 163/177] powerpc: Fix vDSO clock_getres()
Date: Mon, 16 Dec 2019 18:50:19 +0100 [thread overview]
Message-ID: <20191216174849.453427596@linuxfoundation.org> (raw)
In-Reply-To: <20191216174811.158424118@linuxfoundation.org>
From: Vincenzo Frascino <vincenzo.frascino@arm.com>
[ Upstream commit 552263456215ada7ee8700ce022d12b0cffe4802 ]
clock_getres in the vDSO library has to preserve the same behaviour
of posix_get_hrtimer_res().
In particular, posix_get_hrtimer_res() does:
sec = 0;
ns = hrtimer_resolution;
and hrtimer_resolution depends on the enablement of the high
resolution timers that can happen either at compile or at run time.
Fix the powerpc vdso implementation of clock_getres keeping a copy of
hrtimer_resolution in vdso data and using that directly.
Fixes: a7f290dad32e ("[PATCH] powerpc: Merge vdso's and add vdso support to 32 bits kernel")
Cc: stable@vger.kernel.org
Signed-off-by: Vincenzo Frascino <vincenzo.frascino@arm.com>
Reviewed-by: Christophe Leroy <christophe.leroy@c-s.fr>
Acked-by: Shuah Khan <skhan@linuxfoundation.org>
[chleroy: changed CLOCK_REALTIME_RES to CLOCK_HRTIMER_RES]
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/a55eca3a5e85233838c2349783bcb5164dae1d09.1575273217.git.christophe.leroy@c-s.fr
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
arch/powerpc/include/asm/vdso_datapage.h | 2 ++
arch/powerpc/kernel/asm-offsets.c | 2 +-
arch/powerpc/kernel/time.c | 1 +
arch/powerpc/kernel/vdso32/gettimeofday.S | 7 +++++--
arch/powerpc/kernel/vdso64/gettimeofday.S | 7 +++++--
5 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/arch/powerpc/include/asm/vdso_datapage.h b/arch/powerpc/include/asm/vdso_datapage.h
index c61d59ed3b45f..2ccb938d85447 100644
--- a/arch/powerpc/include/asm/vdso_datapage.h
+++ b/arch/powerpc/include/asm/vdso_datapage.h
@@ -82,6 +82,7 @@ struct vdso_data {
__s32 wtom_clock_nsec; /* Wall to monotonic clock nsec */
__s64 wtom_clock_sec; /* Wall to monotonic clock sec */
struct timespec stamp_xtime; /* xtime as at tb_orig_stamp */
+ __u32 hrtimer_res; /* hrtimer resolution */
__u32 syscall_map_64[SYSCALL_MAP_SIZE]; /* map of syscalls */
__u32 syscall_map_32[SYSCALL_MAP_SIZE]; /* map of syscalls */
};
@@ -103,6 +104,7 @@ struct vdso_data {
__s32 wtom_clock_nsec;
struct timespec stamp_xtime; /* xtime as at tb_orig_stamp */
__u32 stamp_sec_fraction; /* fractional seconds of stamp_xtime */
+ __u32 hrtimer_res; /* hrtimer resolution */
__u32 syscall_map_32[SYSCALL_MAP_SIZE]; /* map of syscalls */
__u32 dcache_block_size; /* L1 d-cache block size */
__u32 icache_block_size; /* L1 i-cache block size */
diff --git a/arch/powerpc/kernel/asm-offsets.c b/arch/powerpc/kernel/asm-offsets.c
index 484f54dab2475..5c0a1e17219b7 100644
--- a/arch/powerpc/kernel/asm-offsets.c
+++ b/arch/powerpc/kernel/asm-offsets.c
@@ -387,6 +387,7 @@ int main(void)
OFFSET(WTOM_CLOCK_NSEC, vdso_data, wtom_clock_nsec);
OFFSET(STAMP_XTIME, vdso_data, stamp_xtime);
OFFSET(STAMP_SEC_FRAC, vdso_data, stamp_sec_fraction);
+ OFFSET(CLOCK_HRTIMER_RES, vdso_data, hrtimer_res);
OFFSET(CFG_ICACHE_BLOCKSZ, vdso_data, icache_block_size);
OFFSET(CFG_DCACHE_BLOCKSZ, vdso_data, dcache_block_size);
OFFSET(CFG_ICACHE_LOGBLOCKSZ, vdso_data, icache_log_block_size);
@@ -417,7 +418,6 @@ int main(void)
DEFINE(CLOCK_REALTIME_COARSE, CLOCK_REALTIME_COARSE);
DEFINE(CLOCK_MONOTONIC_COARSE, CLOCK_MONOTONIC_COARSE);
DEFINE(NSEC_PER_SEC, NSEC_PER_SEC);
- DEFINE(CLOCK_REALTIME_RES, MONOTONIC_RES_NSEC);
#ifdef CONFIG_BUG
DEFINE(BUG_ENTRY_SIZE, sizeof(struct bug_entry));
diff --git a/arch/powerpc/kernel/time.c b/arch/powerpc/kernel/time.c
index 694522308cd51..619447b1b7971 100644
--- a/arch/powerpc/kernel/time.c
+++ b/arch/powerpc/kernel/time.c
@@ -959,6 +959,7 @@ void update_vsyscall(struct timekeeper *tk)
vdso_data->wtom_clock_nsec = tk->wall_to_monotonic.tv_nsec;
vdso_data->stamp_xtime = xt;
vdso_data->stamp_sec_fraction = frac_sec;
+ vdso_data->hrtimer_res = hrtimer_resolution;
smp_wmb();
++(vdso_data->tb_update_count);
}
diff --git a/arch/powerpc/kernel/vdso32/gettimeofday.S b/arch/powerpc/kernel/vdso32/gettimeofday.S
index becd9f8767ede..a967e795b96d9 100644
--- a/arch/powerpc/kernel/vdso32/gettimeofday.S
+++ b/arch/powerpc/kernel/vdso32/gettimeofday.S
@@ -156,12 +156,15 @@ V_FUNCTION_BEGIN(__kernel_clock_getres)
cror cr0*4+eq,cr0*4+eq,cr1*4+eq
bne cr0,99f
+ mflr r12
+ .cfi_register lr,r12
+ bl __get_datapage@local /* get data page */
+ lwz r5, CLOCK_HRTIMER_RES(r3)
+ mtlr r12
li r3,0
cmpli cr0,r4,0
crclr cr0*4+so
beqlr
- lis r5,CLOCK_REALTIME_RES@h
- ori r5,r5,CLOCK_REALTIME_RES@l
stw r3,TSPC32_TV_SEC(r4)
stw r5,TSPC32_TV_NSEC(r4)
blr
diff --git a/arch/powerpc/kernel/vdso64/gettimeofday.S b/arch/powerpc/kernel/vdso64/gettimeofday.S
index 07bfe33fe8745..81757f06bbd7a 100644
--- a/arch/powerpc/kernel/vdso64/gettimeofday.S
+++ b/arch/powerpc/kernel/vdso64/gettimeofday.S
@@ -186,12 +186,15 @@ V_FUNCTION_BEGIN(__kernel_clock_getres)
cror cr0*4+eq,cr0*4+eq,cr1*4+eq
bne cr0,99f
+ mflr r12
+ .cfi_register lr,r12
+ bl V_LOCAL_FUNC(__get_datapage)
+ lwz r5, CLOCK_HRTIMER_RES(r3)
+ mtlr r12
li r3,0
cmpldi cr0,r4,0
crclr cr0*4+so
beqlr
- lis r5,CLOCK_REALTIME_RES@h
- ori r5,r5,CLOCK_REALTIME_RES@l
std r3,TSPC64_TV_SEC(r4)
std r5,TSPC64_TV_NSEC(r4)
blr
--
2.20.1
next prev parent reply other threads:[~2019-12-16 18:21 UTC|newest]
Thread overview: 188+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-16 17:47 [PATCH 5.4 000/177] 5.4.4-stable review Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 001/177] usb: gadget: configfs: Fix missing spin_lock_init() Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 002/177] usb: gadget: pch_udc: fix use after free Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 003/177] nvme: Namepace identification descriptor list is optional Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 004/177] Revert "nvme: Add quirk for Kingston NVME SSD running FW E8FK11.T" Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 005/177] scsi: lpfc: Fix bad ndlp ptr in xri aborted handling Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 006/177] scsi: zfcp: trace channel log even for FCP command responses Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 007/177] scsi: qla2xxx: Do command completion on abort timeout Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 008/177] scsi: qla2xxx: Fix driver unload hang Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 009/177] scsi: qla2xxx: Fix double scsi_done for abort path Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 010/177] scsi: qla2xxx: Fix memory leak when sending I/O fails Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 011/177] compat_ioctl: add compat_ptr_ioctl() Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 012/177] ceph: fix compat_ioctl for ceph_dir_operations Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 013/177] media: venus: remove invalid compat_ioctl32 handler Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 014/177] USB: uas: honor flag to avoid CAPACITY16 Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 015/177] USB: uas: heed CAPACITY_HEURISTICS Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 016/177] USB: documentation: flags on usb-storage versus UAS Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 017/177] usb: Allow USB device to be warm reset in suspended state Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 018/177] usb: host: xhci-tegra: Correct phy enable sequence Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 019/177] binder: fix incorrect calculation for num_valid Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 020/177] staging: exfat: fix multiple definition error of `rename_file Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 021/177] staging: rtl8188eu: fix interface sanity check Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 022/177] staging: rtl8712: " Greg Kroah-Hartman
2019-12-16 17:47 ` [PATCH 5.4 023/177] staging: vchiq: call unregister_chrdev_region() when driver registration fails Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 024/177] staging: gigaset: fix general protection fault on probe Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 025/177] staging: gigaset: fix illegal free on probe errors Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 026/177] staging: gigaset: add endpoint-type sanity check Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 027/177] usb: xhci: only set D3hot for pci device Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 028/177] xhci: Fix memory leak in xhci_add_in_port() Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 029/177] xhci: fix USB3 device initiated resume race with roothub autosuspend Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 030/177] xhci: Increase STS_HALT timeout in xhci_suspend() Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 031/177] xhci: handle some XHCI_TRUST_TX_LENGTH quirks cases as default behaviour Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 032/177] xhci: make sure interrupts are restored to correct state Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 033/177] interconnect: qcom: sdm845: Walk the list safely on node removal Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 034/177] interconnect: qcom: qcs404: " Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 035/177] usb: common: usb-conn-gpio: Dont log an error on probe deferral Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 036/177] ARM: dts: pandora-common: define wl1251 as child node of mmc3 Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 037/177] iio: adis16480: Add debugfs_reg_access entry Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 038/177] iio: imu: st_lsm6dsx: fix ODR check in st_lsm6dsx_write_raw Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 039/177] iio: adis16480: Fix scales factors Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 040/177] iio: humidity: hdc100x: fix IIO_HUMIDITYRELATIVE channel reporting Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 041/177] iio: imu: inv_mpu6050: fix temperature reporting using bad unit Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 042/177] iio: adc: ad7606: fix reading unnecessary data from device Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 043/177] iio: adc: ad7124: Enable internal reference Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 044/177] USB: atm: ueagle-atm: add missing endpoint check Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 045/177] USB: idmouse: fix interface sanity checks Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 046/177] USB: serial: io_edgeport: fix epic endpoint lookup Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 047/177] usb: roles: fix a potential use after free Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 048/177] USB: adutux: fix interface sanity check Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 049/177] usb: core: urb: fix URB structure initialization function Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 050/177] usb: mon: Fix a deadlock in usbmon between mmap and read Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 051/177] tpm: add check after commands attribs tab allocation Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 052/177] tpm: Switch to platform_get_irq_optional() Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 053/177] EDAC/altera: Use fast register IO for S10 IRQs Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 054/177] brcmfmac: disable PCIe interrupts before bus reset Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 055/177] mtd: spear_smi: Fix Write Burst mode Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 056/177] mtd: rawnand: Change calculating of position page containing BBM Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 057/177] virt_wifi: fix use-after-free in virt_wifi_newlink() Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 058/177] virtio-balloon: fix managed page counts when migrating pages between zones Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 059/177] usb: dwc3: pci: add ID for the Intel Comet Lake -H variant Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 060/177] usb: dwc3: gadget: Fix logical condition Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 061/177] usb: dwc3: gadget: Clear started flag for non-IOC Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 062/177] usb: dwc3: ep0: Clear started flag on completion Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 063/177] phy: renesas: rcar-gen3-usb2: Fix sysfs interface of "role" Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 064/177] usb: typec: fix use after free in typec_register_port() Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 065/177] iwlwifi: pcie: fix support for transmitting SKBs with fraglist Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 066/177] btrfs: check page->mapping when loading free space cache Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 067/177] btrfs: use btrfs_block_group_cache_done in update_block_group Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 068/177] btrfs: use refcount_inc_not_zero in kill_all_nodes Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 069/177] Btrfs: fix metadata space leak on fixup worker failure to set range as delalloc Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 070/177] Btrfs: fix negative subv_writers counter and data space leak after buffered write Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 071/177] btrfs: Avoid getting stuck during cyclic writebacks Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 072/177] btrfs: Remove btrfs_bio::flags member Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 073/177] Btrfs: send, skip backreference walking for extents with many references Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 074/177] btrfs: record all roots for rename exchange on a subvol Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 075/177] rtlwifi: rtl8192de: Fix missing code to retrieve RX buffer address Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 076/177] rtlwifi: rtl8192de: Fix missing callback that tests for hw release of buffer Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 077/177] rtlwifi: rtl8192de: Fix missing enable interrupt flag Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 078/177] lib: raid6: fix awk build warnings Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 079/177] ovl: fix lookup failure on multi lower squashfs Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 080/177] ovl: fix corner case of non-unique st_dev;st_ino Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 081/177] ovl: relax WARN_ON() on rename to self Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 082/177] hwrng: omap - Fix RNG wait loop timeout Greg Kroah-Hartman
2019-12-16 17:48 ` [PATCH 5.4 083/177] dm writecache: handle REQ_FUA Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 084/177] dm zoned: reduce overhead of backing device checks Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 085/177] workqueue: Fix spurious sanity check failures in destroy_workqueue() Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 086/177] workqueue: Fix pwq ref leak in rescuer_thread() Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 087/177] ASoC: rt5645: Fixed buddy jack support Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 088/177] ASoC: rt5645: Fixed typo for " Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 089/177] ASoC: Jack: Fix NULL pointer dereference in snd_soc_jack_report Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 090/177] ASoC: fsl_audmix: Add spin lock to protect tdms Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 091/177] md: improve handling of bio with REQ_PREFLUSH in md_flush_request() Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 092/177] blk-mq: avoid sysfs buffer overflow with too many CPU cores Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 093/177] cgroup: pids: use atomic64_t for pids->limit Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 094/177] wil6210: check len before memcpy() calls Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 095/177] ar5523: check NULL before memcpy() in ar5523_cmd() Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 096/177] s390/mm: properly clear _PAGE_NOEXEC bit when it is not supported Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 097/177] media: hantro: Fix s_fmt for dynamic resolution changes Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 098/177] media: hantro: Fix motion vectors usage condition Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 099/177] media: hantro: Fix picture order count table enable Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 100/177] media: vimc: sen: remove unused kthread_sen field Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 101/177] media: bdisp: fix memleak on release Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 102/177] media: radio: wl1273: fix interrupt masking " Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 103/177] media: cec.h: CEC_OP_REC_FLAG_ values were swapped Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 104/177] cpuidle: Do not unset the driver if it is there already Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 105/177] cpuidle: teo: Ignore disabled idle states that are too deep Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 106/177] cpuidle: teo: Rename local variable in teo_select() Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 107/177] cpuidle: teo: Consider hits and misses metrics of disabled states Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 108/177] cpuidle: teo: Fix "early hits" handling for disabled idle states Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 109/177] cpuidle: use first valid target residency as poll time Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 110/177] erofs: zero out when listxattr is called with no xattr Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 111/177] perf tests: Fix out of bounds memory access Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 112/177] drm/panfrost: Open/close the perfcnt BO Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 113/177] powerpc/perf: Disable trace_imc pmu Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 114/177] intel_th: Fix a double put_device() in error path Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 115/177] intel_th: pci: Add Ice Lake CPU support Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 116/177] intel_th: pci: Add Tiger " Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 117/177] PM / devfreq: Lock devfreq in trans_stat_show Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 118/177] cpufreq: powernv: fix stack bloat and hard limit on number of CPUs Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 119/177] ALSA: fireface: fix return value in error path of isochronous resources reservation Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 120/177] ALSA: oxfw: " Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 121/177] ALSA: hda/realtek - Line-out jack doesnt work on a Dell AIO Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 122/177] ACPI / utils: Move acpi_dev_get_first_match_dev() under CONFIG_ACPI Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 123/177] ACPI: LPSS: Add LNXVIDEO -> BYT I2C7 to lpss_device_links Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 124/177] ACPI: LPSS: Add LNXVIDEO -> BYT I2C1 " Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 125/177] ACPI: LPSS: Add dmi quirk for skipping _DEP check for some device-links Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 126/177] ACPI / hotplug / PCI: Allocate resources directly under the non-hotplug bridge Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 127/177] ACPI: OSL: only free map once in osl.c Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 128/177] ACPI: bus: Fix NULL pointer check in acpi_bus_get_private_data() Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 129/177] ACPI: EC: Rework flushing of pending work Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 130/177] ACPI: PM: Avoid attaching ACPI PM domain to certain devices Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 131/177] pinctrl: rza2: Fix gpio name typos Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 132/177] pinctrl: armada-37xx: Fix irq mask access in armada_37xx_irq_set_type() Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 133/177] pinctrl: samsung: Add of_node_put() before return in error path Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 134/177] pinctrl: samsung: Fix device node refcount leaks in Exynos wakeup controller init Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 135/177] pinctrl: samsung: Fix device node refcount leaks in S3C24xx " Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 136/177] pinctrl: samsung: Fix device node refcount leaks in init code Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 137/177] pinctrl: samsung: Fix device node refcount leaks in S3C64xx wakeup controller init Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 138/177] mmc: host: omap_hsmmc: add code for special init of wl1251 to get rid of pandora_wl1251_init_card Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 139/177] ARM: dts: omap3-tao3530: Fix incorrect MMC card detection GPIO polarity Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 140/177] RDMA/core: Fix ib_dma_max_seg_size() Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 141/177] ppdev: fix PPGETTIME/PPSETTIME ioctls Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 142/177] stm class: Lose the protocol driver when dropping its reference Greg Kroah-Hartman
2019-12-16 17:49 ` [PATCH 5.4 143/177] coresight: Serialize enabling/disabling a link device Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 144/177] powerpc: Allow 64bit VDSO __kernel_sync_dicache to work across ranges >4GB Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 145/177] powerpc/xive: Prevent page fault issues in the machine crash handler Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 146/177] powerpc: Allow flush_icache_range to work across ranges >4GB Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 147/177] powerpc/xive: Skip ioremap() of ESB pages for LSI interrupts Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 148/177] video/hdmi: Fix AVI bar unpack Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 149/177] quota: Check that quota is not dirty before release Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 150/177] ext2: check err when partial != NULL Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 151/177] seccomp: avoid overflow in implicit constant conversion Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 152/177] quota: fix livelock in dquot_writeback_dquots Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 153/177] ext4: Fix credit estimate for final inode freeing Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 154/177] reiserfs: fix extended attributes on the root directory Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 155/177] scsi: qla2xxx: Fix SRB leak on switch command timeout Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 156/177] scsi: qla2xxx: Fix a dma_pool_free() call Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 157/177] Revert "scsi: qla2xxx: Fix memory leak when sending I/O fails" Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 158/177] iio: ad7949: kill pointless "readback"-handling code Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 159/177] iio: ad7949: fix channels mixups Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 160/177] omap: pdata-quirks: revert pandora specific gpiod additions Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 161/177] omap: pdata-quirks: remove openpandora quirks for mmc3 and wl1251 Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 162/177] powerpc: Avoid clang warnings around setjmp and longjmp Greg Kroah-Hartman
2019-12-16 17:50 ` Greg Kroah-Hartman [this message]
2019-12-16 17:50 ` [PATCH 5.4 164/177] mm, memfd: fix COW issue on MAP_PRIVATE and F_SEAL_FUTURE_WRITE mappings Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 165/177] mfd: rk808: Fix RK818 ID template Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 166/177] mm: memcg/slab: wait for !root kmem_cache refcnt killing on root kmem_cache destruction Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 167/177] ext4: work around deleting a file with i_nlink == 0 safely Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 168/177] firmware: qcom: scm: Ensure a0 status code is treated as signed Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 169/177] s390/smp,vdso: fix ASCE handling Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 170/177] s390/kaslr: store KASLR offset for early dumps Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 171/177] mm/shmem.c: cast the type of unmap_start to u64 Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 172/177] powerpc: Define arch_is_kernel_initmem_freed() for lockdep Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 173/177] USB: dummy-hcd: increase max number of devices to 32 Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 174/177] rtc: disable uie before setting time and enable after Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 175/177] splice: only read in as much information as there is pipe buffer space Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 176/177] ext4: fix a bug in ext4_wait_for_tail_page_commit Greg Kroah-Hartman
2019-12-16 17:50 ` [PATCH 5.4 177/177] ext4: fix leak of quota reservations Greg Kroah-Hartman
2019-12-17 0:54 ` [PATCH 5.4 000/177] 5.4.4-stable review shuah
2019-12-17 7:52 ` Greg Kroah-Hartman
2019-12-17 7:23 ` Naresh Kamboju
2019-12-17 7:53 ` Greg Kroah-Hartman
2019-12-17 11:28 ` Jon Hunter
2019-12-17 12:07 ` Greg Kroah-Hartman
2019-12-17 12:37 ` Jeffrin Jose
2019-12-17 14:28 ` Greg Kroah-Hartman
2019-12-17 18:31 ` Guenter Roeck
2019-12-17 18:48 ` Greg Kroah-Hartman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191216174849.453427596@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=christophe.leroy@c-s.fr \
--cc=linux-kernel@vger.kernel.org \
--cc=mpe@ellerman.id.au \
--cc=sashal@kernel.org \
--cc=skhan@linuxfoundation.org \
--cc=stable@vger.kernel.org \
--cc=vincenzo.frascino@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox