[RFC PATCH v4 00/17] virtio/vsock: introduce SOCK_SEQPACKET support

2021-02-07 Thread Arseny Krasnov
This patchset impelements support of SOCK_SEQPACKET for virtio transport. As SOCK_SEQPACKET guarantees to save record boundaries, so to do it, two new packet operations were added: first for start of record and second to mark end of record(SEQ_BEGIN and SEQ_END later). Also, both

Re: [PATCH] staging: rtl8723bs: fix block comments alignment

2021-02-07 Thread karthek
On Sun, Feb 07, 2021 at 03:54:09PM +0100, Greg Kroah-Hartman wrote: > On Sun, Feb 07, 2021 at 08:17:33PM +0530, karthek wrote: > > > > For some reason you sent this only to me, which is a bit rude to > everyone else on the mailing list. I'll be glad to respond if you > resend it to everyone. >

[PATCH v2] staging: octeon: convert all uses of strlcpy to strscpy in ethernet-mdio.c

2021-02-07 Thread Phillip Potter
Convert three calls to strlcpy inside the cvm_oct_get_drvinfo function to strscpy calls. As return values were not checked for these three calls before, change should be safe as functionality is equivalent. Signed-off-by: Phillip Potter --- v2: Modified changelog to take account of feedback

Re: [PATCH 2/3] drm/mediatek: mtk_dpi: Add dpi config for mt8192

2021-02-07 Thread kernel test robot
to use '--base' as documented in https://git-scm.com/docs/git-format-patch] url: https://github.com/0day-ci/linux/commits/Jitao-Shi/Add-check-for-max-clock-rate-in-mode_valid/20210207-210121 base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next config: arm64

Re: [PATCH v2] staging: octeon: convert all uses of strlcpy to strscpy in ethernet-mdio.c

2021-02-07 Thread Greg KH
On Sun, Feb 07, 2021 at 03:03:02PM +, Phillip Potter wrote: > Convert three calls to strlcpy inside the cvm_oct_get_drvinfo function > to strscpy calls. As return values were not checked for these three > calls before, change should be safe as functionality is equivalent. > > Signed-off-by:

Linux 5.10.14

2021-02-07 Thread Greg Kroah-Hartman
I'm announcing the release of the 5.10.14 kernel. All users of the 5.10 kernel series must upgrade. The updated 5.10.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-5.10.y and can be browsed at the normal kernel.org git web

Re: Linux 5.4.96

2021-02-07 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index aa3c2e834442..7a47a2594f95 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 5 PATCHLEVEL = 4 -SUBLEVEL = 95 +SUBLEVEL = 96 EXTRAVERSION = NAME = Kleptomaniac Octopus diff --git

Re: Linux 4.19.174

2021-02-07 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index 5770b9d8026b..8f326d0652a7 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 4 PATCHLEVEL = 19 -SUBLEVEL = 173 +SUBLEVEL = 174 EXTRAVERSION = NAME = "People's Front" diff --git

Re: Linux 5.10.14

2021-02-07 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index a2d5e953ea40..bb3770be9779 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 5 PATCHLEVEL = 10 -SUBLEVEL = 13 +SUBLEVEL = 14 EXTRAVERSION = NAME = Kleptomaniac Octopus diff --git a/arch/arm/mm/Kconfig

Linux 5.4.96

2021-02-07 Thread Greg Kroah-Hartman
I'm announcing the release of the 5.4.96 kernel. All users of the 5.4 kernel series must upgrade. The updated 5.4.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-5.4.y and can be browsed at the normal kernel.org git web browser:

Re: Linux 4.14.220

2021-02-07 Thread Greg Kroah-Hartman
diff --git a/Makefile b/Makefile index f7f11304776b..088dc5383dcf 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 4 PATCHLEVEL = 14 -SUBLEVEL = 219 +SUBLEVEL = 220 EXTRAVERSION = NAME = Petit Gorille diff --git a/arch/x86/include/asm/msr.h

Linux 4.14.220

2021-02-07 Thread Greg Kroah-Hartman
I'm announcing the release of the 4.14.220 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 4.19.174

2021-02-07 Thread Greg Kroah-Hartman
I'm announcing the release of the 4.19.174 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

[PATCH v2] staging: octeon: convert all uses of strlcpy to strscpy in ethernet-mdio.c

2021-02-07 Thread Phillip Potter
Convert three calls to strlcpy inside the cvm_oct_get_drvinfo function to strscpy calls. As return values were not checked for these three calls before, change should be safe as functionality is equivalent. Signed-off-by: Phillip Potter --- drivers/staging/octeon/ethernet-mdio.c | 6 +++--- 1

Re: [PATCH] printk: Userspace format enumeration support

