Re: [PATCH] acpi / apei: fix NULL deref during init

2018-12-15 Thread Greg KH
On Fri, Dec 14, 2018 at 11:54:28PM +0100, Borislav Petkov wrote: > On Fri, Dec 14, 2018 at 11:42:01PM +0100, Thomas Schöbel-Theuer wrote: > > Ah, I overlooked that commit e56c92565dfe2 is already providing a different > > solution to the same problem in newer kernels _only_, as a _side_ effect > >

Re: [PATCH 4.19 000/142] 4.19.10-stable review

2018-12-15 Thread Greg Kroah-Hartman
On Fri, Dec 14, 2018 at 01:11:32PM -0700, shuah wrote: > On 12/14/18 4:58 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.19.10 release. > > There are 142 patches in this series, all will be posted as a response > > to this one. If anyone has any issues wit

Question: pause mode disabled for marvell 88e151x phy

2018-12-15 Thread Yunsheng Lin
Hi, all When using the marvel 88e151x phy driver, the pause mode is disabled by commit 6623c0fba10e when phy is inited as below: if (phydev->interface == PHY_INTERFACE_MODE_SGMII) { + u32 pause; + /* Select page 18 */ err = marvell_set_

Re: [PATCH 4.19 000/142] 4.19.10-stable review

2018-12-15 Thread Greg Kroah-Hartman
On Fri, Dec 14, 2018 at 06:06:10PM -0800, Guenter Roeck wrote: > On 12/14/18 3:58 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.19.10 release. > > There are 142 patches in this series, all will be posted as a response > > to this one. If anyone has any is

Re: [PATCH 4.4 00/88] 4.4.168-stable review

2018-12-15 Thread Greg Kroah-Hartman
On Fri, Dec 14, 2018 at 06:10:29PM -0800, Guenter Roeck wrote: > On 12/14/18 3:59 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.4.168 release. > > There are 88 patches in this series, all will be posted as a response > > to this one. If anyone has any iss

[PATCH] regulator: convert to DEFINE_SHOW_ATTRIBUTE

2018-12-15 Thread Yangtao Li
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. Signed-off-by: Yangtao Li --- drivers/regulator/core.c | 37 +--- drivers/regulator/dbx500-prcmu.c | 35 -- 2 files changed, 9 insertions(+), 63 deletions(-) diff --git a/driver

[RESEND] mfd: rave-sp: fix typo in rave_sp_checksum comment

2018-12-15 Thread Yangtao Li
Caculated -> Calculated Signed-off-by: Yangtao Li --- drivers/mfd/rave-sp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mfd/rave-sp.c b/drivers/mfd/rave-sp.c index 2a8369657e38..26c7b63e008a 100644 --- a/drivers/mfd/rave-sp.c +++ b/drivers/mfd/rave-sp.c @@ -109,7

Re: [PATCH] KVM: PPC: Book3S HV: Change to use DEFINE_SHOW_ATTRIBUTE macro

2018-12-15 Thread Frank Lee
ping...

Re: [PATCH] mfd: fix small typo

2018-12-15 Thread Frank Lee
On Tue, Dec 11, 2018 at 1:31 AM Lee Jones wrote: > > On Tue, 11 Dec 2018, Frank Lee wrote: > > > ping... > > Please don't do that. > > If you think your patch has been missed, then please send it again as > a [RESEND]. In this case you will need to fix the $SUBJECT line too. > To see what it

Re: [PATCH] sh: mm: Change to use DEFINE_SHOW_ATTRIBUTE macro

2018-12-15 Thread Frank Lee
ping..

[RESEND] regmap: rbtree: convert to DEFINE_SHOW_ATTRIBUTE

2018-12-15 Thread Yangtao Li
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. Signed-off-by: Yangtao Li --- drivers/base/regmap/regcache-rbtree.c | 12 +--- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/drivers/base/regmap/regcache-rbtree.c b/drivers/base/regmap/regcache-rbtree.c index b1e9aae9

[RESEND] regmap: debugfs: convert to DEFINE_SHOW_ATTRIBUTE

2018-12-15 Thread Yangtao Li
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. Signed-off-by: Yangtao Li --- drivers/base/regmap/regmap-debugfs.c | 12 +--- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/drivers/base/regmap/regmap-debugfs.c b/drivers/base/regmap/regmap-debugfs.c index 87b562e49a4

[RESEND] PM / Domains: remove define_genpd_open_function() and define_genpd_debugfs_fops()

2018-12-15 Thread Yangtao Li
We already have the DEFINE_SHOW_ATTRIBUTE, There is no need to define such a macro, so remove define_genpd_open_function and define_genpd_debugfs_fops. Convert them to DEFINE_SHOW_ATTRIBUTE. Signed-off-by: Yangtao Li --- drivers/base/power/domain.c | 71 + 1

Re: [PATCH] driver core: remove define_genpd_open_function() and define_genpd_debugfs_fops()

2018-12-15 Thread Frank Lee
On Mon, Dec 3, 2018 at 5:12 PM Rafael J. Wysocki wrote: > > On Sat, Dec 1, 2018 at 2:51 AM Yangtao Li wrote: > > > > We already have the DEFINE_SHOW_ATTRIBUTE,There is no need to define such > > a macro,so remove define_genpd_open_function and define_genpd_debugfs_fops. > > Also use DEFINE_SHOW_A

Your OHA contact form

2018-12-15 Thread karen . cooney
WilliamslupE: Thank you for filling out our online contact form. Onondaga Historical Association

Re: [PATCH 1/2] livepatch: fix non-static warnings

2018-12-15 Thread Nicholas Mc Guire
On Fri, Dec 14, 2018 at 04:34:23PM -0500, Joe Lawrence wrote: > On 12/14/2018 11:56 AM, Nicholas Mc Guire wrote: > > Sparse reported warnings about non-static symbols. For the variables a > > simple static attribute is fine - for those symbols referenced by > > livepatch via klp_func the symbol-nam

[RESEND] staging: fwserial: convert to DEFINE_SHOW_ATTRIBUTE

2018-12-15 Thread Yangtao Li
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. Signed-off-by: Yangtao Li --- drivers/staging/fwserial/fwserial.c | 32 - 1 file changed, 4 insertions(+), 28 deletions(-) diff --git a/drivers/staging/fwserial/fwserial.c b/drivers/staging/fwserial/fwserial.c in

[RESEND] staging: greybus: convert to DEFINE_SHOW_ATTRIBUTE

2018-12-15 Thread Yangtao Li
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. Signed-off-by: Yangtao Li --- drivers/staging/greybus/loopback.c | 16 ++-- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/drivers/staging/greybus/loopback.c b/drivers/staging/greybus/loopback.c index 7080294f705c

[RESEND] staging: rtlwifi: convert to DEFINE_SHOW_ATTRIBUTE

2018-12-15 Thread Yangtao Li
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. Signed-off-by: Yangtao Li --- drivers/staging/rtlwifi/debug.c | 23 ++- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/drivers/staging/rtlwifi/debug.c b/drivers/staging/rtlwifi/debug.c index 8999feda29b4..5

[RESEND] staging: unisys: convert to DEFINE_SHOW_ATTRIBUTE

2018-12-15 Thread Yangtao Li
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. Signed-off-by: Yangtao Li --- drivers/staging/unisys/visorhba/visorhba_main.c | 14 +- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/drivers/staging/unisys/visorhba/visorhba_main.c b/drivers/staging/unisys/visorhb

[RESEND] staging: vc04_services: convert to DEFINE_SHOW_ATTRIBUTE

2018-12-15 Thread Yangtao Li
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. Signed-off-by: Yangtao Li --- .../interface/vchiq_arm/vchiq_debugfs.c| 14 +- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_debugfs.c b/drivers/s

Re: [rfd] saving old mice -- button glitching/debouncing

2018-12-15 Thread Vojtech Pavlik
On Sat, Dec 15, 2018 at 12:24:37AM +0100, Pavel Machek wrote: > Patch is obviously not ready; but: > > a) would it be useful to people Probably not. Mice already do internal software/hardware debouncing on switches. If you see duplicate clicks making it all the way to the kernel driver, somethi

