[PATCH] net: spi: fix a potential NULL pointer dereference

2019-03-09 Thread Kangjie Lu
In case alloc_workqueue fails to allocate the work queue and returns NULL, the fix releases the resources and returns -ENOMEM. Signed-off-by: Kangjie Lu --- drivers/net/can/spi/mcp251x.c | 8 1 file changed, 8 insertions(+) diff --git a/drivers/net/can/spi/mcp251x.c

Re: [PATCH] staging: erofs: add a new line after variable declaration

2019-03-09 Thread Gao Xiang
Hi Julio, On 2019/3/10 1:08, Julio Bianco wrote: > Add a new line after variable declaration > > Signed-off-by: Julio Bianco There is the only place in erofs for this issue? Could you check and please fix them all if you have some time? Thanks, Gao Xiang > --- > drivers/staging/erofs/inode.c

[PATCH] mmc_spi: add a status check for spi_sync_locked

2019-03-09 Thread Kangjie Lu
In case spi_sync_locked fails, the fix reports the error and returns the error code upstream. Signed-off-by: Kangjie Lu --- drivers/mmc/host/mmc_spi.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/mmc/host/mmc_spi.c b/drivers/mmc/host/mmc_spi.c index 1b1498805972..32fea585262b

[PATCH 8/8] aio: move sanity checks and request allocation to io_submit_one()

2019-03-09 Thread Al Viro
From: Al Viro makes for somewhat cleaner control flow in __io_submit_one() Signed-off-by: Al Viro --- fs/aio.c | 119 --- 1 file changed, 53 insertions(+), 66 deletions(-) diff --git a/fs/aio.c b/fs/aio.c index

[PATCH 6/8] move dropping ->ki_eventfd into iocb_destroy()

