A couple nitpicks, mostly leftover from the previous iteration
(I didn't see replies to those comments from you, despite seeing
a reply to my mail, assuming it didn't get lost):
> +int nvme_set_power(struct nvme_ctrl *ctrl, unsigned ps)
> +{
> + return nvme_set_features(ctrl, NVME_FEAT_POWER_M
On Tue, Apr 16, 2019 at 5:27 PM Souptick Joarder wrote:
>
> On Sun, Apr 7, 2019 at 12:20 AM Mukesh Ojha wrote:
> >
> >
> > On 4/6/2019 7:06 PM, Souptick Joarder wrote:
> > > Removed duplicate headers which are included twice.
> > > Signed-off-by: Souptick Joarder
> > Reviewed-by: Mukesh Ojha
>
On 06-03-19, 09:51, Bjorn Andersson wrote:
> Update the reserved-memory map to version 3, to adjust to changes in the
> remoteprocs.
Reviewed-by: Vinod Koul
--
~Vinod
On Fri, May 10, 2019 at 09:40:11PM +0300, Dan Carpenter wrote:
> On Fri, May 10, 2019 at 10:53:08PM +0530, Hariprasad Kelam wrote:
> > On Fri, May 10, 2019 at 01:57:54PM +0300, Dan Carpenter wrote:
> > > On Fri, May 10, 2019 at 08:09:00AM +0530, Hariprasad Kelam wrote:
> > > > diff --git a/drivers/
On Sat, May 11, 2019 at 7:52 AM Greg Kroah-Hartman
wrote:
>
> On Fri, May 10, 2019 at 09:47:14PM +0200, Sedat Dilek wrote:
> > Hi Greg,
> >
> > I have seen that all other Linux-stable Git branches got a new release.
> >
> > What happened to Linux-stable-5.1.y and v5.1.1 release?
>
> Dinner happene
On Mon, Apr 22, 2019 at 4:08 PM Weikang shi wrote:
>
> From: swkhack
>
> In 64-bit machine,the value of "vma->vm_end - vma->vm_start"
> maybe negative in 32bit int and the "count >> PAGE_SHIFT"'s rusult
s/rusult/result.
> will be wrong.So change the local variable and return
> value to unsigned
On Wed, May 8, 2019 at 12:27 PM Lee Jones wrote:
>
> The subject line is not correct. This is an MFD driver.
>
> When submitting you should follow the convention for the subsystem you
> are patching against. The following command is helpful:
>
> `git log --oneline -- `
>
> I will fix it for yo
Christian Brauner wrote:
> This makes all file descriptors returned from new syscalls of the new mount
> api cloexec by default.
>
> From a userspace perspective it is rarely the case that fds are supposed to
> be inherited across exec. Having them not cloexec by default forces
> userspace to re
Christian Brauner wrote:
> Make the name of the anon inode fd "[fscontext]" instead of "fscontext".
> This is minor but most core-kernel anon inode fds already carry square
> brackets around their name:
>
> [eventfd]
> [eventpoll]
> [fanotify]
> [io_uring]
> [pidfd]
> [signalfd]
> [timerfd]
> [u
Hi Linus,
here is the big pull request for GPIO for v5.2. A bit later than usual
because I was ironing out my own mistakes. I'm holding some
stuff back for the next kernel as a result, and this should be a
healthy and well tested batch.
I merged in v5.1-rc3 at one point to get rid of some nasty m
The endianness of data returned from the EC depends on the particular EC
version determined at run time. Cast from little/big endian explicitey
in the routine that flips endianness to the native one to make sparse
happy.
Signed-off-by: Lubomir Rintel
Reported-by: kbuild test robot
Fixes: 76311b9
On Thu, 9 May 2019 10:04:47 +0800
Kefeng Wang wrote:
> if iio_dummy_evgen_create() fails, iio_evgen should be NULL, when call
> iio_evgen_release() to cleanup, it throws some warning and could cause
> double free.
>
> Reported-by: Hulk Robot
> Signed-off-by: Kefeng Wang
Hi Kefeng,
I'm not see
On Wed, 8 May 2019 14:35:26 -0500
Eddie James wrote:
> From: Joel Stanley
>
> The DPS310 is a temperature and pressure sensor. It can be accessed over
> i2c and SPI.
>
> Signed-off-by: Eddie James
Hi Eddie,
Ideally we'll get a sign off form Joel as well on this.
A few comments inline.
I '
NFS uses either the kernel's DNS service or its own depending on whether
CONFIG_NFS_USE_KERNEL_DNS is enabled or not.
4 header files which are:
(i) #include
(ii) #include
(iii) #include
(iv) #include "dns_resolve.h"
These 4 header files are used regardless of whether
CONFIG_NFS_USE_KERNEL_DNS
On Wed, 8 May 2019 14:35:28 -0500
Eddie James wrote:
> The DPS310 supports measurement of pressure, so support that in the
> driver. Use background measurement like the temperature sensing and
> default to lowest precision and lowest measurement rate.
>
> Signed-off-by: Eddie James
Hi Eddie,
As caller rdev_set_default_key not particular about -EFAULT.
We can preserve the return value of prism2_domibset_uint32.
Signed-off-by: Hariprasad Kelam
-
Changes in v2:
- remove masking of original return value with EFAULT
---
drivers/staging/wlan-ng/cfg80211.c | 9 +++--
1 file cha
On Tue, 7 May 2019 11:01:36 -0500
Eddie James wrote:
> On 5/6/19 4:18 PM, Peter Meerwald-Stadler wrote:
> > On Mon, 6 May 2019, Eddie James wrote:
> >
> >> From: Joel Stanley
> > some comments below
>
>
> Thanks for the quick review! Will get these in for v2, I did have a
> couple of qu
Correctness of format type (try or active) and pad number parameters
passed to subdevice operation callbacks is now verified only for IOCTL
calls. However, those callbacks are also used by drivers, e.g., V4L2
host interfaces.
Since both subdev_do_ioctl() and drivers are using v4l2_subdev_call
Correctness of format type (try or active) and pad number parameters
passed to subdevice operation callbacks is now verified only for IOCTL
calls. However, those callbacks are also used by drivers, e.g., V4L2
host interfaces.
Since both subdev_do_ioctl() and drivers are using v4l2_subdev_call()
m
Extend parameter checks performed by v4l2_subdev_call() with a check for
a non-NULL pad config pointer if V4L2_SUBDEV_FORMAT_TRY format type is
requested so drivers don't need to care.
Signed-off-by: Janusz Krzysztofik
---
drivers/media/v4l2-core/v4l2-subdev.c | 30 +++
1
On Tue, 7 May 2019 16:36:11 +0200
Philippe Schenker wrote:
> From: Philippe Schenker
>
> Add the compatible name to the driver so it gets loaded when the proper
> node in DT is detected.
>
> Signed-off-by: Philippe Schenker
Applied thanks,
Jonathan
> ---
>
> drivers/iio/adc/stmpe-adc.c |
MODULE_DEVICE_TABLE(of, should be called to complete DT
OF mathing mechanism and register it.
Before this patch:
modinfo ./drivers/mfd/madera.ko | grep alias
After this patch:
modinfo ./drivers/mfd/madera.ko | grep alias
alias: of:N*T*Ccirrus,wm1840C*
alias: of:N*T*Ccirrus,wm18
The patch set is tested on HiFive Unleashed board and is based on mainline
kernel v5.1. Its intended to add support for 32 MB spi-nor flash
mounted on the board. Memory Device supports 4/32/and 64 KB sectors size.
The device id table is updated accordingly.
Flash parameter table for ISSI device is
Update spi_nor_id table for is25wp256 (32MB)device from ISSI,
present on HiFive Unleashed dev board (Rev: A00).
Set method to enable quad mode for ISSI device in flash parameters
table.
Based on code originally written by Wesley Terpstra
and/or Palmer Dabbelt
https://github.com/riscv/riscv-linu
Implement a locking scheme for ISSI devices based on stm_lock mechanism.
The is25x devices have 4 bits for selecting the range of blocks to
be locked/protected from erase/write operations and function register
gives feasibility to select TOP / Bottom area for protection.
The current implement
On Tue, 7 May 2019 16:36:12 +0200
Philippe Schenker wrote:
> From: Philippe Schenker
>
> In some cases, the wait_completion got interrupted. This caused the
> error-handling to mutex_unlock the function. The before turned on
> interrupt then got called anyway. In the ISR then completion() was
Nor device (is25wp256 mounted on HiFive unleashed Rev A00 board) from ISSI
have memory blocks guarded by block protection bits BP[0,1,2,3].
Clearing block protection bits,unlocks the flash memory regions
The unlock scheme is registered during nor scans.
Based on code developed by Wesley Terpstra
On Tue, 7 May 2019 16:36:13 +0200
Philippe Schenker wrote:
> From: Philippe Schenker
>
> This commit will enable the interrupts of all channels handled by this
> driver only once in the probe function.
>
> This will improve performance because one byte less has to be written over
> i2c on eac
Correctness of format type (try or active) and pad number parameters
passed to subdevice operation callbacks is now verified only for IOCTL
calls. However, those callbacks are also used by drivers, e.g., V4L2
host interfaces.
Since both subdev_do_ioctl() and drivers are using v4l2_subdev_call()
m
Extend parameter checks performed by v4l2_subdev_call() with a check for
a non-NULL pad config pointer if V4L2_SUBDEV_FORMAT_TRY format type is
requested so drivers don't need to care.
Signed-off-by: Janusz Krzysztofik
---
drivers/media/v4l2-core/v4l2-subdev.c | 30 +++
1
Correctness of format type (try or active) and pad number parameters
passed to subdevice operation callbacks is now verified only for IOCTL
calls. However, those callbacks are also used by drivers, e.g., V4L2
host interfaces.
Since both subdev_do_ioctl() and drivers are using v4l2_subdev_call
On Tue, 7 May 2019 16:36:14 +0200
Philippe Schenker wrote:
> From: Philippe Schenker
>
> Use wait_for_completion_timeout instead of
> wait_for_completion_interuptible_timeout.
>
> The interruptible variant gets constantly interrupted if a user
> program is compiled with the -pg option.
> The
On Tue, 7 May 2019 16:36:15 +0200
Philippe Schenker wrote:
> From: Philippe Schenker
>
> Clear any interrupt that still is on the device on every channel
> this driver is activated for in probe and specific channels in
> the timeout handler.
>
> Signed-off-by: Philippe Schenker
I'm never par
On Thu, 9 May 2019 11:09:26 +0200
"H. Nikolaus Schaller" wrote:
> Hi Jonathan,
> sorry for the delayed response, but I have to focus on other topics now.
No worries. I have the same 'problem'! Hence nothing yet from my side
on an alternative.
>
> Just some small comments came to my mind to fin
Hi,
On Mon, Apr 29, 2019 at 02:39:47PM +0200, Arnd Bergmann wrote:
> On Mon, Apr 29, 2019 at 10:19 AM Geert Uytterhoeven
> wrote:
> >
> > The generic definitions of mmio_{read,write}{16,32}be() in lib/iomap.c
> > assume that the {read,write}[wl]() I/O accessors always use little
> > endian access
On Thu, 9 May 2019 19:02:49 +0200
"H. Nikolaus Schaller" wrote:
> > Am 09.05.2019 um 11:09 schrieb H. Nikolaus Schaller :
> >
> > Hi Jonathan,
> >>
> >>
> >> And how does that work on the common case of a sensor in the lid of a
> >> laptop?
> >> how do you know what angle the screen is at?
Hi!
> This is the start of the stable review cycle for the 4.19.42 release.
> There are 66 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 Sat 11 May 2019 06:11:18 PM
On Sun, 5 May 2019 12:24:36 -0700
Ruslan Babayev wrote:
> The driver doesn't actually rely on any DT properties. Removing this
> check makes it usable on ACPI based platforms.
>
> Signed-off-by: Ruslan Babayev
> Cc: xe-linux-exter...@cisco.com
Applied to the togreg branch of iio.git and pushed
I have yet to bisect, but have had trouble with recent, post 5.1.0 kernels
built from Linus' git head on both i386 (Pentium 4 pc) and amd64 (Athlon II X4
640).
The easiest way to trigger the problem is:
git gc
on the kernel source tree, although the problem can occur without doing a git
gc.
On Sun, 5 May 2019 12:24:37 -0700
Ruslan Babayev wrote:
> The ds4424_get_value function takes channel number as it's 3rd
> argument and translates it internally into I2C address using
> DS4424_DAC_ADDR macro. The caller ds4424_verify_chip was passing an
> already translated I2C address as its la
From: Colin Ian King
The variable ret is being assigned a value however this is never
read and later it is being reassigned to a new value. The assignment
is redundant and hence can be removed.
Addresses-Coverity: ("Unused Value")
Signed-off-by: Colin Ian King
---
fs/afs/xattr.c | 1 -
1 file
From: "Steven Rostedt (VMware)"
User Mode Linux does not have access to the ip or sp fields of the
pt_regs, and accessing them causes UML to fail to build. Hide the
int3_emulate_jmp() and int3_emulate_call() instructions from UML, as it
doesn't need them anyway.
Reported-by: kbuild test robot
[CC'in linux-ext4]
On Sat, May 11, 2019 at 1:47 PM Arthur Marsh
wrote:
>
> I have yet to bisect, but have had trouble with recent, post 5.1.0 kernels
> built from Linus' git head on both i386 (Pentium 4 pc) and amd64 (Athlon II
> X4 640).
>
> The easiest way to trigger the problem is:
>
> git g
pt., 10 maj 2019 o 18:22 Anton Ivanov
napisał(a):
>
>
> On 10/05/2019 17:20, Bartosz Golaszewski wrote:
> > pt., 10 maj 2019 o 11:16 Bartosz Golaszewski napisał(a):
> >> śr., 8 maj 2019 o 09:13 Richard Weinberger napisał(a):
> >>> - Ursprüngliche Mail -
> > Can you please check?
> >>
From: Colin Ian King
The variable utime is being assigned a value however this is never
read and later it is being reassigned to a new value. The assignment
is redundant and hence can be removed.
Addresses-Coverity: ("Unused Value")
Signed-off-by: Colin Ian King
---
kernel/sched/cputime.c | 4
From: Colin Ian King
The variable buffer_index is being initialized however this is never
read and later it is being reassigned to a new value. The initialization
is redundant and hence can be removed.
Addresses-Coverity: ("Unused Value")
Signed-off-by: Colin Ian King
---
fs/orangefs/file.c |
When we run several VMs with PCI passthrough and GICv4 enabled, not
pinning vCPUs, we will occasionally see below warnings in dmesg:
ITS queue timeout (65440 65504 480)
ITS cmd its_build_vmovp_cmd failed
The reason for the above issue is that in BUILD_SINGLE_CMD_FUNC:
1. Post the write command.
2
Remove linux/tty.h which is included more than once
Signed-off-by: Sabyasachi Gupta
---
arch/arm/mach-sa1100/hackkit.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm/mach-sa1100/hackkit.c b/arch/arm/mach-sa1100/hackkit.c
index 643d5f2..0016d25 100644
--- a/arch/arm/mach-sa1100/hackk
From: Colin Ian King
The variable ret is being initialized however this is never read and later
it is being reassigned to a new value. The initialization is redundant and
hence can be removed.
Addresses-Coverity: ("Unused Value")
Signed-off-by: Colin Ian King
---
drivers/staging/vc04_services/
On Fri, May 10, 2019 at 6:09 PM James Morris wrote:
>
> These patches include fixes to enable fuzz testing, and a fix for
> calculating whether a filesystem is user-modifiable.
So now these have been very recently rebased (on top of a random
merge-window "tree of the day" version) instead of havi
The pull request you sent on Fri, 10 May 2019 12:41:02 -0700:
> git://github.com/jcmvbkbc/linux-xtensa.git tags/xtensa-20190510
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/7a5575212ce4b6a41581b92fe03b6be1134793ba
Thank you!
--
Deet-doot-dot, I am a bot.
https://k
The pull request you sent on Fri, 10 May 2019 15:50:57 -0600:
> git://github.com/awilliam/linux-vfio.git tags/vfio-v5.2-rc1
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/6fe567df04a27468b306ae5c53fa7a1cd3acc5e1
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.
The pull request you sent on Sat, 11 May 2019 10:45:05 +0200:
> git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
> tags/gpio-v5.2-1
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/8148c17b179d8acad190551fe0fb90d8f5193990
Thank you!
--
Deet-doot-do
The pull request you sent on Sat, 11 May 2019 08:09:22 +1000 (AEST):
> git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
> next-tomoyo2
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/c367dc8d0dd2a1e1ed9fdc2dd831053bdfdf0968
Thank you!
--
Deet
Add support to output level control for the analog high power output
drivers HPOUT and HPCOM.
Signed-off-by: Saravanan Sekar
---
Notes:
Notes:
Changes in V4:
-Added separate mono playback volume control
-grouped volume controls with corresponding switch
C
On Sat, 2019-05-11 at 13:36 +0100, Colin King wrote:
> The variable ret is being assigned a value however this is never
> read and later it is being reassigned to a new value. The assignment
> is redundant and hence can be removed.
[]
> diff --git a/fs/afs/xattr.c b/fs/afs/xattr.c
[]
> @@ -71,7 +71
Hi Angus,
This looks good. Only minor issues:
On Wed, May 1, 2019 at 7:57 PM Angus Ainslie (Purism) wrote:
> +++ b/arch/arm64/boot/dts/freescale/imx8mq-librem5-devkit.dts
> @@ -0,0 +1,823 @@
> +/* SPDX-License-Identifier: GPL-2.0+
This should be
// SPDX-License-Identifier: GPL-2.0+
as pointed
On Fri, 2019-05-10 at 15:45 -0700, Kevin Hilman wrote:
> Jerome Brunet writes:
>
> > Enable the network interface of the SEI510 which use the internal PHY.
> >
> > Signed-off-by: Jerome Brunet
>
> I tried testing this series on SEI510, but I must still be missing some
> defconfig options, as t
On Fri, 2019-05-10 at 14:43 -0700, Kevin Hilman wrote:
> minor nit: I kind of like "aliases" and "chosen" at the top since they
> are kind of special nodes, but honestly, I can't think of a really good
> reason other than personal preference, so keeping things sorted as
> you've done here is probab
On 2019-05-11, Christian Brauner wrote:
> > In my opinion, the problems here are:
> >
> > - Apparently some people run untrusted containers without user
> >namespaces. It would be really nice if people could not do that.
> >(Probably the biggest problem here.)
>
> I know I sound like a br
--
I, Mikhail Fridman have selected you specifically as one of my
beneficiaries for my Charitable Donation of $5 Million Dollars,
Check the link below for confirmation:
https://www.rt.com/business/343781-mikhail-fridman-will-charity/
I await your earliest response.
Best Regards,
Mikhail
On Fri, May 10, 2019 at 10:23 AM Guillaume La Roque
wrote:
>
> This property allow drive-strength parameter in uA instead of mA.
>
> Signed-off-by: Guillaume La Roque
Reviewed-by: Martin Blumenstingl
On Fri, May 10, 2019 at 10:23 AM Guillaume La Roque
wrote:
>
> Add optional drive-strength-microamp property
>
> Signed-off-by: Guillaume La Roque
Reviewed-by: Martin Blumenstingl
On Fri, May 10, 2019 at 10:23 AM Guillaume La Roque
wrote:
>
> rework bias enable/disable part to prepare drive-strength integration
> no functional changes
>
> Signed-off-by: Guillaume La Roque
Reviewed-by: Martin Blumenstingl
no problems spotted while boot-testing on one of my Meson8m2 boards:
On Fri, May 10, 2019 at 10:23 AM Guillaume La Roque
wrote:
>
> add drive-strength bank regiter and bit value for G12A SoC
>
> Signed-off-by: Guillaume La Roque
Reviewed-by: Martin Blumenstingl
Hi Maxime,
Is this series ok for you ?
Thanks,
Clement
On Wed, 17 Apr 2019 at 19:30, Clément Péron wrote:
>
> Hi,
>
> The Allwinner H6 has a Mali-T720 MP2. The drivers are
> out-of-tree so this series only introduce the dt-bindings.
>
> The first patch is from Neil Amstrong and has been already
Hi Guillaume,
On Fri, May 10, 2019 at 10:23 AM Guillaume La Roque
wrote:
>
> drive-strength-microamp is a new feature needed for G12A SoC.
> the default DS setting after boot is usually 500uA and it is not enough for
> many functions. We need to be able to set the drive strength to reliably
> ena
Hi Jerome,
On Fri, May 10, 2019 at 6:49 PM Jerome Brunet wrote:
>
> Add the g12a mdio multiplexer which allows to connect to either
> an external phy through the SoC pins or the internal 10/100 phy
>
> Signed-off-by: Jerome Brunet
> ---
> arch/arm64/boot/dts/amlogic/meson-g12a.dtsi | 32 +++
> On May 10, 2019, at 3:55 PM, Jann Horn wrote:
>
>> On Fri, May 10, 2019 at 02:20:23PM -0700, Andy Lutomirski wrote:
>>> On Fri, May 10, 2019 at 1:41 PM Jann Horn wrote:
>>>
On Tue, May 07, 2019 at 05:17:35AM +1000, Aleksa Sarai wrote:
> On 2019-05-06, Jann Horn wrote:
> In my
Hi Jerome,
On Fri, May 10, 2019 at 6:49 PM Jerome Brunet wrote:
>
> Add the ethernet pinctrl settings for RMII, RGMII and internal phy leds
>
> Signed-off-by: Jerome Brunet
> ---
> arch/arm64/boot/dts/amlogic/meson-g12a.dtsi | 37 +
> 1 file changed, 37 insertions(+)
>
> dif
Depending on MACH_INGENIC prevent us from creating a generic kernel that
works on more than one MIPS board. Instead, we just depend on MIPS being
set.
On other architectures, this driver can still be built, thanks to
COMPILE_TEST. This is used by automated tools to find bugs, for
instance.
Signed
Hi Kevin,
On Sat, May 11, 2019 at 12:45 AM Kevin Hilman wrote:
>
> Jerome Brunet writes:
>
> > Enable the network interface of the SEI510 which use the internal PHY.
> >
> > Signed-off-by: Jerome Brunet
>
> I tried testing this series on SEI510, but I must still be missing some
> defconfig opti
On Fri, May 10, 2019 at 06:36:48PM +0800, Chengguang Xu wrote:
> When fail from creating cache jbd2_inode_cache, we will
> destroy previously created cache jbd2_handle_cache twice.
> This patch fixes it by sperating each cache
> initialization/destruction to individual function.
>
> Signed-off-by:
On Wed, May 08, 2019 at 02:04:03PM +0530, Sahitya Tummala wrote:
> The buffer_head (frames[0].bh) and it's corresping page can be
> potentially free'd once brelse() is done inside the for loop
> but before the for loop exits in dx_release(). It can be free'd
> in another context, when the page cach
On Fri, Apr 26, 2019 at 11:09:08PM +0100, Colin King wrote:
> From: Colin Ian King
>
> There are two cases where u32 variables n and err are being checked
> for less than zero error values, the checks is always false because
> the variables are not signed. Fix this by making the variables ints.
>
On 2019-05-11, Andy Lutomirski wrote:
> >> I've lost track of the context here, but it seems to me that
> >> mitigating attacks involving accidental following of /proc links
> >> shouldn't depend on dumpability. What's the actual problem this is
> >> trying to solve again?
> >
> > The one actual
On Sat, 2019-05-11 at 19:06 +0200, Martin Blumenstingl wrote:
> Hi Jerome,
>
> On Fri, May 10, 2019 at 6:49 PM Jerome Brunet wrote:
> > Add the ethernet pinctrl settings for RMII, RGMII and internal phy leds
> >
> > Signed-off-by: Jerome Brunet
> > ---
> > arch/arm64/boot/dts/amlogic/meson-g12
On Sat, May 11, 2019 at 1:00 PM Andy Lutomirski wrote:
>
> A better “spawn” API should fix this.
Andy, stop with the "spawn would be better".
Spawn is garbage. It's garbage because it's fundamentally too
inflexible, and it's garbage because it is quite complex to try to
work around the inflexibi
On Sat, 2019-05-11 at 19:16 +0200, Martin Blumenstingl wrote:
> Hi Kevin,
>
> On Sat, May 11, 2019 at 12:45 AM Kevin Hilman wrote:
> > Jerome Brunet writes:
> >
> > > Enable the network interface of the SEI510 which use the internal PHY.
> > >
> > > Signed-off-by: Jerome Brunet
> >
> > I tri
On 2019-05-11, Linus Torvalds wrote:
> On Sat, May 11, 2019 at 1:21 PM Linus Torvalds
> wrote:
> >
> > Notice? None of the real problems are about execve or would be solved
> > by any spawn API. You just think that because you've apparently been
> > talking to too many MS people that think fork (
On Sat, May 11, 2019 at 1:21 PM Linus Torvalds
wrote:
>
> Notice? None of the real problems are about execve or would be solved
> by any spawn API. You just think that because you've apparently been
> talking to too many MS people that think fork (and thus indirectly
> execve()) is bad process man
On Sat, 2019-05-11 at 18:59 +0200, Martin Blumenstingl wrote:
> Hi Jerome,
>
> On Fri, May 10, 2019 at 6:49 PM Jerome Brunet wrote:
> > Add the g12a mdio multiplexer which allows to connect to either
> > an external phy through the SoC pins or the internal 10/100 phy
> >
> > Signed-off-by: Jerom
On Fri, May 10, 2019 at 06:36:48PM +0800, Chengguang Xu wrote:
> diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c
> index 37e16d969925..0f1ac43d0560 100644
> --- a/fs/jbd2/journal.c
> +++ b/fs/jbd2/journal.c
> @@ -2299,7 +2299,7 @@ static void jbd2_journal_destroy_slabs(void)
> }
> }
>
>
Hi Fabio,
On 2019-05-11 08:34, Fabio Estevam wrote:
Hi Angus,
This looks good. Only minor issues:
On Wed, May 1, 2019 at 7:57 PM Angus Ainslie (Purism)
wrote:
+++ b/arch/arm64/boot/dts/freescale/imx8mq-librem5-devkit.dts
@@ -0,0 +1,823 @@
+/* SPDX-License-Identifier: GPL-2.0+
This should
On May 11, 2019 7:43:44 PM GMT+02:00, Linus Torvalds
wrote:
>On Sat, May 11, 2019 at 1:31 PM Aleksa Sarai wrote:
>>
>> Yup, I've dropped the patch for the next version. (To be honest, I'm
>not
>> sure why I included any of the other flags -- the only one that
>would've
>> been necessary to deal
On Sat, May 11, 2019 at 1:31 PM Aleksa Sarai wrote:
>
> Yup, I've dropped the patch for the next version. (To be honest, I'm not
> sure why I included any of the other flags -- the only one that would've
> been necessary to deal with CVE-2019-5736 was AT_NO_MAGICLINKS.)
I do wonder if we could tr
On 2019-05-11, Linus Torvalds wrote:
> On Sat, May 11, 2019 at 1:31 PM Aleksa Sarai wrote:
> > Yup, I've dropped the patch for the next version. (To be honest, I'm not
> > sure why I included any of the other flags -- the only one that would've
> > been necessary to deal with CVE-2019-5736 was AT
On Sat, May 11, 2019 at 10:38 AM Linus Torvalds
wrote:
> On Fri, May 10, 2019 at 6:09 PM James Morris wrote:
> >
> > These patches include fixes to enable fuzz testing, and a fix for
> > calculating whether a filesystem is user-modifiable.
>
> So now these have been very recently rebased (on top
On 5/10/19 5:39 PM, Evan Green wrote:
This small series adds PCI IDs for Cometlake platforms, for a
dazzling audio experience.
This is based on linux-next's next-20190510.
Thank you Evan, looks good. For the series
Acked-by: Pierre-Louis Bossart
Changes in v3:
- Copy cnl_desc to new c
On Fri, May 10, 2019 at 02:40:18PM -0500, Rob Herring wrote:
> Convert the vendor prefix registry to a schema. This will enable checking
> that new vendor prefixes are added (in addition to the less than perfect
> checkpatch.pl check) and will also check against adding other prefixes
> which are no
My bad, I'm stupid. I tested CONFIG_COMPILE_TEST on MIPS...
The driver does depend on arch-specific includes so COMPILE_TEST
cannot be used; I'll send a V2.
-Paul
Le sam. 11 mai 2019 à 19:09, Paul Cercueil a
écrit :
Depending on MACH_INGENIC prevent us from creating a generic kernel
that
wo
On Fri, May 10, 2019 at 1:57 AM Bastien Nocera wrote:
>
> On Sun, 2019-04-14 at 09:26 -0700, Roderick Colenbrander wrote:
> >
>
> > We at the time were one of the first to expose acceleration and gyro
> > data through /dev/input for DualShock 4 as supported by hid-sony. We
> > report acceleration
FYI, we noticed the following commit (built with gcc-7):
commit: 6377f787aeb945cae7abbb6474798de129e1f3ac ("appletalk: Fix
use-after-free in atalk_proc_exit")
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git master
in testcase: trinity
with following parameters:
runtime:
Dear Saravanan Sekar,
On Sat, May 11, 2019 at 5:13 PM Saravanan Sekar wrote:
>
> Add support to output level control for the analog high power output
> drivers HPOUT and HPCOM.
>
> Signed-off-by: Saravanan Sekar
> ---
>
> Notes:
> Notes:
> Changes in V4:
> -Added separate mon
I'm running v5.1.0 trying to kexec into v5.1.1. I get an error when
trying to load the kernel image, I enabled some debugging of
arch/x86/kernel/machine_kexec_64.c and got the following log:
[90028.591812] kexec: Applying relocate section .rela.text to 1
[90028.592438] kexec: Symbol: sha256_update
On Sun, Apr 28, 2019 at 11:51:03AM +0200, Daniel Lezcano wrote:
> The copyright format does not conform to the format requested by
> Linaro: https://wiki.linaro.org/Copyright
>
> Fix it.
>
> Signed-off-by: Daniel Lezcano
> Viresh Kumar
Based on the series and other patches of it, I am assuming
On Sat, May 11, 2019 at 03:16:59PM -0400, Arvind Sankar wrote:
> I'm running v5.1.0 trying to kexec into v5.1.1. I get an error when
> trying to load the kernel image, I enabled some debugging of
> arch/x86/kernel/machine_kexec_64.c and got the following log:
> [90028.591812] kexec: Applying reloca
On Sat, May 11, 2019 at 11:02:24PM +0300, Alexey Dobriyan wrote:
> I compiled current F29 kernel config on x86_64 (5.0.13-200.fc29.x86_64)
> with -ffreestanding. The results are interesting :^):
>
> add/remove: 30/22 grow/shrink: 1290/46867 up/down: 33658/-1778055
> (-1744397)
> Total
The directory name for other licenses was changed to "deprecated" in
commit 62be257e986d ("LICENSES: Rename other to deprecated"). But it was
not changed for spdxcheck.py. As result, checkpatch failed with
FAIL: "Blob or Tree named 'other' not found"
Traceback (most recent call last):
Fil
The licenses from the other directory were partially moved to the dual
directory in commit 99871f2f9a4d ("scripts/spdxcheck.py: Fix path to
deprecated licenses"). checkpatch therefore rejected files like
drivers/staging/android/ashmem.h with
WARNING: 'SPDX-License-Identifier: GPL-2.0 OR Apache-2
1 - 100 of 172 matches
Mail list logo