[PATCH v5] Input: i8042 add i8042_is_mr_coffee() helper to avoid refconut leak

2018-12-15 Thread Yangtao Li
of_find_node_by_path() acquires a reference to the node returned by it and that reference needs to be dropped by its caller. Add i8042_is_mr_coffee() helper to avoid refconut leak. Signed-off-by: Yangtao Li --- changes in v5: -fix typo changes in v4: -fix typo changes in v3: -add i8042_is_mr_co

Re: [PATCH] mt76: convert to DEFINE_SHOW_ATTRIBUTE

2018-12-15 Thread Frank Lee
On Thu, Dec 6, 2018 at 2:09 AM Joe Perches wrote: > > On Mon, 2018-12-03 at 08:40 -0500, Yangtao Li wrote: > > Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. > > Thanks. > > Are you doing these manually or using some script? In fact, just use grep. Yours, Yangtao > >

Re: [PATCH] gpu/drm: remove DEFINE_DPU_DEBUGFS_SEQ_FOPS()

2018-12-15 Thread Frank Lee
On Tue, Dec 4, 2018 at 10:59 PM Sean Paul wrote: > > On Sat, Dec 01, 2018 at 10:19:11PM -0500, Yangtao Li wrote: > > We already have the DEFINE_SHOW_ATTRIBUTE.There is no need to define > > such a macro separately,so remove DEFINE_DPU_DEBUGFS_SEQ_FOPS. > > Also use DEFINE_SHOW_ATTRIBUTE to simplif

Re: linux-next: build warning after merge of the irqchip tree

2018-12-15 Thread Marc Zyngier
On Fri, 14 Dec 2018 03:44:06 +, Stephen Rothwell wrote: > > [1 ] > Hi all, > > After merging the irqchip tree, today's linux-next build (arm > multi_v7_defconfig) produced this warning: > > In file included from include/linux/io.h:25, > from include/linux/of_address.h:7, >

Re: [PATCH] mm: Reuse only-pte-mapped KSM page in do_wp_page()

2018-12-15 Thread Kirill Tkhai
On 14.12.2018 21:06, Yang Shi wrote: > > > On 12/14/18 1:26 AM, Kirill Tkhai wrote: >> On 13.12.2018 22:15, Yang Shi wrote: >>> >>> On 12/13/18 7:29 AM, Kirill Tkhai wrote: This patch adds an optimization for KSM pages almost in the same way, that we have for ordinary anonymous pag