2019-03-09 Thread Al Viro
From: Al Viro Signed-off-by: Al Viro --- fs/aio.c | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/fs/aio.c b/fs/aio.c index f9e8f1edfe36..595c19965a8b 100644 --- a/fs/aio.c +++ b/fs/aio.c @@ -1071,6 +1071,8 @@ static struct kioctx *lookup_ioctx(unsigned

[PATCH 7/8] deal with get_reqs_available() in aio_get_req() itself

2019-03-09 Thread Al Viro
From: Al Viro simplifies the caller Signed-off-by: Al Viro --- fs/aio.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fs/aio.c b/fs/aio.c index 595c19965a8b..66ca52c57cca 100644 --- a/fs/aio.c +++ b/fs/aio.c @@ -1033,6 +1033,11 @@ static inline struct

[PATCH 4/8] Fix aio_poll() races

2019-03-09 Thread Al Viro
From: Al Viro aio_poll() has to cope with several unpleasant problems: * requests that might stay around indefinitely need to be made visible for io_cancel(2); that must not be done to a request already completed, though. * in cases when ->poll() has placed us on a waitqueue,

[PATCH 5/8] make aio_read()/aio_write() return int

2019-03-09 Thread Al Viro
From: Al Viro that ssize_t is a rudiment of earlier calling conventions; it's been used only to pass 0 and -E... since last autumn. Signed-off-by: Al Viro --- fs/aio.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fs/aio.c b/fs/aio.c index

[PATCH 3/8] aio: store event at final iocb_put()

2019-03-09 Thread Al Viro
From: Al Viro Instead of having aio_complete() set ->ki_res.{res,res2}, do that explicitly in its callers, drop the reference (as aio_complete() used to do) and delay the rest until the final iocb_put(). Signed-off-by: Al Viro --- fs/aio.c | 45 - 1

[PATCH 2/8] keep io_event in aio_kiocb

2019-03-09 Thread Al Viro
From: Al Viro Signed-off-by: Al Viro --- fs/aio.c | 56 +--- 1 file changed, 21 insertions(+), 35 deletions(-) diff --git a/fs/aio.c b/fs/aio.c index 363d7d7c8bff..2249a7a1d6b3 100644 --- a/fs/aio.c +++ b/fs/aio.c @@ -204,8 +204,7 @@ struct

[PATCH 1/8] pin iocb through aio.

2019-03-09 Thread Al Viro
From: Linus Torvalds aio_poll() is not the only case that needs file pinned; worse, while aio_read()/aio_write() can live without pinning iocb itself, the proof is rather brittle and can easily break on later changes. Signed-off-by: Linus Torvalds Signed-off-by: Al Viro --- fs/aio.c | 37

Re: [PATCH 1/8] aio: make sure file is pinned

2019-03-09 Thread Al Viro
On Fri, Mar 08, 2019 at 03:36:50AM +, Al Viro wrote: > See vfs.git#work.aio; the crucial bits are in these commits: > keep io_event in aio_kiocb > get rid of aio_complete() res/res2 arguments > move aio_complete() to final iocb_put(), try to fix aio_poll() logics > The first

Re: [PATCH net] net: hns3: fix to stop multiple HNS reset due to the AER changes

2019-03-09 Thread David Miller
From: Huazhong Tan Date: Sun, 10 Mar 2019 14:47:51 +0800 > From: Shiju Jose > > The commit bfcb79fca19d > ("PCI/ERR: Run error recovery callbacks for all affected devices") > affected the non-fatal error recovery logic for the HNS and RDMA devices. > This is because each HNS PF under PCIe bus

Re: Linux 5.0.1

2019-03-09 Thread Greg KH
diff --git a/Makefile b/Makefile index d5713e7b1e50..3cd7163fe164 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 5 PATCHLEVEL = 0 -SUBLEVEL = 0 +SUBLEVEL = 1 EXTRAVERSION = NAME = Shy Crocodile diff --git

Re: Linux 5.0.1

2019-03-09 Thread Greg KH
On Sun, Mar 10, 2019 at 07:52:03AM +0100, Greg KH wrote: > On Sun, Mar 10, 2019 at 07:51:10AM +0100, Greg KH wrote: > > I'm announcing the release of the 5.0.1 kernel. > > > > All users of the 5.0.1 kernel series must upgrade. > > > > The updated 5.0.1.y git tree can be found at: > >

Re: Linux 4.20.15

2019-03-09 Thread Greg KH
diff --git a/Makefile b/Makefile index f7baaa0a3164..25b45c24bac0 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 4 PATCHLEVEL = 20 -SUBLEVEL = 14 +SUBLEVEL = 15 EXTRAVERSION = NAME = Shy Crocodile diff --git a/arch/mips/kernel/irq.c

Linux 4.19.28

2019-03-09 Thread Greg KH
I'm announcing the release of the 4.19.28 kernel. All users of the 4.19 kernel series must upgrade. The updated 4.19.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-4.19.y and can be browsed at the normal kernel.org git web

Re: Linux 4.19.28

2019-03-09 Thread Greg KH
diff --git a/Makefile b/Makefile index 70ed9a53558a..c6ac023ba33a 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 4 PATCHLEVEL = 19 -SUBLEVEL = 27 +SUBLEVEL = 28 EXTRAVERSION = NAME = "People's Front" diff --git a/arch/mips/kernel/irq.c

Linux 4.20.15

2019-03-09 Thread Greg KH
I'm announcing the release of the 4.20.15 kernel. All users of the 4.20 kernel series must upgrade. The updated 4.20.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-4.20.y and can be browsed at the normal kernel.org git web

Re: Linux 5.0.1

2019-03-09 Thread Greg KH
On Sun, Mar 10, 2019 at 07:51:10AM +0100, Greg KH wrote: > I'm announcing the release of the 5.0.1 kernel. > > All users of the 5.0.1 kernel series must upgrade. > > The updated 5.0.1.y git tree can be found at: > git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git >

Linux 5.0.1

2019-03-09 Thread Greg KH
I'm announcing the release of the 5.0.1 kernel. All users of the 5.0.1 kernel series must upgrade. The updated 5.0.1.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-5.0.1.y and can be browsed at the normal kernel.org git web

[PATCH net] net: hns3: fix to stop multiple HNS reset due to the AER changes

2019-03-09 Thread Huazhong Tan
From: Shiju Jose The commit bfcb79fca19d ("PCI/ERR: Run error recovery callbacks for all affected devices") affected the non-fatal error recovery logic for the HNS and RDMA devices. This is because each HNS PF under PCIe bus receive callbacks from the AER driver when an error is reported for one

Accept My Legit Grant.

2019-03-09 Thread Amandha Ferreira da Silva - VOCE NA TV
Dear Friend, Greetings. I am Mrs Mavis Wanczyk the Powerball Lottery Winner of $ 758.7 Million. Click the below link to see about my winnings so that you know this is LEGITIMATE.

Re: [PATCH 5.0 30/46] x86/boot/compressed/64: Do not read legacy ROM on EFI system

2019-03-09 Thread Greg Kroah-Hartman
On Sat, Mar 09, 2019 at 10:10:19PM -0800, h...@zytor.com wrote: > On March 8, 2019 4:50:03 AM PST, Greg Kroah-Hartman > wrote: > >5.0-stable review patch. If anyone has any objections, please let me > >know. > > > >-- > > > >From: Kirill A. Shutemov > > > >commit

Re: [PATCH 5.0 30/46] x86/boot/compressed/64: Do not read legacy ROM on EFI system

2019-03-09 Thread hpa
On March 8, 2019 4:50:03 AM PST, Greg Kroah-Hartman wrote: >5.0-stable review patch. If anyone has any objections, please let me >know. > >-- > >From: Kirill A. Shutemov > >commit 6f913de3231e1d70a871135b38219da7810df218 upstream. > >EFI systems do not necessarily provide a

Re: [PATCH 5.0 00/46] 5.0.1-stable review

2019-03-09 Thread Greg Kroah-Hartman
On Sat, Mar 09, 2019 at 02:36:17PM -0800, Guenter Roeck wrote: > On 3/8/19 4:49 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 5.0.1 release. > > There are 46 patches in this series, all will be posted as a response > > to this one. If anyone has any issues

Re: [PATCH] net: can: Increase tx queue length

2019-03-09 Thread Dave Taht
Toke Høiland-Jørgensen writes: > Appana Durga Kedareswara Rao writes: > >> Hi Andre, >> >> >>> >>> On 3/9/19 3:07 PM, Appana Durga Kedareswara rao wrote: >>> > While stress testing the CAN interface on xilinx axi can in loopback >>> > mode getting message "write: no buffer space available"

Re: [PATCH] xfs: Use kmem_zalloc for bp->b_pages.

2019-03-09 Thread Sean Fu
On Sat, Mar 09, 2019 at 09:32:30AM -0800, Darrick J. Wong wrote: > On Sat, Mar 09, 2019 at 11:36:36PM +0800, Sean Fu wrote: > > Change the allocation of bp->b_pages to use kmem_zalloc instead of > > kmem_alloc. > > Remove unnecessary memset for bp->b_pages. > > > > This reduces text size by 42

Re: Nokia N900: wl1251 spi3.0: EOW timed out on

2019-03-09 Thread Vignesh Raghavendra
Hi. On 10-Mar-19 6:23 AM, Merlijn Wajer wrote: > > Hi, > > On 10/03/2019 00:22, Merlijn Wajer wrote: >> Hi, >> >> I just migrated to Linux 5.0 (from 4.15) on my Nokia N900, and I'm >> getting a lot of messages like this: >> >>> wl1251 spi3.0: EOW timed out Could you try if this patch fixes

[PULL] virtio,vhost: cleanups and fixes

2019-03-09 Thread Michael S. Tsirkin
The following changes since commit 1c163f4c7b3f621efff9b28a47abb36f7378d783: Linux 5.0 (2019-03-03 15:21:29 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus for you to fetch changes up to

Re: [PATCH 4/4] iommu/vt-d: Remove lazy allocation of domains

2019-03-09 Thread Lu Baolu
Hi, On 3/9/19 7:49 PM, James Sewart wrote: Hey Lu, On 9 Mar 2019, at 01:53, Lu Baolu wrote: Hi James, On 3/9/19 12:57 AM, James Sewart wrote: Hey Lu, On 8 Mar 2019, at 03:09, Lu Baolu wrote: Do you mind if I work on top of your patches for further cleanups and sign off a v2 together

[git pull] Input updates for v5.1-rc0

2019-03-09 Thread Dmitry Torokhov
Hi Linus, Please pull from: git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git for-linus to receive updates for the input subsystem. You will get: - update to ili210x touchscreen driver, refreshing the code and adding support for ILI251X line - update to st1232 touchscreen

Re: [PATCH v3] blkcg: prevent priority inversion problem during sync()

2019-03-09 Thread kbuild test robot
Hi Andrea, Thank you for the patch! Yet something to improve: [auto build test ERROR on linus/master] [also build test ERROR on v5.0 next-20190306] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [GIT PULL] first round of SCSI updates for the 5.0+ merge window

2019-03-09 Thread pr-tracker-bot
The pull request you sent on Wed, 06 Mar 2019 22:29:46 -0800: > git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git scsi-misc has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/92fff53b7191cae566be9ca6752069426c7f8241 Thank you! -- Deet-doot-dot, I am a bot.

Re: [GIT PULL] Please pull RDMA subsystem changes

2019-03-09 Thread pr-tracker-bot
The pull request you sent on Thu, 7 Mar 2019 01:34:16 +: > git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git tags/for-linus has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/a50243b1ddcdd766d0d17fbfeeb1a22e62fdc461 Thank you! -- Deet-doot-dot, I am a

DRM-based Oops viewer

2019-03-09 Thread Ahmed S. Darwish
Hello DRM/UEFI maintainers, Several years ago, I wrote a set of patches to dump the kernel log to disk upon panic -- through BIOS INT 0x13 services. [1] The overwhelming response was that it's unsafe to do this in a generic manner. Linus proposed a video-based viewer instead: [2] If you

[PATCH v3 3/3] arm64: mm: enable per pmd page table lock

2019-03-09 Thread Yu Zhao
Switch from per mm_struct to per pmd page table lock by enabling ARCH_ENABLE_SPLIT_PMD_PTLOCK. This provides better granularity for large system. I'm not sure if there is contention on mm->page_table_lock. Given the option comes at no cost (apart from initializing more spin locks), why not enable

[PATCH v3 1/3] arm64: mm: use appropriate ctors for page tables

2019-03-09 Thread Yu Zhao
For pte page, use pgtable_page_ctor(); for pmd page, use pgtable_pmd_page_ctor(); and for the rest (pud, p4d and pgd), don't use any. For now, we don't select ARCH_ENABLE_SPLIT_PMD_PTLOCK and pgtable_pmd_page_ctor() is a nop. When we do in patch 3, we make sure pmd is not folded so we won't

[PATCH v3 2/3] arm64: mm: don't call page table ctors for init_mm

2019-03-09 Thread Yu Zhao
init_mm doesn't require page table lock to be initialized at any level. Add a separate page table allocator for it, and the new one skips page table ctors. The ctors allocate memory when ALLOC_SPLIT_PTLOCKS is set. Not calling them avoids memory leak in case we call pte_free_kernel() on init_mm.

Re: Nokia N900: wl1251 spi3.0: EOW timed out on

2019-03-09 Thread Merlijn Wajer
Hi, On 10/03/2019 00:22, Merlijn Wajer wrote: > Hi, > > I just migrated to Linux 5.0 (from 4.15) on my Nokia N900, and I'm > getting a lot of messages like this: > >> wl1251 spi3.0: EOW timed out > > and it ends with: > >> [ 29.072174] wl1251: ERROR chip id doesn't match after firmware

Re: [PATCH] Input: fix oops in input_to_handler

2019-03-09 Thread Dmitry Torokhov
Hi Zhipeng, On Fri, Mar 01, 2019 at 12:13:27PM +0800, Zhipeng Xie wrote: > we got the following boot crash: > > [ 36.086344] Internal error: Oops: 9604 [#1] SMP > [ 36.091371] CPU: 32 PID: 0 Comm: swapper/32 Tainted: G OE >4.19.25-vhulk1901.1.0.h111.aarch64 #1

[tip:sched/urgent 1/5] kernel/sched/cpufreq_schedutil.c:346:26: note: in expansion of macro 'min'

2019-03-09 Thread kbuild test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/urgent head: ce28d2e53cda890771360d32259495dd6a9c4253 commit: f1212844e9dc3a31d41f99713c5522acf92ff291 [1/5] sched/cpufreq: Fix 32-bit math overflow config: i386-randconfig-s2-201910 (attached as .config) compiler: gcc-6

Nokia N900: wl1251 spi3.0: EOW timed out on

2019-03-09 Thread Merlijn Wajer
Hi, I just migrated to Linux 5.0 (from 4.15) on my Nokia N900, and I'm getting a lot of messages like this: > wl1251 spi3.0: EOW timed out and it ends with: > [ 29.072174] wl1251: ERROR chip id doesn't match after firmware boot My tree carries some patches, but none are related to SPI or

Re: [PATCH] Input: raspberrypi-ts: select CONFIG_INPUT_POLLDEV

2019-03-09 Thread Dmitry Torokhov
On Tue, Mar 05, 2019 at 11:39:42AM +0100, Nicolas Saenz Julienne wrote: > On Mon, 2019-03-04 at 20:57 +0100, Arnd Bergmann wrote: > > When CONFIG_INPUT_POLLDEV is disabled, we get a link error: > > > > drivers/input/touchscreen/raspberrypi-ts.o: In function `rpi_ts_probe': > >

Re: [PATCH] Input: msm-vibrator: use correct gpio header

2019-03-09 Thread Dmitry Torokhov
On Tue, Mar 05, 2019 at 08:49:01AM +0100, Linus Walleij wrote: > On Mon, Mar 4, 2019 at 8:57 PM Arnd Bergmann wrote: > > > When CONFIG_GPIOLIB is not set, we get a couple of build > > errors during test building: > > > > drivers/input/misc/msm-vibrator.c: In function 'msm_vibrator_start': > >

Re: [PATCH] vhost: silence an unused-variable warning

2019-03-09 Thread Michael S. Tsirkin
On Fri, Mar 08, 2019 at 03:17:26PM -0800, David Miller wrote: > From: Arnd Bergmann > Date: Wed, 6 Mar 2019 12:05:49 +0100 > > > On some architectures, the MMU can be disabled, leading to access_ok() > > becoming an empty macro that does not evaluate its size argument, > > which in turn

Re: [GIT PULL] PCI changes for v5.1

2019-03-09 Thread pr-tracker-bot
The pull request you sent on Fri, 8 Mar 2019 11:31:54 -0600: > git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git > tags/pci-v5.1-changes has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/2901752c14b8e1b7dd898d2e5245c93e531aa624 Thank you! --

Re: [GIT PULL for v5.1-rc1] media updates

2019-03-09 Thread pr-tracker-bot
The pull request you sent on Thu, 7 Mar 2019 13:24:08 -0300: > git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media media/v5.1-1 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/96a6de1a541c86e9e67b9c310c14db4099bd1cbc Thank you! -- Deet-doot-dot, I am a

Re: [PATCH v5 6/7] refactor header includes to allow kthread.h inclusion in psi_types.h

2019-03-09 Thread kbuild test robot
Hi Suren, Thank you for the patch! Yet something to improve: [auto build test ERROR on linus/master] [also build test ERROR on v5.0] [cannot apply to next-20190306] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH 4.20 00/76] 4.20.15-stable review

2019-03-09 Thread Guenter Roeck
On 3/8/19 4:49 AM, Greg Kroah-Hartman wrote: This is the start of the stable review cycle for the 4.20.15 release. There are 76 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let me know. Responses should be made

Re: [PATCH 5.0 00/46] 5.0.1-stable review

2019-03-09 Thread Guenter Roeck
On 3/8/19 4:49 AM, Greg Kroah-Hartman wrote: This is the start of the stable review cycle for the 5.0.1 release. There are 46 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let me know. Responses should be made by

Re: [PATCH 4.19 00/68] 4.19.28-stable review

2019-03-09 Thread Guenter Roeck
On 3/8/19 4:49 AM, Greg Kroah-Hartman wrote: This is the start of the stable review cycle for the 4.19.28 release. There are 68 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let me know. Responses should be made

Inquiry March-2019

2019-03-09 Thread Daniel Murray
Hi,friend, This is Daniel Murray and i am from Sinara Group Co.,LTD in Russia. We are glad to know about your company from the web and we are interested in your products. Could you kindly send us your Latest catalog and price list for our trial order. Thanks and Best Regards, Daniel Murray

Inquiry March-2019

2019-03-09 Thread Daniel Murray
Hi,friend, This is Daniel Murray and i am from Sinara Group Co.,LTD in Russia. We are glad to know about your company from the web and we are interested in your products. Could you kindly send us your Latest catalog and price list for our trial order. Thanks and Best Regards, Daniel Murray

Re: [PATCH 2/3] soc: brcmstb: dpfe: optimize generic_show()

2019-03-09 Thread Florian Fainelli
On Mon, 11 Feb 2019 17:24:42 -0800, Markus Mayer wrote: > From: Markus Mayer > > We can pass a (struct priv_data *) to generic_show() rather than a > (struct device *). For two of the three callers of this function, the > change means one less call to dev_get_drvdata(). For the third caller, >

Re: [PATCH 3/3] soc: brcmstb: dpfe: use byte 3 of registers MR4-MR8

2019-03-09 Thread Florian Fainelli
On Mon, 11 Feb 2019 17:24:43 -0800, Markus Mayer wrote: > From: Markus Mayer > > For dual-rank LPDDR4, result data for any command is placed in byte 0 > and byte 3 of the corresponding MR register by the firmware. > Single-rank RAM was supposed to work the same way. However, due to a > firmware

Re: [PATCH 1/3] soc: brcmstb: dpfe: use msleep() over udelay()

2019-03-09 Thread Florian Fainelli
On Mon, 11 Feb 2019 17:24:41 -0800, Markus Mayer wrote: > From: Markus Mayer > > To be more "scheduler friendly", we use msleep() rather than udelay() > while we wait for the DCPU to respond. > > Signed-off-by: Markus Mayer > --- Applied to drivers/next, thanks! -- Florian

Re: [GIT PULL 1/2] bcm2835-dt-next-2019-03-04

2019-03-09 Thread Florian Fainelli
On 3/4/2019 4:02 PM, Eric Anholt wrote: > Hi Florian, > > The following changes since commit ab1b4ef966af90ad79fa3c4c124e47915cddde10: > > ARM: dts: bcm2835-rpi-zero-w: Drop unnecessary pinctrl (2019-02-01 11:56:32 > +0100) > > are available in the Git repository at: > >

Re: [PATCH v4 1/2] Provide in-kernel headers for making it easy to extend the kernel

2019-03-09 Thread Karim Yaghmour
Hi Geert, On 3/9/19 2:26 PM, Geert Uytterhoeven wrote: Thanks for the explanation! Happy this was useful :) So how does this work, with kernel images and kernel modules supplied by separate parties, not "bound" by the same kernel headers/API, as they can be replaced separately? The

[PATCH v4] blkcg: prevent priority inversion problem during sync()

2019-03-09 Thread Andrea Righi
When sync(2) is executed from a high-priority cgroup, the process is forced to wait the completion of the entire outstanding writeback I/O, even the I/O that was originally generated by low-priority cgroups potentially. This may cause massive latencies to random processes (even those running in

[tip:sched/urgent 1/5] kernel/sched/cpufreq_schedutil.c:346:40: sparse: error: incompatible types in comparison expression (different type sizes):

2019-03-09 Thread kbuild test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/urgent head: ce28d2e53cda890771360d32259495dd6a9c4253 commit: f1212844e9dc3a31d41f99713c5522acf92ff291 [1/5] sched/cpufreq: Fix 32-bit math overflow reproduce: # apt-get install sparse git checkout

Re: [PATCH 1/5] lib/sort: Make swap functions more generic

2019-03-09 Thread George Spelvin
Andy Shevchenko wrote: > Shouldn't simple memcpy cover these case for both 32- and 64-bit > architectures? Speaking of replacing swap with copying via temporary buffers, one idea that did come to mind was avoiding swap for sufficiently small objects. Every sift-down is actually a circular

Re: [PATCH v5 6/7] refactor header includes to allow kthread.h inclusion in psi_types.h

2019-03-09 Thread kbuild test robot
Hi Suren, Thank you for the patch! Yet something to improve: [auto build test ERROR on linus/master] [also build test ERROR on v5.0] [cannot apply to next-20190306] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [RFC] sched/fair: hard lockup in sched_cfs_period_timer

2019-03-09 Thread Phil Auld
On Wed, Mar 06, 2019 at 11:25:02AM -0800 bseg...@google.com wrote: > Phil Auld writes: > > > On Tue, Mar 05, 2019 at 12:45:34PM -0800 bseg...@google.com wrote: > >> Phil Auld writes: > >> > >> > Interestingly, if I limit the number of child cgroups to the number of > >> > them I'm actually

Re: [PATCH] kbuild: add workaround for Debian make-kpkg

2019-03-09 Thread Ben Hutchings
On Fri, 2019-03-08 at 15:42 +0900, Masahiro Yamada wrote: > On Fri, Mar 8, 2019 at 6:56 AM Ben Hutchings wrote: [...] > > I take it that you don't want kernel-package to be included in buster, > > so can you open an RC bug to say so? > > Also, could you make sure it won't come back to bullseye

Re: [PATCH 1/5] lib/sort: Make swap functions more generic

2019-03-09 Thread Andrey Abramov
> Although I'm thinking of: > > static bool __attribute_const__ > is_aligned(const void *base, size_t size, unsigned char align) > { > unsigned char lsbits = (unsigned char)size; > > (void)base; > #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS > lsbits |= (unsigned char)(uintptr_t)base; > #endif >

[tip:perf/urgent] perf data: Force perf_data__open|close zero data->file.path

2019-03-09 Thread tip-bot for Jiri Olsa
Commit-ID: b8f7d86b5849ea7bb84bddc0345a3799049764d4 Gitweb: https://git.kernel.org/tip/b8f7d86b5849ea7bb84bddc0345a3799049764d4 Author: Jiri Olsa AuthorDate: Tue, 5 Mar 2019 16:25:36 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:21:00 -0300 perf data: Force

[tip:perf/urgent] perf evsel: Probe for precise_ip with simple attr

2019-03-09 Thread tip-bot for Jiri Olsa
Commit-ID: 5b61adb16599be04346e7e943c1b5113b57485ad Gitweb: https://git.kernel.org/tip/5b61adb16599be04346e7e943c1b5113b57485ad Author: Jiri Olsa AuthorDate: Tue, 5 Mar 2019 16:25:34 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:19:45 -0300 perf evsel: Probe

[tip:perf/urgent] perf session: Fix double free in perf_data__close

2019-03-09 Thread tip-bot for Jiri Olsa
Commit-ID: befa09b61f8bf1d7c34b8e6405f08d804640573c Gitweb: https://git.kernel.org/tip/befa09b61f8bf1d7c34b8e6405f08d804640573c Author: Jiri Olsa AuthorDate: Tue, 5 Mar 2019 16:25:35 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:20:33 -0300 perf session: Fix

[tip:perf/urgent] perf hist: Fix memory leak of srcline

2019-03-09 Thread tip-bot for Jiri Olsa
Commit-ID: 2634958586368dcbf09c0d2a17dee02d1fc53e0d Gitweb: https://git.kernel.org/tip/2634958586368dcbf09c0d2a17dee02d1fc53e0d Author: Jiri Olsa AuthorDate: Tue, 5 Mar 2019 16:25:31 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:16:57 -0300 perf hist: Fix

[tip:perf/urgent] perf tools: Read and store caps/max_precise in perf_pmu

2019-03-09 Thread tip-bot for Jiri Olsa
Commit-ID: 90a86bde97ba050cb3c9ccb215252ee2d2d705fa Gitweb: https://git.kernel.org/tip/90a86bde97ba050cb3c9ccb215252ee2d2d705fa Author: Jiri Olsa AuthorDate: Tue, 5 Mar 2019 16:25:32 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:18:17 -0300 perf tools: Read

[tip:perf/urgent] perf hist: Add error path into hist_entry__init

2019-03-09 Thread tip-bot for Jiri Olsa
Commit-ID: c57589106fd6d996dbf3757708baa4a3fb91850f Gitweb: https://git.kernel.org/tip/c57589106fd6d996dbf3757708baa4a3fb91850f Author: Jiri Olsa AuthorDate: Tue, 5 Mar 2019 16:25:30 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:16:30 -0300 perf hist: Add

[tip:perf/urgent] perf c2c: Fix c2c report for empty numa node

2019-03-09 Thread tip-bot for Jiri Olsa
Commit-ID: e34c940245437f36d2c492edd1f8237eff391064 Gitweb: https://git.kernel.org/tip/e34c940245437f36d2c492edd1f8237eff391064 Author: Jiri Olsa AuthorDate: Tue, 5 Mar 2019 16:25:29 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:15:24 -0300 perf c2c: Fix c2c

[tip:perf/urgent] perf script python: Add Python3 support to intel-pt-events.py

2019-03-09 Thread tip-bot for Tony Jones
Commit-ID: fdf2460c297f1bb2f3bd20b3b52903b267af9050 Gitweb: https://git.kernel.org/tip/fdf2460c297f1bb2f3bd20b3b52903b267af9050 Author: Tony Jones AuthorDate: Tue, 5 Mar 2019 08:19:02 -0800 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:12:33 -0300 perf script

[tip:perf/urgent] perf script python: add Python3 support to check-perf-trace.py

2019-03-09 Thread tip-bot for Tony Jones
Commit-ID: 57e604b16362273af6a517abaa6cd1133a7fc732 Gitweb: https://git.kernel.org/tip/57e604b16362273af6a517abaa6cd1133a7fc732 Author: Tony Jones AuthorDate: Fri, 1 Mar 2019 17:18:59 -0800 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:10:46 -0300 perf script

[tip:perf/urgent] perf script python: Add Python3 support to event_analyzing_sample.py

2019-03-09 Thread tip-bot for Tony Jones
Commit-ID: c253c72e9d6723c8b078beb362f050059ef5de39 Gitweb: https://git.kernel.org/tip/c253c72e9d6723c8b078beb362f050059ef5de39 Author: Tony Jones AuthorDate: Fri, 1 Mar 2019 17:19:00 -0800 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:11:11 -0300 perf script

[tip:perf/urgent] perf script python: Add Python3 support to futex-contention.py

2019-03-09 Thread tip-bot for Tony Jones
Commit-ID: de2ec16bd438945813198d4de2339a396904c206 Gitweb: https://git.kernel.org/tip/de2ec16bd438945813198d4de2339a396904c206 Author: Tony Jones AuthorDate: Fri, 1 Mar 2019 17:18:58 -0800 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:10:43 -0300 perf script

[tip:perf/urgent] perf script python: Remove mixed indentation

2019-03-09 Thread tip-bot for Tony Jones
Commit-ID: b504d7f6876515b74c8e27a44ccdb22372616d97 Gitweb: https://git.kernel.org/tip/b504d7f6876515b74c8e27a44ccdb22372616d97 Author: Tony Jones AuthorDate: Fri, 1 Mar 2019 17:18:57 -0800 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:09:14 -0300 perf script

[tip:perf/urgent] perf diff: Support --pid/--tid filter options

2019-03-09 Thread tip-bot for Jin Yao
Commit-ID: c1d3e633e16db3eb64f519c7099171bfcef94b20 Gitweb: https://git.kernel.org/tip/c1d3e633e16db3eb64f519c7099171bfcef94b20 Author: Jin Yao AuthorDate: Tue, 5 Mar 2019 21:05:43 +0800 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:06:16 -0300 perf diff: Support

[tip:perf/urgent] perf diff: Support --cpu filter option

2019-03-09 Thread tip-bot for Jin Yao
Commit-ID: daca23b2007595b6a48255ca08c763f56050d1c5 Gitweb: https://git.kernel.org/tip/daca23b2007595b6a48255ca08c763f56050d1c5 Author: Jin Yao AuthorDate: Tue, 5 Mar 2019 21:05:42 +0800 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:05:21 -0300 perf diff: Support

[tip:perf/urgent] perf diff: Support --time filter option

2019-03-09 Thread tip-bot for Jin Yao
Commit-ID: 4802138d78caed36cee2a859f77fb2035f230018 Gitweb: https://git.kernel.org/tip/4802138d78caed36cee2a859f77fb2035f230018 Author: Jin Yao AuthorDate: Tue, 5 Mar 2019 21:05:41 +0800 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 18:03:23 -0300 perf diff: Support

[tip:perf/urgent] perf thread: Generalize function to copy from thread addr space from intel-bts code

2019-03-09 Thread tip-bot for Andi Kleen
Commit-ID: 153259382633ecbbc0af4f3f0b6515757ebe2984 Gitweb: https://git.kernel.org/tip/153259382633ecbbc0af4f3f0b6515757ebe2984 Author: Andi Kleen AuthorDate: Wed, 6 Mar 2019 17:55:35 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 17:55:35 -0300 perf thread:

[tip:perf/urgent] perf annotate: Calculate the max instruction name, align column to that

2019-03-09 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: bc3bb795345891509b4a3cbff824cbef8c130f20 Gitweb: https://git.kernel.org/tip/bc3bb795345891509b4a3cbff824cbef8c130f20 Author: Arnaldo Carvalho de Melo AuthorDate: Wed, 6 Mar 2019 16:40:15 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 16:40:15 -0300

[tip:perf/urgent] perf clang: Remove needless extra semicolon

2019-03-09 Thread tip-bot for Yang Wei
Commit-ID: a53837a5458c5b84588dfa3fa510c6a29b7bd4d7 Gitweb: https://git.kernel.org/tip/a53837a5458c5b84588dfa3fa510c6a29b7bd4d7 Author: Yang Wei AuthorDate: Mon, 4 Mar 2019 22:36:14 +0800 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 09:47:48 -0300 perf clang: Remove

[tip:perf/urgent] perf bpf: Automatically add BTF ELF markers

2019-03-09 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: 3163613c5bc805dadac8ea157648eefd46747cae Gitweb: https://git.kernel.org/tip/3163613c5bc805dadac8ea157648eefd46747cae Author: Arnaldo Carvalho de Melo AuthorDate: Fri, 1 Mar 2019 16:09:31 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 6 Mar 2019 09:45:37 -0300

[tip:perf/urgent] perf beauty msg_flags: Add missing %s lost when adding prefix suppression logic

2019-03-09 Thread tip-bot for Arnaldo Carvalho de Melo
Commit-ID: c3b81a500f35241a4c16febe0a015e572cf2c492 Gitweb: https://git.kernel.org/tip/c3b81a500f35241a4c16febe0a015e572cf2c492 Author: Arnaldo Carvalho de Melo AuthorDate: Fri, 1 Mar 2019 15:45:35 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 1 Mar 2019 15:45:35 -0300

[tip:perf/urgent] perf scripts python: exported-sql-viewer.py: Factor out CallGraphModelBase

2019-03-09 Thread tip-bot for Adrian Hunter
Commit-ID: 254c0d820b86d7712e03750c58ab104e06e3655d Gitweb: https://git.kernel.org/tip/254c0d820b86d7712e03750c58ab104e06e3655d Author: Adrian Hunter AuthorDate: Thu, 28 Feb 2019 15:00:30 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 1 Mar 2019 14:56:17 -0300 perf scripts

[tip:perf/urgent] perf scripts python: exported-sql-viewer.py: Add call tree

2019-03-09 Thread tip-bot for Adrian Hunter
Commit-ID: ae8b887c00d3fe4ca8c2cba16ae452b5df4c19e2 Gitweb: https://git.kernel.org/tip/ae8b887c00d3fe4ca8c2cba16ae452b5df4c19e2 Author: Adrian Hunter AuthorDate: Thu, 28 Feb 2019 15:00:31 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 1 Mar 2019 15:04:16 -0300 perf scripts

Re: [GIT PULL] Kselftest update for Linux 5.1-rc1

2019-03-09 Thread pr-tracker-bot
The pull request you sent on Wed, 6 Mar 2019 14:04:20 -0700: > git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest > tags/linux-kselftest-5.1-rc1 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/a448c643bc49f14bb3aae68ee7085b4c7f6207d8 Thank you! --

Re: [GIT PULL] gcc-plugin updates for v5.1-rc1

2019-03-09 Thread pr-tracker-bot
The pull request you sent on Mon, 4 Mar 2019 09:48:02 -0800: > https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git > tags/gcc-plugins-v5.1-rc1 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/2bb995405fe52dd893db57456556e8dc4fce35a7 Thank you! --

Re: [GIT PULL] leaking_addresses: changes for v5.1-rc1

2019-03-09 Thread pr-tracker-bot
The pull request you sent on Thu, 7 Mar 2019 13:25:22 +1100: > ssh://g...@gitolite.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git > tags/leaks-5.1-rc1 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/99b25a7fc6150d613be8eab71a47e6c0fcc8d7c5 Thank you! --

Re: [GIT PULL] pstore updates for v5.1-rc1

2019-03-09 Thread pr-tracker-bot
The pull request you sent on Mon, 4 Mar 2019 09:27:51 -0800: > https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git > tags/pstore-v5.1-rc1 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/a39f009acefd85d3e36bcae828a4e67c9dce9684 Thank you! --

Re: [GIT PULL] Documentation for 5.1

2019-03-09 Thread pr-tracker-bot
The pull request you sent on Thu, 7 Mar 2019 15:18:20 -0700: > git://git.lwn.net/linux.git tags/docs-5.1 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/1a29e857507046e413ca7a4a7c9cd32fed9ea255 Thank you! -- Deet-doot-dot, I am a bot.

Re: [GIT PULL] printk for 5.1

2019-03-09 Thread pr-tracker-bot
The pull request you sent on Wed, 6 Mar 2019 15:44:45 +0100: > git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk > tags/printk-for-5.1 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/c4703acd6d4a58dc4b31ad2a8f8b14becb898d25 Thank you! -- Deet-doot-dot, I

Re: [GIT][PULL] smb3 fixes

2019-03-09 Thread pr-tracker-bot
The pull request you sent on Fri, 8 Mar 2019 10:54:02 -0600: > git://git.samba.org/sfrench/cifs-2.6.git tags/5.1-rc-smb3-fixes has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/e519a8c2c3431fbc27e453ff73f5b51df5afe6b5 Thank you! -- Deet-doot-dot, I am a bot.

Re: [GIT PULL] fscrypt updates for v5.1

2019-03-09 Thread pr-tracker-bot
The pull request you sent on Mon, 4 Mar 2019 13:47:22 -0800: > git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git tags/fscrypt-for-linus has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/d1cae94871330cb9f5fdcea34529abf7917e682e Thank you! -- Deet-doot-dot, I am a

[tip:perf/urgent] perf scripts python: exported-sql-viewer.py: Improve TreeModel abstraction

2019-03-09 Thread tip-bot for Adrian Hunter
Commit-ID: a448ba232a5f0176c226df1bab8877ec06a7c771 Gitweb: https://git.kernel.org/tip/a448ba232a5f0176c226df1bab8877ec06a7c771 Author: Adrian Hunter AuthorDate: Thu, 28 Feb 2019 15:00:29 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 1 Mar 2019 14:55:32 -0300 perf scripts

[tip:perf/urgent] perf scripts python: exported-sql-viewer.py: Factor out TreeWindowBase

2019-03-09 Thread tip-bot for Adrian Hunter
Commit-ID: a731cc4c990a90d9d42a2081ca93fb4310680ae2 Gitweb: https://git.kernel.org/tip/a731cc4c990a90d9d42a2081ca93fb4310680ae2 Author: Adrian Hunter AuthorDate: Thu, 28 Feb 2019 15:00:28 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 1 Mar 2019 14:54:39 -0300 perf scripts

[tip:perf/urgent] perf scripts python: export-to-postgresql.py: Fix invalid input syntax for integer error

2019-03-09 Thread tip-bot for Adrian Hunter
Commit-ID: 07c5ebead85f507271fb8e2a8b5814e486702518 Gitweb: https://git.kernel.org/tip/07c5ebead85f507271fb8e2a8b5814e486702518 Author: Adrian Hunter AuthorDate: Thu, 28 Feb 2019 15:00:26 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 1 Mar 2019 14:53:12 -0300 perf scripts

[tip:perf/urgent] perf scripts python: export-to-postgresql.py: Export calls parent_id

2019-03-09 Thread tip-bot for Adrian Hunter
Commit-ID: febce6dc1f5167e683d6e3c3d0f6ab7f98201ea8 Gitweb: https://git.kernel.org/tip/febce6dc1f5167e683d6e3c3d0f6ab7f98201ea8 Author: Adrian Hunter AuthorDate: Thu, 28 Feb 2019 15:00:27 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 1 Mar 2019 14:53:33 -0300 perf scripts

  1   2   3   >