Re: [PATCH] linux/bits.h: Add compile time sanity check of GENMASK inputs

2019-08-04 Thread Masahiro Yamada
On Sun, Aug 4, 2019 at 3:36 AM Rikard Falkeborn wrote: > > On Sat, Aug 03, 2019 at 12:12:46PM +0900, Masahiro Yamada wrote: > > On Sat, Aug 3, 2019 at 12:03 PM Masahiro Yamada > > wrote: > > > > > > > > BTW, v2 is already inconsistent. > > > If you wanted GENMASK_INPUT_CHECK() to return

[PATCH] habanalabs: Update DRAM consumption on context tear down

2019-08-04 Thread Tomer Tayar
The patch adds a missing update of the DRAM memory consumption, when a context is being torn down without an organized release of the allocated memory. Signed-off-by: Tomer Tayar --- drivers/misc/habanalabs/memory.c | 2 ++ 1 file changed, 2 insertions(+) diff --git

Re: [PATCH] Fix lines greater than 80 characters

2019-08-04 Thread Greg Kroah-Hartman
On Sun, Aug 04, 2019 at 08:34:53AM +0530, z3phyr wrote: > Fix checkpatch error for "line over 80 characters" > > Signed-off-by: z3phyr > --- > drivers/staging/pi433/pi433_if.h | 23 +++ > 1 file changed, 15 insertions(+), 8 deletions(-) Hi, This is the friendly patch-bot

Re: [PATCH 5.2 00/20] 5.2.6-stable review

2019-08-04 Thread Greg Kroah-Hartman
On Sat, Aug 03, 2019 at 09:00:11AM -0700, Guenter Roeck wrote: > On 8/2/19 2:39 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 5.2.6 release. > > There are 20 patches in this series, all will be posted as a response > > to this one. If anyone has any issues

Re: [PATCH v2] net/mlx5e: always initialize frag->last_in_page