Re: [PATCH 2/5] dma-direct: add an explicit dma_direct_get_required_mask

2018-12-15 Thread Benjamin Herrenschmidt
On Thu, 2018-09-20 at 20:52 +0200, Christoph Hellwig wrote: > This is somewhat modelled after the powerpc version, and differs from > the legacy fallback in use fls64 instead of pointlessly splitting up the > address into low and high dwords and in that it takes (__)phys_to_dma > into account. Thi

Re: [PATCH 3/3] arm64/sve: Disentangle from

2018-12-15 Thread kbuild test robot
Hi Dave, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on arm64/for-next/core] [also build test WARNING on v4.20-rc6 next-20181214] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0d

[PATCH net-next] tcp: minor optimization for calculating packets_out in tcp connect

2018-12-15 Thread Yafang Shao
When we building a syn packet, the tcp_skb_pcount(skb) is always 1, which is set in tcp_init_nondata_skb(). Regarding the syn_data, it is set through memcpy(syn_data->cb, syn->cb, sizeof(syn->cb)), which is always 1 as well. So we don't need to use tcp_skb_pcount(skb), that could give us a little

Re: [PATCH] scripts: add a tool to produce a compile_commands.json file

2018-12-15 Thread Masahiro Yamada
On Fri, Dec 7, 2018 at 7:24 AM Tom Roeder wrote: > > The LLVM/Clang project provides many tools for analyzing C source code. > Many of these tools are based on LibTooling > (https://clang.llvm.org/docs/LibTooling.html), which depends on a > database of compiler flags. The standard container for th

Re: [PATCH v2 2/2] irqchip: add driver for imx-irqsteer controller

2018-12-15 Thread Marc Zyngier
Hi Lucas, On Fri, 14 Dec 2018 10:22:44 +, Lucas Stach wrote: > > The irqsteer block is a interrupt multiplexer/remapper found on the > i.MX8 line of SoCs. > > Signed-off-by: Fugang Duan > Signed-off-by: Lucas Stach > --- > v2: > - use raw_spinlock > - add proper clk error handling > -

Re: [rfd] saving old mice -- button glitching/debouncing

2018-12-15 Thread Pavel Machek
Hi! > > Patch is obviously not ready; but: > > > > a) would it be useful to people > > Probably not. > > Mice already do internal software/hardware debouncing on switches. If you > see duplicate clicks making it all the way to the kernel driver, something > is very wrong with the switch, to the

Re: [PATCH] PCI: Remove unused attr variable in pci_dma_configure

2018-12-15 Thread Christoph Hellwig
Thanks, applied. FYI, this was my editing of Robins patch that I though I had undone again, but only half so. Sorry.

AW: [PATCH 0/5] Prepare devicetrees for the new FSL QSPI driver

2018-12-15 Thread Schrempf Frieder
>On Thu, Dec 13, 2018 at 09:45:04AM +, Schrempf Frieder wrote: >> + Shawn, Sascha >> >> On 10.12.18 17:31, Schrempf Frieder wrote: >> > Hi FSL/ARM maintainers, >> > >> > On 10.12.18 17:26, Schrempf Frieder wrote: >> >> From: Frieder Schrempf >> >> >> >> We have prepared a new driver for the FS

Re: [rfd] saving old mice -- button glitching/debouncing

2018-12-15 Thread Vojtech Pavlik
On Sat, Dec 15, 2018 at 10:47:22AM +0100, Pavel Machek wrote: > > > b) would it be acceptable if done properly? (cmd line option to > > > enable, avoiding duplicate/wrong events?) > > > > Well, for one, you shouldn't be using a timer, all the debouncing can be > > done by math on the event timest

[PATCH] jffs2: Fix retry handling jffs2_listxattr

2018-12-15 Thread Richard Weinberger
When jffs2 has to retry reading xattrs we need to reset the buffer pointer. Otherwise we return old xattrs from the previous iteration which leads to a inconsistency between the number of bytes we return and the real list size. Cc: Cc: Andreas Gruenbacher Fixes: 764a5c6b1fa4 ("xattr handlers: Si

Re: gtucker/kernelci-stable boot bisection: v4.19.9 on meson-gxbb-p200

2018-12-15 Thread Guillaume Tucker
On 15/12/2018 01:34, Kevin Hilman wrote: > "kernelci.org bot" writes: > >> gtucker/kernelci-stable boot bisection: v4.19.9 on meson-gxbb-p200 >> >> Summary: >> Start: be53d23e68c2 Linux 4.19.9 >> Details:https://kernelci.org/boot/id/5c13e85d59b5144a340a819d >> Plain log: >> https

Re: [rfd] saving old mice -- button glitching/debouncing

2018-12-15 Thread Pavel Machek
On Sat 2018-12-15 11:12:21, Vojtech Pavlik wrote: > On Sat, Dec 15, 2018 at 10:47:22AM +0100, Pavel Machek wrote: > > > > > b) would it be acceptable if done properly? (cmd line option to > > > > enable, avoiding duplicate/wrong events?) > > > > > > Well, for one, you shouldn't be using a timer,