2021-02-07 Thread Joe Perches
On Sun, 2021-02-07 at 14:13 +, Chris Down wrote: > Joe Perches writes: > > > There are certainly printks which can't be trivially monitored using the > > > printk > > > format alone, but the vast majority of the ones that are monitored _do_ > > > have > > > meaningful formats and can be

Re: [PATCH] staging: octeon: convert all uses of strlcpy to strscpy in ethernet-mdio.c

2021-02-07 Thread Greg KH
On Sun, Feb 07, 2021 at 02:48:04PM +, Phillip Potter wrote: > Convert three calls to strlcpy inside the cvm_oct_get_drvinfo function > to strscpy calls. Fixes a style warning. Is it really safe to do this type of conversion here? If so, you need to provide evidence of it in the changelog,

Re: [PATCH] tmpfs: Disallow CONFIG_TMPFS_INODE64 on s390

2021-02-07 Thread Kirill A. Shutemov
On Fri, Feb 05, 2021 at 05:06:20PM -0600, Seth Forshee wrote: > This feature requires ino_t be 64-bits, which is true for every > 64-bit architecture but s390, so prevent this option from being > selected there. Quick grep suggests the same for alpha. Am I wrong? -- Kirill A. Shutemov

[PATCH] HID: plantronics: Workaround for double volume key presses

2021-02-07 Thread Maxim Mikityanskiy
Plantronics Blackwire 3220 Series (047f:c056) sends HID reports twice for each volume key press. This patch adds a quirk to hid-plantronics for this product ID, which will ignore the second volume key press if it happens within 5 ms from the last one that was handled. The patch was tested on the

[PATCH] staging: octeon: convert all uses of strlcpy to strscpy in ethernet-mdio.c

2021-02-07 Thread Phillip Potter
Convert three calls to strlcpy inside the cvm_oct_get_drvinfo function to strscpy calls. Fixes a style warning. Signed-off-by: Phillip Potter --- drivers/staging/octeon/ethernet-mdio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[PATCH v6 11/11] crypto: qce: Remove totallen and offset in qce_start

2021-02-07 Thread Thara Gopinath
totallen is used to get the size of the data to be transformed. This is also available via nbytes or cryptlen in the qce_sha_reqctx and qce_cipher_ctx. Similarly offset convey nothing for the supported encryption and authentication transformations and is always 0. Remove these two redundant

[PATCH v6 09/11] crypto: qce: common: Set data unit size to message length for AES XTS transformation

2021-02-07 Thread Thara Gopinath
Set the register REG_ENCR_XTS_DU_SIZE to cryptlen for AES XTS transformation. Anything else causes the engine to return back wrong results. Acked-by: Bjorn Andersson Signed-off-by: Thara Gopinath --- drivers/crypto/qce/common.c | 8 1 file changed, 4 insertions(+), 4 deletions(-)

[PATCH v6 10/11] crypto: qce: Remover src_tbl from qce_cipher_reqctx

2021-02-07 Thread Thara Gopinath
src_table is unused and hence remove it from struct qce_cipher_reqctx Signed-off-by: Thara Gopinath --- drivers/crypto/qce/cipher.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/crypto/qce/cipher.h b/drivers/crypto/qce/cipher.h index cffa9fc628ff..850f257d00f3 100644 ---

[PATCH v6 06/11] crypto: qce: skcipher: Return error for non-blocksize data(ECB/CBC algorithms)

2021-02-07 Thread Thara Gopinath
ECB/CBC encryption/decryption requires the data to be blocksize aligned. Crypto engine hangs on non-block sized operations for these algorithms. Return invalid data if data size is not blocksize aligned for these algorithms. Signed-off-by: Thara Gopinath --- v5->v6: - Remove the wrong

[PATCH v6 08/11] crypto: qce: skcipher: Improve the conditions for requesting AES fallback cipher

2021-02-07 Thread Thara Gopinath
The following are the conditions for requesting AES fallback cipher. - AES-192 - AES-XTS request with len <= 512 byte (Allow messages of length less than 512 bytes for all other AES encryption algorithms other than AES XTS) - AES-XTS request with len >

[PATCH v6 07/11] crypto: qce: skcipher: Set ivsize to 0 for ecb(aes)

2021-02-07 Thread Thara Gopinath
ECB transformations do not have an IV and hence set the ivsize to 0 for ecb(aes). Signed-off-by: Thara Gopinath --- drivers/crypto/qce/skcipher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/crypto/qce/skcipher.c b/drivers/crypto/qce/skcipher.c index

[PATCH v6 05/11] crypto: qce: skcipher: Return error for zero length messages

2021-02-07 Thread Thara Gopinath
Crypto engine BAM dma does not support 0 length data. Return unsupported if zero length messages are passed for transformation. Signed-off-by: Thara Gopinath --- v5->v6: - Return 0 for zero length messages instead of -EOPNOTSUPP in the cipher algorithms as pointed out by Eric