2019-08-04 Thread Tariq Toukan
On 8/1/2019 4:52 PM, Qian Cai wrote: > The commit 069d11465a80 ("net/mlx5e: RX, Enhance legacy Receive Queue > memory scheme") introduced an undefined behaviour below due to > "frag->last_in_page" is only initialized in mlx5e_init_frags_partition() > when, > > if (next_frag.offset +

Re: [PATCH V2 7/9] vhost: do not use RCU to synchronize MMU notifier with worker

2019-08-04 Thread Michael S. Tsirkin
On Sat, Aug 03, 2019 at 09:14:00PM -0300, Jason Gunthorpe wrote: > On Sat, Aug 03, 2019 at 05:36:13PM -0400, Michael S. Tsirkin wrote: > > On Fri, Aug 02, 2019 at 02:24:18PM -0300, Jason Gunthorpe wrote: > > > On Fri, Aug 02, 2019 at 10:27:21AM -0400, Michael S. Tsirkin wrote: > > > > On Fri, Aug

[PATCH 0/3] x86/irq: slightly improve handle_irq

2019-08-04 Thread Heiner Kallweit
When checking something else I stumbled across this code. This patch set simplifies it a little bit. Heiner Kallweit (3): x86/irq: improve definition of VECTOR_SHUTDOWN et al x86/irq: factor out IS_ERR_OR_NULL check from platfom-specific handle_irq x86/irq: slightly improve do_IRQ

[PATCH 3/3] x86/irq: slightly improve do_IRQ

2019-08-04 Thread Heiner Kallweit
It's simpler and more intuitive to directly check for VECTOR_UNUSED. Signed-off-by: Heiner Kallweit --- arch/x86/kernel/irq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c index 042f363a8..2f1a78c4d 100644 ---

[PATCH 1/3] x86/irq: improve definition of VECTOR_SHUTDOWN et al

2019-08-04 Thread Heiner Kallweit
These values are used with IS_ERR(), so it's more intuitive to define them like a standard PTR_ERR() of a negative errno. Signed-off-by: Heiner Kallweit --- arch/x86/include/asm/hw_irq.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/include/asm/hw_irq.h

[PATCH 2/3] x86/irq: factor out IS_ERR_OR_NULL check from platfom-specific handle_irq

2019-08-04 Thread Heiner Kallweit
The code can be simplified a little by factoring out the IS_ERR_OR_NULL check from the platform-specific handle_irq implementations. Signed-off-by: Heiner Kallweit --- arch/x86/include/asm/irq.h | 2 +- arch/x86/kernel/irq.c | 5 +++-- arch/x86/kernel/irq_32.c | 7 +--

Re: [PATCH v4 3/4] net: phy: realtek: Add helpers for accessing RTL8211E extension pages

2019-08-04 Thread Heiner Kallweit
On 01.08.2019 21:07, Matthias Kaehlcke wrote: > The RTL8211E has extension pages, which can be accessed after > selecting a page through a custom method. Add a function to > modify bits in a register of an extension page and a helper for > selecting an ext page. Use rtl8211e_modify_ext_paged() in

Re: [PATCH net-next 1/2] net: phy: broadcom: set features explicitly for BCM54616S

2019-08-04 Thread Heiner Kallweit
On 01.08.2019 07:20, Tao Ren wrote: > On 7/30/19 11:00 PM, Tao Ren wrote: >> On 7/30/19 10:53 PM, Heiner Kallweit wrote: >>> On 31.07.2019 02:12, Tao Ren wrote: On 7/29/19 11:00 PM, Heiner Kallweit wrote: > On 30.07.2019 07:05, Tao Ren wrote: >> On 7/29/19 8:35 PM, Andrew Lunn wrote:

Let's talk about the elephant in the room - the Linux kernel's inability to gracefully handle low memory pressure

2019-08-04 Thread Artem S. Tashkinov
Hello, There's this bug which has been bugging many people for many years already and which is reproducible in less than a few minutes under the latest and greatest kernel, 5.2.6. All the kernel parameters are set to defaults. Steps to reproduce: 1) Boot with mem=4G 2) Disable swap to make

Re: [PATCH] kconfig: ignore auto-generated file

2019-08-04 Thread Matteo Croce
On August 4, 2019 5:04:07 AM GMT+02:00, Masahiro Yamada wrote: > On Sun, Aug 4, 2019 at 1:30 AM Matteo Croce wrote: > > > > On Sun, Jul 28, 2019 at 8:23 PM Matteo Croce > wrote: > > > > > > scripts/kconfig/zconf.hash.c is autogenerated during the build, > > > let's add it to the directory

[PATCH] ext4 crypto: fix to check feature status before get policy

2019-08-04 Thread Chao Yu
From: Chao Yu When getting fscrypto policy via EXT4_IOC_GET_ENCRYPTION_POLICY, if encryption feature is off, it's better to return EOPNOTSUPP instead of ENODATA, so let's add ext4_has_feature_encrypt() to do the check for that. Signed-off-by: Chao Yu --- fs/ext4/ioctl.c | 6 -- 1 file

Re: [PATCH] arm64: dts: rockchip: Add dts for Leez RK3399 P710 SBC

2019-08-04 Thread Heiko Stuebner
Hi Andy, Am Sonntag, 4. August 2019, 10:38:26 CEST schrieb Andy Yan: > Heiko Stuebner 于2019年8月4日周日 上午8:34写道: > > Am Samstag, 3. August 2019, 13:46:12 CEST schrieb Andy Yan: > > > Leez P710 is a RK3399 based SBC, designed by Leez team > > > from lenovo [0]. > > > > > > Specification > > > -

Linux 4.9.187

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

Linux 4.4.187

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

Re: Linux 4.14.136

2019-08-04 Thread Greg KH
diff --git a/Documentation/devicetree/bindings/serial/mvebu-uart.txt b/Documentation/devicetree/bindings/serial/mvebu-uart.txt index 6087defd9f93..d37fabe17bd1 100644 --- a/Documentation/devicetree/bindings/serial/mvebu-uart.txt +++ b/Documentation/devicetree/bindings/serial/mvebu-uart.txt @@

Linux 4.19.64

2019-08-04 Thread Greg KH
I'm announcing the release of the 4.19.64 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

Linux 4.14.136

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

Linux 5.2.6

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

Re: Linux 4.19.64

2019-08-04 Thread Greg KH
diff --git a/Makefile b/Makefile index 8ad77a93de30..203d9e80a315 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 4 PATCHLEVEL = 19 -SUBLEVEL = 63 +SUBLEVEL = 64 EXTRAVERSION = NAME = "People's Front" diff --git

Re: Linux 5.2.6

2019-08-04 Thread Greg KH
diff --git a/Makefile b/Makefile index 78bd926c8439..3cd40f1a8f75 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 5 PATCHLEVEL = 2 -SUBLEVEL = 5 +SUBLEVEL = 6 EXTRAVERSION = NAME = Bobtail Squid diff --git a/arch/sh/boards/Kconfig

Re: [PATCH 2/2] perf unwind: fix libunwind when tid != pid

2019-08-04 Thread John Keeping
On Fri, 2 Aug 2019 15:30:39 +0200 Jiri Olsa wrote: > On Mon, Jul 29, 2019 at 06:24:30PM +0100, John Keeping wrote: > > Commit e5adfc3e7e77 ("perf map: Synthesize maps only for thread group > > leader") changed the recording side so that we no longer get mmap events > > for threads other than the

[GIT PULL] Please pull powerpc/linux.git powerpc-5.3-3 tag

2019-08-04 Thread Michael Ellerman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hi Linus, Please pull some more powerpc fixes for 5.3: The following changes since commit 609488bc979f99f805f34e9a32c1e3b71179d10b: Linux 5.3-rc2 (2019-07-28 12:47:02 -0700) are available in the git repository at:

bios and memtest86+ show different memory cas latency as linux kernel, ram speed explained, how, why?

2019-08-04 Thread Jelle de Jong
Hello everybody, memtest86+ shows latency 9-9-9-24 with dimm part 36JSF2G72PZ-1G9E1 memtest86+ shows latency 9-9-9-23 with dimm part 9965516-115.A00LF memtest86+ shows latency 9-9-9-23 with both dimm part 9965516-115.A00LF and 36JSF2G72PZ-1G9E1

Re: [PATCH] PCI: Add sysfs attribute for disabling PCIe link to downstream component

2019-08-04 Thread Wu Hao
On Thu, Aug 01, 2019 at 04:53:39PM -0500, Bjorn Helgaas wrote: > [+cc FPGA folks, just FYI; I'm pretty sure PCI could do a much better > job supporting FPGAs, so any input is welcome!] > > On Wed, Jul 03, 2019 at 06:03:41PM +0300, Mika Westerberg wrote: > > On Wed, Jul 03, 2019 at 08:39:53AM

Re: Linux 5.2.6

2019-08-04 Thread Bhaskar Chowdhury
Thanks, a bunch Greg! :) On 12:14 Sun 04 Aug 2019, Greg KH wrote: I'm announcing the release of the 5.2.6 kernel. All users of the 5.2 kernel series must upgrade. The updated 5.2.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git

Re: [PATCH v7 07/20] clk: tegra: clk-periph: Add save and restore support

2019-08-04 Thread Dmitry Osipenko
04.08.2019 2:44, Sowjanya Komatineni пишет: > > On 8/3/19 10:01 AM, Sowjanya Komatineni wrote: >> >> On 8/3/19 3:33 AM, Dmitry Osipenko wrote: >>> 03.08.2019 2:51, Sowjanya Komatineni пишет: On 8/2/19 2:15 PM, Dmitry Osipenko wrote: > 02.08.2019 23:32, Sowjanya Komatineni пишет: >>

Re: [PATCH v7 07/20] clk: tegra: clk-periph: Add save and restore support

2019-08-04 Thread Dmitry Osipenko
04.08.2019 15:24, Dmitry Osipenko пишет: > 04.08.2019 2:44, Sowjanya Komatineni пишет: >> >> On 8/3/19 10:01 AM, Sowjanya Komatineni wrote: >>> >>> On 8/3/19 3:33 AM, Dmitry Osipenko wrote: 03.08.2019 2:51, Sowjanya Komatineni пишет: > On 8/2/19 2:15 PM, Dmitry Osipenko wrote: >>

Re: [PATCH 0/3] Use refcount_t for refcount

2019-08-04 Thread Leon Romanovsky
On Fri, Aug 02, 2019 at 08:10:35PM +0800, Chuhong Yuan wrote: > Reference counters are preferred to use refcount_t instead of > atomic_t. > This is because the implementation of refcount_t can prevent > overflows and detect possible use-after-free. > > First convert the refcount field to

Re: [PATCH v2 0/3] Use refcount_t for refcount

2019-08-04 Thread Leon Romanovsky
On Sat, Aug 03, 2019 at 01:23:34AM +0800, Chuhong Yuan wrote: > Reference counters are preferred to use refcount_t instead of > atomic_t. > This is because the implementation of refcount_t can prevent > overflows and detect possible use-after-free. > > First convert the refcount field to

Re: [PATCH v2] net/mlx5e: Use refcount_t for refcount

2019-08-04 Thread Leon Romanovsky
On Sat, Aug 03, 2019 at 12:48:28AM +0800, Chuhong Yuan wrote: > refcount_t is better for reference counters since its > implementation can prevent overflows. > So convert atomic_t ref counters to refcount_t. I'm not thrilled to see those automatic conversion patches, especially for flows which

[PATCH] platform/x86: touchscreen_dmi: Add info for the Irbis TW90 tablet

2019-08-04 Thread Hans de Goede
Add touchscreen info for the Irbis TW90 tablet. Reported-by: russianneuroman...@ya.ru Signed-off-by: Hans de Goede --- drivers/platform/x86/touchscreen_dmi.c | 26 ++ 1 file changed, 26 insertions(+) diff --git a/drivers/platform/x86/touchscreen_dmi.c

Re: [PATCH 6/7] mtd: spi-nor: Rework the SPI NOR lock/unlock logic

2019-08-04 Thread Vignesh Raghavendra
Hi Tudor, On 31-Jul-19 2:33 PM, tudor.amba...@microchip.com wrote: > From: Boris Brezillon > > Move the locking hooks in a separate struct so that we have just > one field to update when we change the locking implementation. > > stm_locking_ops, the legacy locking operations, can be

Re: [PATCH v2] net/mlx5e: Use refcount_t for refcount

2019-08-04 Thread Chuhong Yuan
On Sun, Aug 4, 2019 at 8:59 PM Leon Romanovsky wrote: > > On Sat, Aug 03, 2019 at 12:48:28AM +0800, Chuhong Yuan wrote: > > refcount_t is better for reference counters since its > > implementation can prevent overflows. > > So convert atomic_t ref counters to refcount_t. > > I'm not thrilled to

Re: [PATCH RFC tip/core/rcu 14/14] rcu/nohz: Make multi_cpu_stop() enable tick on all online CPUs

2019-08-04 Thread Peter Zijlstra
On Fri, Aug 02, 2019 at 08:15:01AM -0700, Paul E. McKenney wrote: > The multi_cpu_stop() function relies on the scheduler to gain control from > whatever is running on the various online CPUs, including any nohz_full > CPUs running long loops in kernel-mode code. Lack of the scheduler-clock >

Re: [PATCH RFC tip/core/rcu 14/14] rcu/nohz: Make multi_cpu_stop() enable tick on all online CPUs

2019-08-04 Thread Peter Zijlstra
On Sun, Aug 04, 2019 at 04:43:17PM +0200, Peter Zijlstra wrote: > On Fri, Aug 02, 2019 at 08:15:01AM -0700, Paul E. McKenney wrote: > > The multi_cpu_stop() function relies on the scheduler to gain control from > > whatever is running on the various online CPUs, including any nohz_full > > CPUs

Re: [PATCH RFC tip/core/rcu 01/14] rcu/nocb: Atomic ->len field in rcu_segcblist structure

2019-08-04 Thread Peter Zijlstra
On Fri, Aug 02, 2019 at 08:14:48AM -0700, Paul E. McKenney wrote: > +/* > + * Exchange the numeric length of the specified rcu_segcblist structure > + * with the specified value. This can cause the ->len field to disagree > + * with the actual number of callbacks on the structure. This exchange

Re: [PATCH net-next v3] net: phy: broadcom: add 1000Base-X support for BCM54616S

2019-08-04 Thread Andrew Lunn
> > The patchset looks better now. But is it ok, I wonder, to keep > > PHY_BCM_FLAGS_MODE_1000BX in phydev->dev_flags, considering that > > phy_attach_direct is overwriting it? > > I checked ftgmac100 driver (used on my machine) and it calls > phy_connect_direct which passes phydev->dev_flags

Re: [PATCH RFC tip/core/rcu 01/14] rcu/nocb: Atomic ->len field in rcu_segcblist structure

2019-08-04 Thread Peter Zijlstra
On Sun, Aug 04, 2019 at 04:50:51PM +0200, Peter Zijlstra wrote: > On Fri, Aug 02, 2019 at 08:14:48AM -0700, Paul E. McKenney wrote: > > +/* > > + * Exchange the numeric length of the specified rcu_segcblist structure > > + * with the specified value. This can cause the ->len field to disagree > >

Re: [RFC PATCH 1/2] dt-bindings: net: macb: Add new property for PS SGMII only

2019-08-04 Thread Andrew Lunn
On Wed, Jul 31, 2019 at 03:10:32PM +0530, Harini Katakam wrote: > Add a new property to indicate when PS SGMII is used with NO > external PHY on board. Hi Harini What exactly is you use case? Are you connecting to a Ethernet switch? To an SFP cage with a copper module? Andrew

Re: [PATCH 0/3] Use refcount_t for refcount

2019-08-04 Thread Chuhong Yuan
On Sun, Aug 4, 2019 at 8:48 PM Leon Romanovsky wrote: > > On Fri, Aug 02, 2019 at 08:10:35PM +0800, Chuhong Yuan wrote: > > Reference counters are preferred to use refcount_t instead of > > atomic_t. > > This is because the implementation of refcount_t can prevent > > overflows and detect

Re: [PATCH net] net: dsa: mv88e6xxx: drop adjust_link to enabled phylink

2019-08-04 Thread Andrew Lunn
On Wed, Jul 31, 2019 at 05:42:39PM +0200, Hubert Feurstein wrote: > We have to drop the adjust_link callback in order to finally migrate to > phylink. > > Otherwise we get the following warning during startup: > "mv88e6xxx 2188000.ethernet-1:10: Using legacy PHYLIB callbacks. Please >

Re: [PATCH net] net: dsa: mv88e6xxx: drop adjust_link to enabled phylink

2019-08-04 Thread Andrew Lunn
On Wed, Jul 31, 2019 at 05:42:39PM +0200, Hubert Feurstein wrote: > We have to drop the adjust_link callback in order to finally migrate to > phylink. > > Otherwise we get the following warning during startup: > "mv88e6xxx 2188000.ethernet-1:10: Using legacy PHYLIB callbacks. Please >

[PATCH] pinctrl: rzn1: Add of_node_put() before return

2019-08-04 Thread Nishka Dasgupta
Each iteration of for_each_child_of_node puts the previous node, but in the case of a return from the middle of the loop, there is no put, thus causing a memory leak. Hence add an of_node_put before the return in three places. Issue found with Coccinelle. Signed-off-by: Nishka Dasgupta ---

Re: [PATCH net-next v3] net: phy: broadcom: add 1000Base-X support for BCM54616S

2019-08-04 Thread Vladimir Oltean
On Sun, 4 Aug 2019 at 17:52, Andrew Lunn wrote: > > > > The patchset looks better now. But is it ok, I wonder, to keep > > > PHY_BCM_FLAGS_MODE_1000BX in phydev->dev_flags, considering that > > > phy_attach_direct is overwriting it? > > > > > I checked ftgmac100 driver (used on my machine) and it

Re: [PATCH net-next v3] net: phy: broadcom: add 1000Base-X support for BCM54616S

2019-08-04 Thread Heiner Kallweit
On 04.08.2019 17:59, Vladimir Oltean wrote: > On Sun, 4 Aug 2019 at 17:52, Andrew Lunn wrote: >> The patchset looks better now. But is it ok, I wonder, to keep PHY_BCM_FLAGS_MODE_1000BX in phydev->dev_flags, considering that phy_attach_direct is overwriting it? >>> >> >>> I checked

[GIT PULL] Kbuild fixes for v5.3-rc3

2019-08-04 Thread Masahiro Yamada
Hi Linus, Please pull some more Kbuild fixes. Thanks! The following changes since commit 609488bc979f99f805f34e9a32c1e3b71179d10b: Linux 5.3-rc2 (2019-07-28 12:47:02 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git

[PATCH] regulator: core: Add of_node_put() before return

2019-08-04 Thread Nishka Dasgupta
Each iteration of for_each_child_of_node puts the previous node, but in the case of a return from the middle of the loop, there is no put, thus causing a memory leak. Hence add an of_node_put before the return in two places. Issue found with Coccinelle. Signed-off-by: Nishka Dasgupta ---

Re: [PATCH net-next v3] net: phy: broadcom: add 1000Base-X support for BCM54616S

2019-08-04 Thread Andrew Lunn
> > Even if that were the case (patching phy_attach_direct to apply a > > logical-or to dev_flags), it sounds fishy to me that the genphy code > > is unable to determine that this PHY is running in 1000Base-X mode. > > > > In my opinion it all boils down to this warning: > > > > "PHY advertising

[PATCH] phy: qualcomm: phy-qcom-qmp: Add of_node_put() before return

2019-08-04 Thread Nishka Dasgupta
Each iteration of for_each_available_child_of_node puts the previous node, but in the case of a return from the middle of the loop, there is no put, thus causing a memory leak. Hence add an of_node_put before the return in two places. Issue found with Coccinelle. Signed-off-by: Nishka Dasgupta

[PATCH] soc: qcom: smp2p: Add of_node_put() at goto

2019-08-04 Thread Nishka Dasgupta
Each iteration of for_each_available_child_of_node puts the previous node, but in the case of a goto from the middle of the loop, there is no put, thus causing a memory leak. Hence make the gotos within the loop first go to a new label where an of_node_put() puts the last used node, before falling

Re: [GIT PULL] SafeSetID MAINTAINERS file update for v5.3

2019-08-04 Thread Linus Torvalds
On Thu, Aug 1, 2019 at 11:11 AM Micah Morton wrote: > > Add entry in MAINTAINERS file for SafeSetID LSM. So I've pulled this now. However, I have to say that I'm now very nervous about future pulls, simply because the last one had basically everything that can be wrong be wrong. Random

Re: [GIT PULL] Kbuild fixes for v5.3-rc3

2019-08-04 Thread pr-tracker-bot
The pull request you sent on Mon, 5 Aug 2019 01:07:14 +0900: > git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git > tags/kbuild-fixes-v5.3-2 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/05e4f88b7d25fa8bf65b846f05197c47ddece278 Thank you! --

Re: [GIT PULL] Please pull powerpc/linux.git powerpc-5.3-3 tag

2019-08-04 Thread Linus Torvalds
On Sun, Aug 4, 2019 at 4:49 AM Michael Ellerman wrote: > > Please pull some more powerpc fixes for 5.3: Hmm. This was caught by the gmail spam-filter for some reason. I don't see anything particularly different from your normal pull requests, so don't ask me why. The fact that you have no email

Re: [GIT PULL] Please pull powerpc/linux.git powerpc-5.3-3 tag

2019-08-04 Thread pr-tracker-bot
The pull request you sent on Sun, 04 Aug 2019 21:49:44 +1000: > https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git > tags/powerpc-5.3-3 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/4b6f23161b4e888e72671e377c32eabe9a8e62fc Thank you! --

Re: [GIT PULL] SafeSetID MAINTAINERS file update for v5.3

2019-08-04 Thread Linus Torvalds
On Thu, Aug 1, 2019 at 11:11 AM Micah Morton wrote: > > The following changes since commit 609488bc979f99f805f34e9a32c1e3b71179d10b: > > Linux 5.3-rc2 (2019-07-28 12:47:02 -0700) > > are available in the Git repository at: > > https://github.com/micah-morton/linux.git >

Re: [PATCH 4/9] clk: qcom: Don't reference clk_init_data after registration

2019-08-04 Thread Taniya Das
On 8/1/2019 1:05 AM, Stephen Boyd wrote: A future patch is going to change semantics of clk_register() so that clk_hw::init is guaranteed to be NULL after a clk is registered. Avoid referencing this member here so that we don't run into NULL pointer exceptions. Cc: Taniya Das Cc: Andy Gross

Re: [RFC PATCH] compiler_attributes.h: Add 'fallthrough' pseudo keyword for switch/case use

2019-08-04 Thread Joe Perches
On Tue, 2019-07-30 at 22:35 -0700, Joe Perches wrote: > Reserve the pseudo keyword 'fallthrough' for the ability to convert the > various case block /* fallthrough */ style comments to appear to be an > actual reserved word with the same gcc case block missing fallthrough > warning capability.

Re: [RFC PATCH] compiler_attributes.h: Add 'fallthrough' pseudo keyword for switch/case use

2019-08-04 Thread Linus Torvalds
On Sun, Aug 4, 2019 at 11:01 AM Joe Perches wrote: > > Linus? Do you have an opinion about this RFC/patch? So my only real concern is that the comment approach has always been the really traditional one, going back all the way to 'lint' days. And you obviously cannot use a #define to create a

[PATCH] Fix the following checkpatch warnings:

2019-08-04 Thread Giridhar Prasath R
WARNING: line over 80 characters FILE: drivers/staging/pi433/pi433_if.h Signed-off-by: Giridhar Prasath R --- drivers/staging/pi433/pi433_if.h | 23 --- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/drivers/staging/pi433/pi433_if.h

Re: [PATCH 7/8] thunderbolt: Add support for Intel Ice Lake

2019-08-04 Thread Lukas Wunner
On Fri, Jul 05, 2019 at 12:57:59PM +0300, Mika Westerberg wrote: > @@ -891,16 +1020,23 @@ static int nhi_resume_noirq(struct device *dev) > { > struct pci_dev *pdev = to_pci_dev(dev); > struct tb *tb = pci_get_drvdata(pdev); > + int ret; > + > + ret = nhi_power_up(tb->nhi);

[PATCH] staging: pi433 line over 80 characters in multiple places

2019-08-04 Thread Giridhar Prasath R
Fix the following checkpatch warnings: WARNING: line over 80 characters FILE: drivers/staging/pi433/pi433_if.h Signed-off-by: Giridhar Prasath R --- drivers/staging/pi433/pi433_if.h | 23 --- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git

Re: [PATCH RFC tip/core/rcu 14/14] rcu/nohz: Make multi_cpu_stop() enable tick on all online CPUs

2019-08-04 Thread Paul E. McKenney
On Sun, Aug 04, 2019 at 04:48:35PM +0200, Peter Zijlstra wrote: > On Sun, Aug 04, 2019 at 04:43:17PM +0200, Peter Zijlstra wrote: > > On Fri, Aug 02, 2019 at 08:15:01AM -0700, Paul E. McKenney wrote: > > > The multi_cpu_stop() function relies on the scheduler to gain control from > > > whatever is

Re: [PATCH RFC tip/core/rcu 01/14] rcu/nocb: Atomic ->len field in rcu_segcblist structure

2019-08-04 Thread Paul E. McKenney
On Sun, Aug 04, 2019 at 04:50:51PM +0200, Peter Zijlstra wrote: > On Fri, Aug 02, 2019 at 08:14:48AM -0700, Paul E. McKenney wrote: > > +/* > > + * Exchange the numeric length of the specified rcu_segcblist structure > > + * with the specified value. This can cause the ->len field to disagree > >

Re: [PATCH RFC tip/core/rcu 01/14] rcu/nocb: Atomic ->len field in rcu_segcblist structure

2019-08-04 Thread Paul E. McKenney
On Sun, Aug 04, 2019 at 04:52:46PM +0200, Peter Zijlstra wrote: > On Sun, Aug 04, 2019 at 04:50:51PM +0200, Peter Zijlstra wrote: > > On Fri, Aug 02, 2019 at 08:14:48AM -0700, Paul E. McKenney wrote: > > > +/* > > > + * Exchange the numeric length of the specified rcu_segcblist structure > > > + *

Re: [PATCH net-next v3] net: phy: broadcom: add 1000Base-X support for BCM54616S

2019-08-04 Thread Vladimir Oltean
On Sun, 4 Aug 2019 at 19:07, Heiner Kallweit wrote: > > On 04.08.2019 17:59, Vladimir Oltean wrote: > > On Sun, 4 Aug 2019 at 17:52, Andrew Lunn wrote: > >> > The patchset looks better now. But is it ok, I wonder, to keep > PHY_BCM_FLAGS_MODE_1000BX in phydev->dev_flags, considering

Re: [PATCH tip/core/rcu 03/11] rcu/nocb: Provide separate no-CBs grace-period kthreads

2019-08-04 Thread Joel Fernandes
On Sat, Aug 03, 2019 at 12:46:11PM -0700, Paul E. McKenney wrote: > On Sat, Aug 03, 2019 at 01:41:27PM -0400, Joel Fernandes wrote: > > On Thu, Aug 01, 2019 at 03:50:20PM -0700, Paul E. McKenney wrote: > > > Currently, there is one no-CBs rcuo kthread per CPU, and these kthreads > > > are divided

Re: [PATCH] net: sctp: Rename fallthrough label to unhandled

2019-08-04 Thread Neil Horman
On Fri, Aug 02, 2019 at 04:19:32PM -0700, David Miller wrote: > From: Joe Perches > Date: Fri, 02 Aug 2019 10:47:34 -0700 > > > On Wed, 2019-07-31 at 08:16 -0400, Neil Horman wrote: > >> On Wed, Jul 31, 2019 at 04:32:43AM -0700, Joe Perches wrote: > >> > On Wed, 2019-07-31 at 07:19 -0400, Neil

Re: [PATCH net] net: dsa: mv88e6xxx: drop adjust_link to enabled phylink

2019-08-04 Thread Vladimir Oltean
On Wed, 31 Jul 2019 at 18:43, Hubert Feurstein wrote: > > We have to drop the adjust_link callback in order to finally migrate to > phylink. > > Otherwise we get the following warning during startup: > "mv88e6xxx 2188000.ethernet-1:10: Using legacy PHYLIB callbacks. Please >migrate to

Re: [RFC PATCH] compiler_attributes.h: Add 'fallthrough' pseudo keyword for switch/case use

2019-08-04 Thread Miguel Ojeda
On Sun, Aug 4, 2019 at 8:09 PM Linus Torvalds wrote: > > So my only real concern is that the comment approach has always been > the really traditional one, going back all the way to 'lint' days. > > And you obviously cannot use a #define to create a comment, so this > whole keyword model will

Re: [PATCH] ARM: dts: meson8b: add ethernet fifo sizes

2019-08-04 Thread Aymeric
Le 23/07/2019 à 21:56, Martin Blumenstingl a écrit : > On Thu, Jul 18, 2019 at 11:36 AM Jerome Brunet wrote: >> If unspecified in DT, the fifo sizes are not automatically detected by >> the dwmac1000 dma driver and the reported fifo sizes default to 0. >> Because of this, flow control will be

Re: [PATCH 1/2] PCI: pciehp: Do not disable interrupt twice on suspend

2019-08-04 Thread Lukas Wunner
On Tue, Jun 18, 2019 at 03:50:50PM +0300, Mika Westerberg wrote: > @@ -313,10 +332,12 @@ static struct pcie_port_service_driver hpdriver_portdrv > = { > .remove = pciehp_remove, > > #ifdef CONFIG_PM > +#ifdef CONFIG_PM_SLEEP > .suspend= pciehp_suspend, >

Re: [PATCH 1/1] block: Use bits.h macros to improve readability

2019-08-04 Thread Joe Perches
On Fri, 2019-08-02 at 21:18 -0700, Jens Axboe wrote: > On 8/1/19 6:00 PM, Leonardo Bras wrote: > > Applies some bits.h macros in order to improve readability of > > linux/blk_types.h. [] > I know precisely what that does, whereas I have to think about the other > one, maybe even look it up to be

Re: [PATCH RFC tip/core/rcu 14/14] rcu/nohz: Make multi_cpu_stop() enable tick on all online CPUs

2019-08-04 Thread Paul E. McKenney
On Sun, Aug 04, 2019 at 11:41:59AM -0700, Paul E. McKenney wrote: > On Sun, Aug 04, 2019 at 04:48:35PM +0200, Peter Zijlstra wrote: > > On Sun, Aug 04, 2019 at 04:43:17PM +0200, Peter Zijlstra wrote: > > > On Fri, Aug 02, 2019 at 08:15:01AM -0700, Paul E. McKenney wrote: > > > > The

Re: [PATCH] powerpc: Remove inaccessible CMDLINE default

2019-08-04 Thread Chris Packham
On Fri, 2019-08-02 at 07:18 +0200, Christophe Leroy wrote: > > Le 02/08/2019 à 07:02, Chris Packham a écrit : > > > > Since commit cbe46bd4f510 ("powerpc: remove CONFIG_CMDLINE #ifdef > > mess") > > CONFIG_CMDLINE has always had a value regardless of > > CONNIG_CMDLINE_BOOL. > s/CONNIG/CONFIG/ >

[PATCH v4 2/2] soc/tegra: pmc: Remove unnecessary memory barrier

2019-08-04 Thread Dmitry Osipenko
The removed barrier isn't needed because the writes/reads are strictly ordered and even if PMC had separate ports for the writes, it wouldn't matter since the hardware logic takes into effect after triggering CPU's power-gating and at that point all CPU accesses are guaranteed to be completed.

[PATCH v4 1/2] soc/tegra: pmc: Query PCLK clock rate at probe time

2019-08-04 Thread Dmitry Osipenko
It is possible to get a lockup if kernel decides to enter LP2 cpuidle from some clk-notifier, in that case CCF's "prepare" mutex is kept locked and thus clk_get_rate(pclk) blocks on the same mutex with interrupts being disabled. Signed-off-by: Dmitry Osipenko --- Changelog: v4: Added

Re: [PATCH 1/1] block: Use bits.h macros to improve readability

2019-08-04 Thread Jens Axboe
On 8/4/19 1:17 PM, Joe Perches wrote: > On Fri, 2019-08-02 at 21:18 -0700, Jens Axboe wrote: >> On 8/1/19 6:00 PM, Leonardo Bras wrote: >>> Applies some bits.h macros in order to improve readability of >>> linux/blk_types.h. > [] >> I know precisely what that does, whereas I have to think about

[PATCH] bpf.2: update enum bpf_map_type and enum bpf_prog_type

2019-08-04 Thread Peter Wu
Taken from Linux v5.3-rc2. Add a reference to the header file to save the future reader some time figuring out whether more entries exist. Signed-off-by: Peter Wu --- man2/bpf.2 | 27 +++ 1 file changed, 27 insertions(+) diff --git a/man2/bpf.2 b/man2/bpf.2 index

LOAN

2019-08-04 Thread afernandez
Due to the economy rate of bad returns in our online market,we have decided to announce a trusted way of getting a loan from this company,In general we offer all types of loan at lower interest rate of 2%.get back to me for more details; borrroloan...@gmail.com

[GIT PULL] mtd: Fixes for 5.3-rc4

2019-08-04 Thread Miquel Raynal
Hello Linus, Here are three MTD fixes for the next -rc. Thanks, Miquèl The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b: Linus 5.3-rc1 (2019-07-21 14:05:38 -0700) are available in the Git repository at:

RE: Slowness forming TIPC cluster with explicit node addresses

2019-08-04 Thread Jon Maloy
> -Original Message- > From: netdev-ow...@vger.kernel.org On > Behalf Of Chris Packham > Sent: 2-Aug-19 01:11 > To: Jon Maloy ; tipc- > discuss...@lists.sourceforge.net > Cc: net...@vger.kernel.org; linux-kernel@vger.kernel.org > Subject: Re: Slowness forming TIPC cluster with explicit

[GIT PULL] tpmdd fixes for Linux v5.3-rc2

2019-08-04 Thread Jarkko Sakkinen
Hi Contains two bug fixes that did not make into my first PR for Linux v5.3. /Jarkko The following changes since commit 4b6f23161b4e888e72671e377c32eabe9a8e62fc: Merge tag 'powerpc-5.3-3' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux (2019-08-04 10:30:47 -0700) are

Re: Slowness forming TIPC cluster with explicit node addresses

2019-08-04 Thread Chris Packham
On Sun, 2019-08-04 at 21:53 +, Jon Maloy wrote: > > > > > -Original Message- > > From: netdev-ow...@vger.kernel.org > > On > > Behalf Of Chris Packham > > Sent: 2-Aug-19 01:11 > > To: Jon Maloy ; tipc- > > discuss...@lists.sourceforge.net > > Cc: net...@vger.kernel.org;

Re: [GIT PULL] tpmdd fixes for Linux v5.3-rc2

2019-08-04 Thread pr-tracker-bot
The pull request you sent on Mon, 5 Aug 2019 01:14:50 +0300: > git://git.infradead.org/users/jjs/linux-tpmdd.git tags/tpmdd-next-20190805 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/a6831a89bcaf351cf41b3a5922640c89beaaf9eb Thank you! -- Deet-doot-dot, I am a

Re: [GIT PULL] mtd: Fixes for 5.3-rc4

2019-08-04 Thread pr-tracker-bot
The pull request you sent on Sun, 4 Aug 2019 23:30:44 +0200: > git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git > tags/mtd/fixes-for-5.3-rc3 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/62d1716304d1bb35ad9cdafe40efbbb6b3981cfe Thank you! --

Re: [RFC PATCH v1 1/5] fs: Add support for an O_MAYEXEC flag on sys_open()

2019-08-04 Thread Andy Lutomirski
On Wed, Dec 12, 2018 at 6:43 AM Jan Kara wrote: > > On Wed 12-12-18 09:17:08, Mickaël Salaün wrote: > > When the O_MAYEXEC flag is passed, sys_open() may be subject to > > additional restrictions depending on a security policy implemented by an > > LSM through the inode_permission hook. > > > >

Re: [RFC PATCH 0/7] xfs: add reflink & dedupe support for fsdax.

2019-08-04 Thread Dave Chinner
On Thu, Aug 01, 2019 at 09:37:04AM +0800, Shiyang Ruan wrote: > > > On 8/1/19 4:33 AM, Goldwyn Rodrigues wrote: > > On 19:49 31/07, Shiyang Ruan wrote: > > > This patchset aims to take care of this issue to make reflink and dedupe > > > work correctly in XFS. > > > > > > It is based on

Dear Friend (Assalamu Alaikum),

2019-08-04 Thread Aisha Gddafi
-- Dear Friend (Assalamu Alaikum), I came across your e-mail contact prior a private search while in need of your assistance. My name is Aisha Al-Qaddafi a single Mother and a Widow with three Children. I am the only biological Daughter of late Libyan President (Late Colonel Muammar Gaddafi).

Re: [PATCH v4 4/4] ARM: dts: aspeed: Add Mihawk BMC platform

2019-08-04 Thread Andrew Jeffery
On Fri, 2 Aug 2019, at 18:07, Ben Pai wrote: > The Mihawk BMC is an ASPEED ast2500 based BMC that is part of an > OpenPower Power9 server. > > Signed-off-by: Ben Pai Reviewed-by: Andrew Jeffery

Re: [RFC PATCH] compiler_attributes.h: Add 'fallthrough' pseudo keyword for switch/case use

2019-08-04 Thread Joe Perches
On Sun, 2019-08-04 at 11:09 -0700, Linus Torvalds wrote: > On Sun, Aug 4, 2019 at 11:01 AM Joe Perches wrote: > > Linus? Do you have an opinion about this RFC/patch? > > So my only real concern is that the comment approach has always been > the really traditional one, going back all the way to

Mainline status update for the Nexus 5 phone (qcom msm8974 SoC)

2019-08-04 Thread Brian Masney
Hi, There's been a fair bit of development effort to get the LG Nexus 5 working with a mainline kernel. Here is a brief summary of what's working upstream as of this week: - Display - X11, Wayland, and text mode work. No GPU yet however out of tree patches are available. I'm slowly working on

Re: [PATCH net-next] net: can: Fix compiling warning

2019-08-04 Thread maowenan
On 2019/8/2 16:59, Sergei Shtylyov wrote: > Hello! > > On 02.08.2019 6:36, Mao Wenan wrote: > >> There are two warings in net/can, fix them by setting bcm_sock_no_ioctlcmd > >Warnings. :-) Thanks, I will send v2. > >> and raw_sock_no_ioctlcmd as static. >> >> net/can/bcm.c:1683:5:

[PATCH net-next] net: can: Fix compiling warning

2019-08-04 Thread Mao Wenan
There are two warnings in net/can, fix them by setting bcm_sock_no_ioctlcmd and raw_sock_no_ioctlcmd as static. net/can/bcm.c:1683:5: warning: symbol 'bcm_sock_no_ioctlcmd' was not declared. Should it be static? net/can/raw.c:840:5: warning: symbol 'raw_sock_no_ioctlcmd' was not declared.

Re: [RFC PATCH] compiler_attributes.h: Add 'fallthrough' pseudo keyword for switch/case use

2019-08-04 Thread Nathan Chancellor
Hi Joe, On Sun, Aug 04, 2019 at 05:39:28PM -0700, Joe Perches wrote: > On Sun, 2019-08-04 at 11:09 -0700, Linus Torvalds wrote: > > On Sun, Aug 4, 2019 at 11:01 AM Joe Perches wrote: > > > Linus? Do you have an opinion about this RFC/patch? > > > > So my only real concern is that the comment

[PATCH net-next v2] net: can: Fix compiling warning

2019-08-04 Thread Mao Wenan
There are two warnings in net/can, fix them by setting bcm_sock_no_ioctlcmd and raw_sock_no_ioctlcmd as static. net/can/bcm.c:1683:5: warning: symbol 'bcm_sock_no_ioctlcmd' was not declared. Should it be static? net/can/raw.c:840:5: warning: symbol 'raw_sock_no_ioctlcmd' was not declared.

Re: [PATCH net-next] net: can: Fix compiling warning

2019-08-04 Thread maowenan
please drop this mail. On 2019/8/5 9:22, Mao Wenan wrote: > There are two warnings in net/can, fix them by setting bcm_sock_no_ioctlcmd > and raw_sock_no_ioctlcmd as static. > > net/can/bcm.c:1683:5: warning: symbol 'bcm_sock_no_ioctlcmd' was not > declared. Should it be static? >

  1   2   >