Re: [PATCH 0/2] scripts: coccinelle: Improve boolinit

2018-12-15 Thread Masahiro Yamada
On Wed, Dec 12, 2018 at 9:34 PM Julia Lawall wrote: > > Reduce the scope of the rule and improve the warning messages. > > julia (2): > scripts: coccinelle: only suggest true/false in files that already use > them > scripts: coccinelle: Correct warning message Applied to linux-kbuild. Th

RE: [PATCH net-next 0/6] net: hns3: Add more commands to Debugfs in HNS3 driver

2018-12-15 Thread Salil Mehta
> From: David Miller [mailto:da...@davemloft.net] > Sent: Friday, December 14, 2018 10:37 PM > To: Salil Mehta > Cc: Zhuangyuzeng (Yisen) ; lipeng (Y) > ; mehta.sa...@opnsrc.net; net...@vger.kernel.org; > linux-kernel@vger.kernel.org; Linuxarm > Subject: Re: [PATCH net-next 0/6] net: hns3: Add mo

Re: Question: pause mode disabled for marvell 88e151x phy

2018-12-15 Thread Russell King - ARM Linux
On Sat, Dec 15, 2018 at 04:07:42PM +0800, Yunsheng Lin wrote: > There seems to be some problem with pause subsequent negotiation. > We reverted the above patch and tried to reproduce the above problem > by triggering another negotiation by reconnection of the cable, using > ethtool -a cmd shows bot

[tip:x86/urgent] x86/vdso: Pass --eh-frame-hdr to the linker

2018-12-15 Thread tip-bot for Alistair Strachan
Commit-ID: cd01544a268ad8ee5b1dfe42c4393f1095f86879 Gitweb: https://git.kernel.org/tip/cd01544a268ad8ee5b1dfe42c4393f1095f86879 Author: Alistair Strachan AuthorDate: Fri, 14 Dec 2018 14:36:37 -0800 Committer: Borislav Petkov CommitDate: Sat, 15 Dec 2018 11:37:51 +0100 x86/vdso: Pass --

Re: [PATCH] fix page_count in ->iomap_migrate_page()

2018-12-15 Thread Christoph Hellwig
FYI, for iomap we got a patch to just increment the page count when setting the private data, and it finally got merged into mainline after a while. Not that it totally makes sense to me, but it is what it is. It would just be nice if set_page_private took care of it and we had a clear_page_priva

Re: [PATCH] kernel/dma/direct: Do not include SME mask in the DMA supported check

2018-12-15 Thread Christoph Hellwig
The mail seems to be so oddly encoded so that git-am fails on it. Can you resend as plain text?

Re: [PATCH 4.4 00/88] 4.4.168-stable review

2018-12-15 Thread Harsh Shandilya
On 14 December 2018 5:29:34 PM IST, Greg Kroah-Hartman wrote: >This is the start of the stable review cycle for the 4.4.168 release. >There are 88 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. > >Res

Re: [PATCH 4.19 000/142] 4.19.10-stable review

2018-12-15 Thread Harsh Shandilya
On 14 December 2018 5:28:05 PM IST, Greg Kroah-Hartman wrote: >This is the start of the stable review cycle for the 4.19.10 release. >There are 142 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. > >Re

Re: [PATCH] fix page_count in ->iomap_migrate_page()

2018-12-15 Thread Richard Weinberger
Am Samstag, 15. Dezember 2018, 11:51:12 CET schrieb Christoph Hellwig: > FYI, for iomap we got a patch to just increment the page count when > setting the private data, and it finally got merged into mainline after > a while. > > Not that it totally makes sense to me, but it is what it is. It wou

Re: [RESEND] staging: rtlwifi: convert to DEFINE_SHOW_ATTRIBUTE

2018-12-15 Thread kbuild test robot
/0day-ci/linux/commits/Yangtao-Li/staging-rtlwifi-convert-to-DEFINE_SHOW_ATTRIBUTE/20181215-194101 config: x86_64-randconfig-x004-201849 (attached as .config) compiler: gcc-7 (Debian 7.3.0-1) 7.3.0 reproduce: # save the attached .config to linux build tree make ARCH=x86_64 All error

My Greeting

2018-12-15 Thread Mr. David Abraham
My Greeting, How are you today?Did you receive the letter i sent to you. Please answer me. Best Regard, Mr.David Abraham.

WARNING in __rcu_read_unlock

2018-12-15 Thread syzbot
Hello, syzbot found the following crash on: HEAD commit:2aa55dccf83d hns3: prevent building without CONFIG_INET git tree: net-next console output: https://syzkaller.appspot.com/x/log.txt?x=15628f6d40 kernel config: https://syzkaller.appspot.com/x/.config?x=d9655b05acfc97ff dashboa

Re: [PATCH v5] arm64: implement ftrace with regs

2018-12-15 Thread Torsten Duwe
On Fri, 14 Dec 2018 21:45:03 +0530 Amit Daniel Kachhap wrote: > Sorry I didn't mention my environment. I am using 4.20-rc3 and it has > all the above 8 extra patches > mentioned by you. So that should be fine. > I read your change description in v3 patchset. You had mentioned there > that graph

Re: [PATCH net-next] tcp: minor optimization for calculating packets_out in tcp connect