[PATCH v6 04/11] crypto: qce: skcipher: Return unsupported if any three keys are same for DES3 algorithms

2021-02-07 Thread Thara Gopinath
Return unsupported if any three keys are same for DES3 algorithms since CE does not support this and the operation causes the engine to hang. Signed-off-by: Thara Gopinath --- drivers/crypto/qce/skcipher.c | 15 +++ 1 file changed, 15 insertions(+) diff --git

[PATCH v6 03/11] crypto: qce: skcipher: Return unsupported if key1 and key 2 are same for AES XTS algorithm

2021-02-07 Thread Thara Gopinath
Crypto engine does not support key1 = key2 for AES XTS algorithm; the operation hangs the engines. Return -EINVAL in case key1 and key2 are the same. Signed-off-by: Thara Gopinath --- drivers/crypto/qce/skcipher.c | 19 ++- 1 file changed, 18 insertions(+), 1 deletion(-) diff

[PATCH v6 01/11] crypto: qce: sha: Restore/save ahash state with custom struct in export/import

2021-02-07 Thread Thara Gopinath
Export and import interfaces save and restore partial transformation states. The partial states were being stored and restored in struct sha1_state for sha1/hmac(sha1) transformations and sha256_state for sha256/hmac(sha256) transformations.This led to a bunch of corner cases where improper state

[PATCH v6 02/11] crypto: qce: sha: Hold back a block of data to be transferred as part of final

2021-02-07 Thread Thara Gopinath
If the available data to transfer is exactly a multiple of block size, save the last block to be transferred in qce_ahash_final (with the last block bit set) if this is indeed the end of data stream. If not this saved block will be transferred as part of next update. If this block is not held back

[PATCH v6 00/11] Regression fixes/clean ups in the Qualcomm crypto engine driver

2021-02-07 Thread Thara Gopinath
This patch series is a result of running kernel crypto fuzz tests (by enabling CONFIG_CRYPTO_MANAGER_EXTRA_TESTS) on the transformations currently supported via the Qualcomm crypto engine on sdm845. The first nine patches are fixes for various regressions found during testing. The last two

Re: [PATCH 5.4 00/32] 5.4.96-rc1 review

2021-02-07 Thread Greg Kroah-Hartman
On Fri, Feb 05, 2021 at 01:16:29PM -0800, Florian Fainelli wrote: > On 2/5/21 6:07 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 5.4.96 release. > > There are 32 patches in this series, all will be posted as a response > > to this one. If anyone has any

Re: [PATCH] staging: rtl8723bs: fix block comments alignment

2021-02-07 Thread Greg Kroah-Hartman
On Sun, Feb 07, 2021 at 07:46:50PM +0530, karthek wrote: > fix checkpatch.pl warning for "block comments should align the * on each line" > > Signed-off-by: karthek > --- > eudyptula challenge thing > > .../staging/rtl8723bs/hal/rtl8723b_phycfg.c | 204 +- > 1 file changed,

Re: [PATCH] staging: gasket: fix indentation and lines ending with open parenthesis

2021-02-07 Thread Greg KH
On Sun, Feb 07, 2021 at 07:39:28PM +0530, Mahak Gupta wrote: > This patch fixes warnings of 'checkpatch.pl'. According to > Linux coding guidelines, code should be aligned properly to > match with open parenthesis and lines should not end with > open parenthesis. > > Signed-off-by: Mahak Gupta >

Re: [char-misc-next 6/6] mei: bus: add client dma interface

2021-02-07 Thread Greg Kroah-Hartman
On Sun, Feb 07, 2021 at 02:03:11PM +, Winkler, Tomas wrote: > > > > On Sat, Feb 06, 2021 at 03:04:34PM +, Winkler, Tomas wrote: > > > > On Sat, Feb 06, 2021 at 04:43:25PM +0200, Tomas Winkler wrote: > > > > > From: Alexander Usyskin > > > > > > > > > > Expose the client dma mapping via

[PATCH] mtd: spi-nor: boya: add support for boya by25q128as

2021-02-07 Thread George Brooke
Adds support for the Boya Microelectronics BY25Q128AS 128 Mbit flash. I tested this on the Creality WB-01 embedded device which uses this, although that was with OpenWrt which is still using 5.4 so I had to do a bit of porting work. Don't see how that would make much of a difference though.

[PATCH] bus: bt1-apb:Fix duplicate included linux/clk.h

2021-02-07 Thread alex_luca
From: Zhang Kun Remove one of the duplicate header hlinux/clk.h which isn't necessary. Signed-off-by: Zhang Kun --- drivers/bus/bt1-apb.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/bus/bt1-apb.c b/drivers/bus/bt1-apb.c index b25ff941e7c7..e9e196cd9253 100644 ---