2018-12-15 Thread Eric Dumazet
On 12/15/2018 01:33 AM, Yafang Shao wrote: > When we building a syn packet, the tcp_skb_pcount(skb) is always 1, > which is set in tcp_init_nondata_skb(). > Regarding the syn_data, it is set through > memcpy(syn_data->cb, syn->cb, sizeof(syn->cb)), > which is always 1 as well. > > So we don't n

[PATCH v2 0/3] fat: Added functions to determine the FAT variant (12/16/32bit)

2018-12-15 Thread Carmeli Tamir
Along the FAT FS code, the FAT variant (whether this is FAT12, FAT16 or FAT32) is determined by checking the fat_bits field of struct msdos_sb_info. This is somewhat error prone as it forces the usage of magics (12, 16, 32) multiple times in the code. This series replaces the places in which the

[PATCH v2 1/3] fat: Removed FAT_FIRST_ENT macro

2018-12-15 Thread Carmeli Tamir
The comment edited in this patch was the only reference to the FAT_FIRST_ENT macro, which is not used anymore. Moreover, the commented line of code does not compile with the current code. Since the FAT_FIRST_ENT macro checks the FAT variant in a way that the patch series changes, I removed it, an

[PATCH v2 2/3] fat: Moved MAX_FAT to fat.h and changed it to inline function

2018-12-15 Thread Carmeli Tamir
MAX_FAT is useless in msdos_fs.h, since it uses the MSDOS_SB function that is defined in fat.h. So really, this macro can be only called from code that already includes fat.h. Hence, this patch moves it to fat.h, right after MSDOS_SB is defined. I also changed it to an inline function in order to

[PATCH v2 3/3] fat: New inline functions to determine the FAT variant (32, 16 or 12)

2018-12-15 Thread Carmeli Tamir
This patch introduces 3 new inline functions - IS_FAT12, IS_FAT16 and IS_FAT32, and replaces every occurrence in the code in which the FS variant (whether this is FAT12, FAT16 or FAT32) was previously checked using msdos_sb_info->fat_bits. Signed-off-by: Carmeli Tamir --- fs/fat/cache.c | 2

IH

2018-12-15 Thread Lisa
Hello, I have a good news for you.Pleasecontact me for more details. Sorry if you received this letter in your spam, Due to recent connection error here in my country. Looking forward for your immediate response to me through my private e- mail id: (sgtlis...@gmail.com) Best Regards,$3.5 M

Re: [PATCH] jffs2: fix invocations of dbg_xattr() for dead jffs2_xattr_ref

2018-12-15 Thread Hou Tao
On 2018/12/14 5:53, Richard Weinberger wrote: > On Sun, Dec 9, 2018 at 7:52 AM Boris Brezillon > wrote: >> >> On Sat, 20 Oct 2018 19:07:53 +0800 >> Hou Tao wrote: >> >>> When jffs2_xattr_ref is dead, xref->ic or xref->xd will be invalid >>> because these fields will be reused as xref->ino or x

Re: [PATCH] jffs2: make the overwritten xattr invisible after remount

2018-12-15 Thread Hou Tao
ping ? On 2018/12/9 14:21, Hou Tao wrote: > For xattr modification, we do not write a new jffs2_raw_xref with > delete marker into flash, so if a xattr is modified then removed, > and the old xref & xdatum are not erased by GC, after reboot or > remount, the new xattr xref will be dead but the old

Re: [PATCH] jffs2: ensure wbuf_verify is valid before using it.

2018-12-15 Thread Hou Tao
ping ? On 2018/12/9 14:35, Hou Tao wrote: > ping ? > > On 2018/10/20 20:08, Hou Tao wrote: >> Now MTD emulated by UBI volumn doesn't allocate wbuf_verify in >> jffs2_ubivol_setup(), because UBI can do the verifcation itself, >> so when CONFIG_JFFS2_FS_WBUF_VERIFY is enabled and a MTD device >> em

Re: [PATCH] squashfs: enable __GFP_FS in ->readpage to prevent hang in mem alloc

2018-12-15 Thread Hou Tao
ping ? On 2018/12/13 10:18, Hou Tao wrote: > ping ? > > On 2018/12/6 9:14, Hou Tao wrote: >> ping ? >> >> On 2018/12/4 10:08, Hou Tao wrote: >>> There is no need to disable __GFP_FS in ->readpage: >>> * It's a read-only fs, so there will be no dirty/writeback page and >>> there will be no deadl

Re: [PATCH] jffs2: make the overwritten xattr invisible after remount

2018-12-15 Thread Richard Weinberger
On Sat, Dec 15, 2018 at 2:23 PM Hou Tao wrote: > > ping ? Sorry for the delay. I'll try now to review all the pending jffs2 patches. > On 2018/12/9 14:21, Hou Tao wrote: > > For xattr modification, we do not write a new jffs2_raw_xref with > > delete marker into flash, so if a xattr is modified

I WANT YOU TO USE THIS DONATION TO HELP THE POOR URGENT.

2018-12-15 Thread MRS. SONIA AVIS IBRAHIM
My Sincere Greetings, I am MRS. SONIA AVIS IBRAHIM, I decided to donate what I have to you for investment towards the good work of charity organization, and also to help the motherless and the less privileged ones and to carry out a charitable works in your Country and around the World on my Beha