[PATCH v3 net-next] net: socket: use BIT() for MSG_*

2021-02-07 Thread menglong8 . dong
From: Menglong Dong The bit mask for MSG_* seems a little confused here. Replace it with BIT() to make it clear to understand. Signed-off-by: Menglong Dong --- v3: - move changelog here v2: - use BIT() instead of BIT_MASK() --- include/linux/socket.h | 71

[GIT PULL] irq/urgent for v5.11-rc7

2021-02-07 Thread Borislav Petkov
Hi Linus, please pull two irq/urgent fixes for v5.11. Thx. --- The following changes since commit 13391c60da3308ed9980de0168f74cce6c62ac1d: Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6 (2021-01-25 15:26:51 -0800) are available in the Git

[PATCH] staging: rtl8723bs: fix block comments alignment

2021-02-07 Thread karthek
fix checkpatch.pl warning for "block comments should align the * on each line" Signed-off-by: karthek --- eudyptula challenge thing .../staging/rtl8723bs/hal/rtl8723b_phycfg.c | 204 +- 1 file changed, 102 insertions(+), 102 deletions(-) diff --git

Re: [PATCH v2 net-next] net: socket: use BIT() for MSG_*

2021-02-07 Thread Menglong Dong
On Sun, Feb 7, 2021 at 7:52 PM Andy Shevchenko wrote: > > On Sun, Feb 7, 2021 at 6:32 AM wrote: > > > > From: Menglong Dong > > > > The bit mask for MSG_* seems a little confused here. Replace it > > with BIT() to make it clear to understand. > > Now it's confusing which version maintainer

Re: [PATCH] printk: Userspace format enumeration support

2021-02-07 Thread Chris Down
Joe Perches writes: There are certainly printks which can't be trivially monitored using the printk format alone, but the vast majority of the ones that are monitored _do_ have meaningful formats and can be monitored over time. No solution to this is going to catch every single case, especially

Re: [RFC v1 09/26] x86/tdx: Handle CPUID via #VE

2021-02-07 Thread Kirill A. Shutemov
On Fri, Feb 05, 2021 at 03:42:01PM -0800, Andy Lutomirski wrote: > On Fri, Feb 5, 2021 at 3:39 PM Kuppuswamy Sathyanarayanan > wrote: > > > > From: "Kirill A. Shutemov" > > > > TDX has three classes of CPUID leaves: some CPUID leaves > > are always handled by the CPU, others are handled by the

Please i need your help

2021-02-07 Thread Aisha Al-Qaddafi
Dear I Need An Investment Partner Assalamu Alaikum Wa Rahmatullahi Wa Barakatuh Dear Friend, I came across your e-mail contact prior to a private search while in need of your assistance. I am Aisha Al-Qaddafi, the only biological Daughter of Former President of Libya Col. Muammar Al-Qaddafi. Am a

Re: [RFC 9/9] x86/mm: Implement PR_SET/GET_TAGGED_ADDR_CTRL with LAM

2021-02-07 Thread Dmitry Vyukov
On Sun, Feb 7, 2021 at 3:09 PM Kirill A. Shutemov wrote: > > On Sun, Feb 07, 2021 at 09:07:02AM +0100, Dmitry Vyukov wrote: > > On Fri, Feb 5, 2021 at 4:43 PM H.J. Lu wrote: > > > > > > On Fri, Feb 5, 2021 at 7:16 AM Kirill A. Shutemov > > > wrote: > > > > > > > > Provide prctl() interface to

Re: [RFC 0/9] Linear Address Masking enabling

2021-02-07 Thread Kirill A. Shutemov
On Sun, Feb 07, 2021 at 09:24:23AM +0100, Dmitry Vyukov wrote: > On Fri, Feb 5, 2021 at 4:16 PM Kirill A. Shutemov > wrote: > > > > Linear Address Masking[1] (LAM) modifies the checking that is applied to > > 64-bit linear addresses, allowing software to use of the untranslated > > address bits

[PATCH] staging: gasket: fix indentation and lines ending with open parenthesis

2021-02-07 Thread Mahak Gupta
This patch fixes warnings of 'checkpatch.pl'. According to Linux coding guidelines, code should be aligned properly to match with open parenthesis and lines should not end with open parenthesis. Signed-off-by: Mahak Gupta --- drivers/staging/gasket/gasket_ioctl.c | 18 -- 1 file

Re: [RFC 9/9] x86/mm: Implement PR_SET/GET_TAGGED_ADDR_CTRL with LAM

2021-02-07 Thread Kirill A. Shutemov
On Sun, Feb 07, 2021 at 09:07:02AM +0100, Dmitry Vyukov wrote: > On Fri, Feb 5, 2021 at 4:43 PM H.J. Lu wrote: > > > > On Fri, Feb 5, 2021 at 7:16 AM Kirill A. Shutemov > > wrote: > > > > > > Provide prctl() interface to enabled LAM for user addresses. Depending > > > how many tag bits requested

RE: [PATCH v2 0/9] Add Host control mode to HPB

2021-02-07 Thread Avri Altman
Hi Bean, > In addition to the above advantage of HPB "host control mode", would > you please share the performance comparison data with "device control > mode"? that will draw more attention, since you mentioned "you tested > on Galaxy S20, and Xiaomi Mi10 pro", I think you have this kind of >

[PATCH v15] staging: fbtft: add tearing signal detect

2021-02-07 Thread Carlis
From: Carlis For st7789v IC, when we need continuous full screen refresh, it is best to wait for the tearing effect line signal to arrive to avoid screen tearing. Signed-off-by: Carlis --- v15: change ret value return logic in write_vmem. v14: change to define TE completion and TE irq only in

RE: [char-misc-next 6/6] mei: bus: add client dma interface

2021-02-07 Thread Winkler, Tomas
> > On Sat, Feb 06, 2021 at 03:04:34PM +, Winkler, Tomas wrote: > > > On Sat, Feb 06, 2021 at 04:43:25PM +0200, Tomas Winkler wrote: > > > > From: Alexander Usyskin > > > > > > > > Expose the client dma mapping via mei client bus interface. > > > > > > > > Signed-off-by: Alexander Usyskin >

I want to seek your assistance

2021-02-07 Thread Mr Abdoul hassan
-- Dear Friend, I am Mr Abdoul Hassan. I am working with one of the prime banks in Burkina Faso. I have a business proposal which concerns the transfer of.of Twenty Two Million and Five Hundred Thousand united state dollars ($22.500 000mUSD).into a foreign account. Everything about this

Re: [PATCH] drm/lima: Use delayed timer as default in devfreq profile

2021-02-07 Thread Qiang Yu
Applied to drm-misc-next. Regards, Qiang On Thu, Feb 4, 2021 at 10:24 PM Lukasz Luba wrote: > > > > On 2/4/21 1:39 PM, Robin Murphy wrote: > > On 2021-02-03 02:01, Qiang Yu wrote: > >> On Tue, Feb 2, 2021 at 10:02 PM Lukasz Luba wrote: > >>> > >>> > >>> > >>> On 2/2/21 1:01 AM, Qiang Yu wrote:

Re: [PATCH v2] drm/lima: add governor data with pre-defined thresholds

2021-02-07 Thread Qiang Yu
Applied to drm-misc-next. Regards, Qiang On Tue, Feb 2, 2021 at 9:04 AM Qiang Yu wrote: > > OK, I see. Patch is also: > Reviewed-by: Qiang Yu > > Regards, > Qiang > > On Mon, Feb 1, 2021 at 5:59 PM Lukasz Luba wrote: > > > > > > > > On 1/30/21 1:57 PM, Qiang Yu wrote: > > > This patch gets

RE: [PATCH V2 0/4] imx esdhc dt/driver update

2021-02-07 Thread Peng Fan
> Subject: [PATCH V2 0/4] imx esdhc dt/driver update Gentle ping.. Thanks, Peng. > > From: Peng Fan > > Patch V2: > patch 1, 2, 3 is new > patch 4 is not changed > > Peng Fan (4): > dt-bindings: mmc: fsl-imx-esdhc: add pinctrl bindings > dt-bindings: mmc: fsl-imx-esdhc: add clock

[PATCH] uapi: map_to_7segment: Update example in documentation

2021-02-07 Thread Geert Uytterhoeven
The device_attribute .show() and .store() methods gained an extra parameter in v2.6.13, but the example in the documentation for the 7-segment header file was never updated. Add the missing parameters. While at it, get rid of the (misspelled) deprecated symbolic permissions, and switch to

Re: [PATCH] I was wondering why I can't set the resolution to 2560x1080, while in windows 7 I can without a problem. I looked at the radeon driver code and found it doesn't support this resolution. So

2021-02-07 Thread Simon Ser
Please keep the commit message short. You probbly want to send this patch to amd-...@lists.freedesktop.org instead of dri-devel.

[PATCH 1/3] drm/mediatek: mtk_dpi: Add check for max clock rate in mode_valid

2021-02-07 Thread Jitao Shi
Add per-platform max clock rate check in mtk_dpi_bridge_mode_valid. Signed-off-by: Jitao Shi --- drivers/gpu/drm/mediatek/mtk_dpi.c | 17 + 1 file changed, 17 insertions(+) diff --git a/drivers/gpu/drm/mediatek/mtk_dpi.c b/drivers/gpu/drm/mediatek/mtk_dpi.c index