Re: [PATCH 04/16] remoteproc/pru: Add PRU remoteproc driver

2018-12-15 Thread Dimitar Dimitrov
On Fri, 12/14 2018 11:53:56 EET Roger Quadros wrote: > Hi Dimitar, > > On 30/11/18 23:39, Dimitar Dimitrov wrote: > > On Monday, 12/26/2018, 9:52:37 EET Roger Quadros wrote: > >> +/* > >> + * Convert PRU device address (instruction space) to kernel virtual > >> address + * > >> + * A PRU does not

Re: [PATCH] dmaengine: rcar-dmac: Document R8A774C0 bindings

2018-12-15 Thread Simon Horman
On Thu, Dec 13, 2018 at 08:17:43PM +, Fabrizio Castro wrote: > Renesas' RZ/G2E (R8A774C0) SoC has DMA controllers compatible > with this driver, therefore document RZ/G2E specific bindings. > > Signed-off-by: Fabrizio Castro Reviewed-by: Simon Horman

Re: [PATCH] dt-bindings: irqchip: renesas-irqc: Document r8a774c0 support

2018-12-15 Thread Simon Horman
On Thu, Dec 13, 2018 at 08:18:04PM +, Fabrizio Castro wrote: > Document RZ/G2E (R8A774C0) SoC bindings. > > Signed-off-by: Fabrizio Castro Reviewed-by: Simon Horman

Re: [PATCH] dt-bindings: watchdog: renesas-wdt: Document r8a774c0 support

2018-12-15 Thread Simon Horman
On Thu, Dec 13, 2018 at 08:18:53PM +, Fabrizio Castro wrote: > RZ/G2E (R8A774C0) watchdog implementation is compatible with R-Car > Gen3, therefore add relevant documentation. > > Signed-off-by: Fabrizio Castro Reviewed-by: Simon Horman

Re: [PATCH] dt-bindings: can: rcar_can: Add r8a774c0 support

2018-12-15 Thread Simon Horman
On Thu, Dec 13, 2018 at 08:19:38PM +, Fabrizio Castro wrote: > Document RZ/G2E (r8a774c0) SoC specific bindings. > > Signed-off-by: Fabrizio Castro Reviewed-by: Simon Horman

Re: [PATCH] dt-bindings: iommu: ipmmu-vmsa: Add r8a774c0 support

2018-12-15 Thread Simon Horman
On Thu, Dec 13, 2018 at 08:19:28PM +, Fabrizio Castro wrote: > Document RZ/G2E (R8A774C0) SoC bindings. > > Signed-off-by: Fabrizio Castro Reviewed-by: Simon Horman

Re: [PATCH] dt-bindings: gpio: rcar: Add r8a774c0 (RZ/G2E) support

2018-12-15 Thread Simon Horman
On Thu, Dec 13, 2018 at 08:18:14PM +, Fabrizio Castro wrote: > Document Renesas' RZ/G2E (R8A774C0) GPIO blocks compatibility within the > relevant dt-bindings. > > Signed-off-by: Fabrizio Castro Reviewed-by: Simon Horman

Re: [PATCH] dt-bindings: thermal: rcar-thermal: add R8A774C0 support

2018-12-15 Thread Simon Horman
On Thu, Dec 13, 2018 at 08:19:48PM +, Fabrizio Castro wrote: > Document RZ/G2E SoC (a.k.a. r8a774c0) bindings. > > Signed-off-by: Fabrizio Castro Reviewed-by: Simon Horman

[PATCH] scsi: 3w-xxx: fix indentation issue, add missing tab

2018-12-15 Thread Colin King
From: Colin Ian King There is a tab missing on a return statement, add the missing tab. Signed-off-by: Colin Ian King --- drivers/scsi/3w-.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/3w-.c b/drivers/scsi/3w-.c index a58257645e94..04164d2f03dd

[PATCH] scsi: bfa: clean up a couple of indentation issues

2018-12-15 Thread Colin King
From: Colin Ian King There is a break statement with an extra space that needs removed and a call to bfa_trc that is indented one level too much. Fix these. Signed-off-by: Colin Ian King --- drivers/scsi/bfa/bfa_ioc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/driv

Re: [PATCH] squashfs: enable __GFP_FS in ->readpage to prevent hang in mem alloc

2018-12-15 Thread Matthew Wilcox
On Tue, Dec 04, 2018 at 10:08:40AM +0800, Hou Tao wrote: > There is no need to disable __GFP_FS in ->readpage: > * It's a read-only fs, so there will be no dirty/writeback page and > there will be no deadlock against the caller's locked page > * It just allocates one page, so compaction will not

[PATCH 4/4] vt: ignore sequences that contain ':' in parameters.

2018-12-15 Thread Martin Hostettler
csi sequences can contain subparameters delimited by ':' characters. For now just ignore the whole sequence in this case. Such sequences are used by more capable terminal implementations with T.416 high color modes or extended underline rendition attributes. Also ignore sequences with private use

[PATCH 3/4] vt: ignore csi sequences with intermediate characters.

2018-12-15 Thread Martin Hostettler
Various csi sequences contain intermediate characters between the parameters and the final character. Introduce a additional state that cleanly ignores these sequences. This allows the vt to ignore these sequences used by more capable terminal implementations such as "request mode", etc. Signed-o

vt: Improve CSI parsing

2018-12-15 Thread Martin Hostettler
This patch series improves parsing of csi sequences to be more compliant with current practice. ECMA-64 defines the format of CSI sequences which allow more characters than what the vt parser currently accepts. More importantly many of these characters are used in sequences that more capable termi

[PATCH 2/4] vt: Implement parsing for >, =, < private sequences.

2018-12-15 Thread Martin Hostettler
Private sequences can start with '>', '=' and (in theory) '<'. Implement correct parsing for these. The newly parsable sequences are cleanly ignored as it is customary with terminal emulators. This allows the vt to ignore various sequences used by more capable terminal implementations such as "Sec

[PATCH 1/4] vt: refactor vc_ques to allow of other private sequences.

2018-12-15 Thread Martin Hostettler
The vc_ques keeps track if a csi sequence is a private DEC control function beginning with '?'. Nowadays some private control functions begin with '>' and '='. Switch the code to instead use a new 3-bit vc_priv that allows for all private use parameter prefixes. Signed-off-by: Martin Hostettler -

Re: [PATCH v3 7/8] HID: logitech: Enable high-resolution scrolling on Logitech mice

2018-12-15 Thread Clément VUCHENER
Le ven. 14 déc. 2018 à 19:37, Harry Cutts a écrit : > > Hi Clement, > > On Fri, 14 Dec 2018 at 05:47, Clément VUCHENER > wrote: > > Hi, The G500s (and the G500 too, I think) does support the "scrolling > > acceleration" bit. If I set it, I get around 8 events for each wheel > > "click", this is w

[PATCH] ubifs: Get/put page when changing PG_private

2018-12-15 Thread Richard Weinberger
The page migration code assumes that a page with PG_private set has its page count elevated by 1. UBIFS never did this and therefore the migration code was unable to migrate some pages owned by UBIFS. The lead to situations where the CMA memory allocator failed to allocate memory. Fix this by usin

Re: [PATCH 0/9] RZ/G2E basic device tree

2018-12-15 Thread Simon Horman
On Fri, Dec 14, 2018 at 09:10:04AM +, Fabrizio Castro wrote: > Dear All, > > this series adds a basic dtsi for the RZ/G2E (a.k.a. r8a774c0). Thanks Fabrizio, This series looks fine to me but I will wait to see if there are other reviews before applying. Reviewed-by: Simon Horman > Fabrizi

Re: [PATCH v2 6/8] socket: Add SO_TIMESTAMP[NS]_NEW

2018-12-15 Thread Willem de Bruijn
On Fri, Dec 14, 2018 at 8:07 PM Deepa Dinamani wrote: > > > > diff --git a/arch/alpha/include/uapi/asm/socket.h > > > b/arch/alpha/include/uapi/asm/socket.h > > > index 00e45c80e574..352e3dc0b3d9 100644 > > > --- a/arch/alpha/include/uapi/asm/socket.h > > > +++ b/arch/alpha/include/uapi/asm/socke

Re: [PATCH] usb: renesas_usbhs: add support for RZ/G2E

2018-12-15 Thread Simon Horman
On Fri, Dec 14, 2018 at 08:27:03AM +, Fabrizio Castro wrote: > HS-USB found in RZ/G2E (a.k.a. r8a774c0) is very similar to the > one found in R-Car E3 (a.k.a. r8a77990), as it needs to release > the PLL reset by the UGCTRL register like R-Car E3, therefore add > r8a774c0 support in a similar fa

[PATCH v3 0/4] input: touchscreen: Add goodix GT5553 CTP support

2018-12-15 Thread Jagan Teki
This patchset support goodix GT5553 CTP. Changes for v3: - add cover-letter - s/ADVV28/AVDD28 on commit head - fix few typo Changes for v2: - Rename vcc-supply with AVDD28-supply - disable regulator in remove - fix to setup regulator in probe code - add chipdata - drop example node in dt-bindings

[PATCH v3 2/4] Input: goodix - Add AVDD28-supply regulator support

2018-12-15 Thread Jagan Teki
Goodix CTP controllers have AVDD28 pin connected to voltage regulator which may not be turned on by default, like for GT5663. Add support for such ctp used boards by adding voltage regulator handling code to goodix ctp driver. Signed-off-by: Jagan Teki --- drivers/input/touchscreen/goodix.c | 3

[PATCH v3 3/4] dt-bindings: input: touchscreen: goodix: Add GT5663 compatible

2018-12-15 Thread Jagan Teki
GT5663 is capacitive touch controller with customized smart wakeup gestures, it support chipdata which is similar to existing GT1151 and require AVDD28 supply for some boards. Document the compatible for the same. Signed-off-by: Jagan Teki --- Documentation/devicetree/bindings/input/touchscreen

[PATCH v3 4/4] Input: goodix - Add GT5663 CTP support

2018-12-15 Thread Jagan Teki
GT5663 is capacitive touch controller with customized smart wakeup gestures. Add support for it by adding compatible and supported chip data. The chip data on GT5663 is similar to GT1151, like - config data register has 0x8050 address - config data register max len is 240 - config data checksum h

Re: [PATCH] dt-bindings: usb: renesas_usbhs: Add r8a774c0 support

2018-12-15 Thread Simon Horman
On Thu, Dec 13, 2018 at 08:21:03PM +, Fabrizio Castro wrote: > Document RZ/G2E (R8A774C0) SoC bindings. > > Signed-off-by: Fabrizio Castro Reviewed-by: Simon Horman

[PATCH v3 1/4] dt-bindings: input: touchscreen: goodix: Document AVDD28-supply property

2018-12-15 Thread Jagan Teki
Most of the Goodix CTP controllers are supply with AVDD28 pin. which need to supply for controllers like GT5663 on some boards to trigger the power. So, document the supply property so-that the require boards that used on GT5663 can enable it via device tree. Signed-off-by: Jagan Teki --- Docum

Re: [PATCH] pinctrl: sh-pfc: r8a77990: Fix IOCTRL reg state after s2ram on R-Car E3

2018-12-15 Thread Simon Horman
On Thu, Dec 13, 2018 at 05:20:27PM +0100, Geert Uytterhoeven wrote: > Due to an interaction with commit 9f2b76a2db3c4387 ("pinctrl: sh-pfc: > r8a77990: Add R8A774C0 PFC support"), the state of the I/O Control > Registers is saved/restored during s2ram on RZ/G2E, but not on R-Car E3. > Hence on R-Ca

Re: Can we drop upstream Linux x32 support?

2018-12-15 Thread Andy Lutomirski
> On Dec 14, 2018, at 11:41 PM, Thomas Schoebel-Theuer > wrote: > >> On 12/14/18 22:41, Thomas Schöbel-Theuer wrote: >>> On 12/14/18 22:24, Andy Lutomirski wrote: >>> >>> I'm talking about x32, which is a different beast. >>> >> >> So from my viewpoint the mentioned roadmap / timing requir

[PATCH V2 net-next 3/6] net: hns3: Add "status register" information query function

2018-12-15 Thread Salil Mehta
From: liuzhongzhu This patch prints status register information by module. debugfs command: echo dump reg [mode name] > cmd Sample Command: root@(none)# echo dump reg bios common > cmd BP_CPU_STATE: 0x0 DFX_MSIX_INFO_NIC_0: 0xc000 DFX_MSIX_INFO_NIC_1: 0xf DFX_MSIX_INFO_NIC_2: 0x2 DFX_MSIX_

[PATCH V2 net-next 6/6] net: hns3: Add "tm map" status information query function

2018-12-15 Thread Salil Mehta
From: liuzhongzhu This patch prints dcb register status information by module. debugfs command: root@(none)# echo dump tm map 100 > cmd queue_id | qset_id | pri_id | tc_id 0100 | 0065| 08 | 00 root@(none)# Signed-off-by: liuzhongzhu Signed-off-by: Salil Mehta --- drivers/net/eth

[PATCH V2 net-next 5/6] net: hns3: Add "queue map" information query function

2018-12-15 Thread Salil Mehta
From: liuzhongzhu This patch prints queue map information. debugfs command: echo dump queue map > cmd Sample Command: root@(none)# echo queue map > cmd local queue id | global queue id | vector id 0 32 769 1 33 770

[PATCH V2 net-next 4/6] net: hns3: Add "dcb register" status information query function

2018-12-15 Thread Salil Mehta
From: liuzhongzhu This patch prints dcb register status information by module. debugfs command: root@(none)# echo dump reg dcb > cmd roce_qset_mask: 0x0 nic_qs_mask: 0x0 qs_shaping_pass: 0x0 qs_bp_sts: 0x0 pri_mask: 0x0 pri_cshaping_pass: 0x0 pri_pshaping_pass: 0x0 root@(none)# Signed-o

[PATCH V2 net-next 2/6] net: hns3: Add "manager table" information query function

2018-12-15 Thread Salil Mehta
From: liuzhongzhu This patch prints manager table information. debugfs command: echo dump mng tbl > cmd Sample Command: root@(none)# echo dump mng tbl > cmd entry|mac_addr |mask|ether|mask|vlan|mask|i_map|i_dir|e_type 00 |01:00:5e:00:00:01|0 |0|0 ||0 |00 |00 |0 01

[PATCH V2 net-next 0/6] net: hns3: Add more commands to Debugfs in HNS3 driver

2018-12-15 Thread Salil Mehta
This patch-set adds few more debugfs commands to HNS3 Ethernet Driver. Support has been added to query info related to below items: 1. Packet buffer descriptor ("echo bd info [queue no] [bd index] > cmd") 2. Manager table("echo dump mng tbl > cmd") 3. Dfx status register("echo dump reg ssu [prt id]

[PATCH V2 net-next 1/6] net: hns3: Add "bd info" query function

2018-12-15 Thread Salil Mehta
From: liuzhongzhu This patch prints Sending and receiving package descriptor information. debugfs command: echo dump bd info 1 > cmd Sample Command: root@(none)# echo bd info 1 > cmd hns3 :7d:00.0: TX Queue Num: 0, BD Index: 0 hns3 :7d:00.0: (TX) addr: 0x0 hns3 :7d:00.0: (TX)vlan_ta

  1   2   3   >