[PATCH 2/3] drm/mediatek: mtk_dpi: Add dpi config for mt8192

2021-02-07 Thread Jitao Shi
Signed-off-by: Jitao Shi --- drivers/gpu/drm/mediatek/mtk_dpi.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/gpu/drm/mediatek/mtk_dpi.c b/drivers/gpu/drm/mediatek/mtk_dpi.c index ffa4a0f1989f..b7905f3f4d1b 100644 --- a/drivers/gpu/drm/mediatek/mtk_dpi.c +++

[PATCH 0/3] Add check for max clock rate in mode_valid

2021-02-07 Thread Jitao Shi
Jitao Shi (3): drm/mediatek: mtk_dpi: Add check for max clock rate in mode_valid drm/mediatek: mtk_dpi: Add dpi config for mt8192 dt-bindings: mediatek,dpi: add mt8192 to mediatek,dpi .../display/mediatek/mediatek,dpi.yaml| 1 + drivers/gpu/drm/mediatek/mtk_dpi.c| 27

[PATCH 3/3] dt-bindings: mediatek,dpi: add mt8192 to mediatek,dpi

2021-02-07 Thread Jitao Shi
Add compatible "mediatek,mt8192-dpi" for the mt8192 dpi. Signed-off-by: Jitao Shi --- .../devicetree/bindings/display/mediatek/mediatek,dpi.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/display/mediatek/mediatek,dpi.yaml

Re: [PATCH 0/7] xen/events: bug fixes and some diagnostic aids

2021-02-07 Thread Jürgen Groß
On 06.02.21 19:46, Julien Grall wrote: Hi Juergen, On 06/02/2021 10:49, Juergen Gross wrote: The first three patches are fixes for XSA-332. The avoid WARN splats and a performance issue with interdomain events. Thanks for helping to figure out the problem. Unfortunately, I still see

Genuine Funds

2021-02-07 Thread info
My name is Mr.Paolo Galimberti I'm the Executive Director at UBS Investment Bank in London Branch , UK. I have a legitimate business proposal worth the sum of £90,400,000.00 Great British Pounds to discuss with you, I need your sincerity and trust in this business deal. If you are interested,

Re: [RFC PATCH 06/11] iommu/arm-smmu-v3: Scan leaf TTD to sync hardware dirty log

2021-02-07 Thread Keqian Zhu
Hi Robin, On 2021/2/5 3:52, Robin Murphy wrote: > On 2021-01-28 15:17, Keqian Zhu wrote: >> From: jiangkunkun >> >> During dirty log tracking, user will try to retrieve dirty log from >> iommu if it supports hardware dirty log. This adds a new interface >> named sync_dirty_log in iommu layer and

[PATCH v2] ipc.2: Fix prototype parameter types

2021-02-07 Thread Alejandro Colomar
The types for some of the parameters are incorrect (different than the kernel). Fix them. Below are shown the types that the kernel uses. .. .../linux$ grep_syscall ipc ipc/syscall.c:110: SYSCALL_DEFINE6(ipc, unsigned int, call, int, first, unsigned long, second, unsigned

drivers/md/raid10.c:995 wait_barrier() warn: if();

2021-02-07 Thread kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 61556703b610a104de324e4f061dc6cf7b218b46 commit: fe630de009d0729584d79c78f43121e07c745fdc md/raid10: avoid deadlock on recovery. date: 7 months ago config: nds32-randconfig-m031-20210207 (attached

[PATCH v4] kvfree_rcu: Release page cache under memory pressure

2021-02-07 Thread qiang . zhang
From: Zqiang Add free per-cpu existing krcp's page cache operation, when the system is under memory pressure. Signed-off-by: Zqiang Co-developed-by: Uladzislau Rezki (Sony) --- v1->v2->v3->v4: During the test a page shrinker is pretty active, because of low memory condition. callback

[PATCH] radeon: added support for 2560x1080 resolution

2021-02-07 Thread Marcin Raszka
I was wondering why I can't set the resolution to 2560x1080, while in windows 7 I can without a problem. I looked at the radeon driver code and found it doesn't support this resolution. So I made some changes. I added the hdmi_mhz parameter. In cmdline I set radeon.hdmi_mhz=190 Only tested on

drivers/pci/controller/pci-ftpci100.c:37:9: warning: 'PCI_IOSIZE' macro redefined

2021-02-07 Thread kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 61556703b610a104de324e4f061dc6cf7b218b46 commit: 482cd90cd781c9b5607ed9c9f8641dc95a9d4cce MIPS: Loongson64: Define PCI_IOBASE date: 9 months ago config: mips-randconfig-r032-20210207 (attached as .config

RE: [EXT] Re: [RESEND PATCH v8 net-next 03/15] net: mvpp2: add CM3 SRAM memory map

2021-02-07 Thread Stefan Chulski
> > } > > > > +static int mvpp2_get_sram(struct platform_device *pdev, > > + struct mvpp2 *priv) > > +{ > > + struct device_node *dn = pdev->dev.of_node; > > + static bool defer_once; > > + struct resource *res; > > + > > + if (has_acpi_companion(>dev)) { > > +

Re: linux-next: Fixes tag needs some work in the soundwire tree

2021-02-07 Thread Vinod Koul
On 07-02-21, 21:59, Stephen Rothwell wrote: > Hi all, > > In commit > > 531f45f2bdf6 ("soundwire: export sdw_write/read_no_pm functions") > > Fixes tag > > Fixes: 60ee9be25571 ('soundwire: bus: add PM/no-PM versions of > > has these problem(s): > > - Subject has leading but no trailing

KMSAN: uninit-value in ext4_inode_journal_mode

2021-02-07 Thread syzbot
Hello, syzbot found the following issue on: HEAD commit:73d62e81 kmsan: random: prevent boot-time reports in _mix_.. git tree: https://github.com/google/kmsan.git master console output: https://syzkaller.appspot.com/x/log.txt?x=152188c4d0 kernel config:

KMSAN: uninit-value in bpf_iter_prog_supported

2021-02-07 Thread syzbot
Hello, syzbot found the following issue on: HEAD commit:73d62e81 kmsan: random: prevent boot-time reports in _mix_.. git tree: https://github.com/google/kmsan.git master console output: https://syzkaller.appspot.com/x/log.txt?x=17ac5f64d0 kernel config:

Re: [PATCH] tmpfs: Disallow CONFIG_TMPFS_INODE64 on s390

2021-02-07 Thread Heiko Carstens
On Fri, Feb 05, 2021 at 04:05:51PM -0800, Andrew Morton wrote: > On Fri, 5 Feb 2021 17:06:20 -0600 Seth Forshee > wrote: > > > This feature requires ino_t be 64-bits, which is true for every > > 64-bit architecture but s390, so prevent this option from being > > selected there. > > > > The

Re: [RFC PATCH 05/11] iommu/arm-smmu-v3: Merge a span of page to block descriptor

2021-02-07 Thread Keqian Zhu
Hi Robin, On 2021/2/5 3:52, Robin Murphy wrote: > On 2021-01-28 15:17, Keqian Zhu wrote: >> From: jiangkunkun >> >> When stop dirty log tracking, we need to recover all block descriptors >> which are splited when start dirty log tracking. This adds a new >> interface named merge_page in iommu

Re: [PATCH v2] jfs: turn diLog(), dataLog() and txLog() into void functions

2021-02-07 Thread kernel test robot
in https://git-scm.com/docs/git-format-patch] url: https://github.com/0day-ci/linux/commits/Yang-Li/jfs-turn-diLog-dataLog-and-txLog-into-void-functions/20210207-164143 base: https://github.com/kleikamp/linux-shaggy jfs-next config: x86_64-randconfig-a011-20210207 (attached as .config) compiler

[PATCH] psi: Remove the redundant psi_task_tick

2021-02-07 Thread Chengming Zhou
From: zhouchengming When the current task in a cgroup is in_memstall, the corresponding psi_group is in PSI_MEM_FULL state, so we can remove the redundant psi_task_tick from scheduler_tick to save this periodic cost. Signed-off-by: Chengming Zhou --- include/linux/psi.h | 1 -

Re: [PATCH v2 6/7] platform: x86: Add intel_skl_int3472 driver

2021-02-07 Thread Andy Shevchenko
On Sun, Feb 7, 2021 at 1:00 PM Daniel Scally wrote: > On 21/01/2021 00:18, Daniel Scally wrote: > > On 20/01/2021 12:57, Andy Shevchenko wrote: ... > > I'm not sure that one's better than the other, to be honest. Either the > > multi-function device functionality lives in the conventional

Re: [PATCH v2 net-next] net: socket: use BIT() for MSG_*

2021-02-07 Thread Andy Shevchenko
On Sun, Feb 7, 2021 at 6:32 AM wrote: > > From: Menglong Dong > > The bit mask for MSG_* seems a little confused here. Replace it > with BIT() to make it clear to understand. Now it's confusing which version maintainer should take (you forgot, it seems twice, to bump the patch version and

Re: [PATCH net-next] net: socket: use BIT_MASK for MSG_*

2021-02-07 Thread Andy Shevchenko
On Sun, Feb 7, 2021 at 5:29 AM Menglong Dong wrote: > On Sat, Feb 6, 2021 at 4:20 PM Andy Shevchenko > wrote: > > On Saturday, February 6, 2021, wrote: > > It makes it more confusing if you understand the difference between > > BIT_MASK() and BIT(). I think you have to use the latter. And

Re: [PATCH RFC 3/7] kvm: x86: XSAVE state and XFD MSRs context switch

2021-02-07 Thread Borislav Petkov
On Sun, Feb 07, 2021 at 10:42:52AM -0500, Jing Liu wrote: > diff --git a/arch/x86/kernel/fpu/init.c b/arch/x86/kernel/fpu/init.c > index 7e0c68043ce3..fbb761fc13ec 100644 > --- a/arch/x86/kernel/fpu/init.c > +++ b/arch/x86/kernel/fpu/init.c > @@ -145,6 +145,7 @@

Re: [RFC PATCH v1 0/4] vfio: Add IOPF support for VFIO passthrough

2021-02-07 Thread Shenming Lu
On 2021/2/7 16:20, Tian, Kevin wrote: >> From: Jean-Philippe Brucker >> Sent: Friday, February 5, 2021 6:37 PM >> >> Hi, >> >> On Thu, Feb 04, 2021 at 06:52:10AM +, Tian, Kevin wrote: >>> The static pinning and mapping problem in VFIO and possible >> solutions >>> have been discussed

[PATCH for-next 19/32] scsi: mvumi: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/mvumi.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/mvumi.c b/drivers/scsi/mvumi.c index

[GIT PULL] core/urgent for v5.11-rc7

2021-02-07 Thread Borislav Petkov
Hi Linus, pls pull two core/urgent fixes for v5.11. Thx. --- The following changes since commit 1048ba83fb1c00cd24172e23e8263972f6b5d9ac: Linux 5.11-rc6 (2021-01-31 13:50:09 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git

Re: [PATCH v4 3/3] arm64: dts: mt8192: add mt6315 regulator nodes

2021-02-07 Thread kernel test robot
'--base' as documented in https://git-scm.com/docs/git-format-patch] url: https://github.com/0day-ci/linux/commits/Hsin-Hsiung-Wang/Add-support-for-MT6315-regulator/20210207-141936 base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next config: arm64-allyesconfig

[PATCH for-next 27/32] scsi: qlogicpti: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/qlogicpti.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/qlogicpti.c b/drivers/scsi/qlogicpti.c

[PATCH for-next 21/32] scsi: myrs: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/myrs.c | 15 ++- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/drivers/scsi/myrs.c b/drivers/scsi/myrs.c index

[PATCH for-next 25/32] scsi: pcmcia: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/pcmcia/sym53c500_cs.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/pcmcia/sym53c500_cs.c

[PATCH for-next 20/32] scsi: myrb: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/myrb.c | 20 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/drivers/scsi/myrb.c b/drivers/scsi/myrb.c

[PATCH for-next 30/32] scsi: vmw_pvscsi: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/vmw_pvscsi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/vmw_pvscsi.c b/drivers/scsi/vmw_pvscsi.c

[PATCH for-next 31/32] scsi: wd719x: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/wd719x.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/wd719x.c b/drivers/scsi/wd719x.c index

[PATCH for-next 03/32] scsi: lpfc: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/lpfc/lpfc_sli.c | 49 +++- 1 file changed, 21 insertions(+), 28 deletions(-) diff --git

[PATCH for-next 08/32] scsi: a3000: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/a3000.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/a3000.c b/drivers/scsi/a3000.c index

[PATCH for-next 28/32] scsi: sgiwd93: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/sgiwd93.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/sgiwd93.c b/drivers/scsi/sgiwd93.c index

[PATCH for-next 15/32] scsi: initio: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/initio.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/initio.c b/drivers/scsi/initio.c index

[PATCH for-next 12/32] scsi: gvp11: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/gvp11.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/gvp11.c b/drivers/scsi/gvp11.c index

[PATCH for-next 17/32] scsi: mac53c94: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/mac53c94.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/mac53c94.c b/drivers/scsi/mac53c94.c index

[PATCH for-next 09/32] scsi: aha1740: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/aha1740.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/aha1740.c b/drivers/scsi/aha1740.c index

[PATCH for-next 11/32] scsi: esp_scsi: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/esp_scsi.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/esp_scsi.c b/drivers/scsi/esp_scsi.c index

[PATCH for-next 01/32] scsi: 53c700: Replace spin_lock_irqsave with spin_lock in hard IRQ

2021-02-07 Thread Xiaofei Tan
It is redundant to do irqsave and irqrestore in hardIRQ context, where it has been in a irq-disabled context. Signed-off-by: Xiaofei Tan --- drivers/scsi/53c700.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/53c700.c b/drivers/scsi/53c700.c index

<    1   2   3   4   5   6   >