RE:PERSONAL LETTER FROM MRS RASHIA AMIRA

2019-10-19 Thread Mr Barrister Hans Erich
Greetings My name is Barrister Hans Erich. I have a client who is interested to invest in your country, she is a well known politician in her country and deserve a lucrative investment partnership with you outside her country without any delay Please can you manage such investment please

Re: ARM: add __always_inline to functions called from __get_user_check()

2019-10-19 Thread H. Nikolaus Schaller
> Am 19.10.2019 um 03:59 schrieb Masahiro Yamada > : > > On Fri, Oct 18, 2019 at 7:06 PM H. Nikolaus Schaller > wrote: >> >> Hi, >> I wonder what happened to your patch. We were "hit" by it in v5.4-rc1 and >> after finding, it made our OMAP based device bootable again (using our >> own

broonie-spi/for-next boot bisection: v5.4-rc3-73-gc673f2d99c3d on jetson-tk1

2019-10-19 Thread kernelci.org bot
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This automated bisection report was sent to you on the basis * * that you may be involved with the breaking commit it has * * found. No manual investigation has been done to verify it, * * and the root cause of the

[PATCH] PCI: Warn about host bridge device when its numa node is NO_NODE

2019-10-19 Thread Yunsheng Lin
As the disscusion in [1]: A PCI device really _MUST_ have a node assigned. It is possible to have a PCI bridge shared between two nodes, such that the PCI devices have equidistance. But the moment you scale this out, you either get devices that are 'local' to a package while having multiple

[PATCH 1/2] lib/bsearch.c: introduce bsearch_idx

2019-10-19 Thread Thomas Meyer
many existing bsearch implementations don't want to have the pointer to the found element, but the index position, or if the searched element doesn't exist, the index position the search element would be placed in the array. Signed-off-by: Thomas Meyer --- include/linux/bsearch.h | 7 +

[PATCH 2/2] xfs: replace homemade binary search

2019-10-19 Thread Thomas Meyer
use newly introduced bsearch_idx instead. Signed-off-by: Thomas Meyer --- fs/xfs/libxfs/xfs_dir2_block.c | 30 ++ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/fs/xfs/libxfs/xfs_dir2_block.c b/fs/xfs/libxfs/xfs_dir2_block.c index

[tip: perf/core] perf/core: Fix !CONFIG_PERF_EVENTS build warnings and failures

2019-10-19 Thread tip-bot2 for Ingo Molnar
The following commit has been merged into the perf/core branch of tip: Commit-ID: ae79d5588a04aec9dc4b0c6df700d131447306e0 Gitweb: https://git.kernel.org/tip/ae79d5588a04aec9dc4b0c6df700d131447306e0 Author:Ingo Molnar AuthorDate:Sat, 19 Oct 2019 09:15:27 +02:00 Committer:

Re: [PATCH 2/2] mfd: mfd-core: Honour Device Tree's request to disable a child-device

2019-10-19 Thread Lee Jones
Good morning Robin, It's been a while. I hope that you are well. Thanks for taking an interest. On Fri, 18 Oct 2019, Robin Murphy wrote: > On 18/10/2019 13:26, Lee Jones wrote: > > Until now, MFD has assumed all child devices passed to it (via > > mfd_cells) are to be registered. It does not

Re: [PATCH 1/2] mfd: mfd-core: Allocate reference counting memory directly to the platform device

2019-10-19 Thread Lee Jones
On Fri, 18 Oct 2019, Daniel Thompson wrote: > On Fri, Oct 18, 2019 at 01:26:46PM +0100, Lee Jones wrote: > > MFD provides reference counting (for the 2 consumers who actually use it!) > > via mfd_cell's 'usage_count' member. However, since MFD cells become > > read-only (const), MFD needs to

Re: [tip: x86/asm] x86/asm/ftrace: Mark function_hook as function

2019-10-19 Thread Borislav Petkov
On Fri, Oct 18, 2019 at 04:31:25PM -0400, Steven Rostedt wrote: > Still looks ugly ;-) See below. I think it's not so bad. It is only built-tested on 64-bit and objtool complains about something again: arch/x86/kernel/ftrace_64.o: warning: objtool: .entry.text+0x0: unreachable instruction but

Re: [PATCH] random: make try_to_generate_entropy() more robust

2019-10-19 Thread Ingo Molnar
* Linus Torvalds wrote: > On Fri, Oct 18, 2019 at 4:42 PM Jörn Engel wrote: > > > > We can generate entropy on almost any CPU, even if it doesn't provide a > > high-resolution timer for random_get_entropy(). As long as the CPU is > > not idle, it changed the register file every few cycles.

[bug?] LTP pt_test failing after 38bb8d77d0b9 "perf/x86/intel/pt: Split ToPA metadata and page layout"

2019-10-19 Thread Jan Stancek
Hi, All variants of pt_test: https://github.com/linux-test-project/ltp/blob/master/testcases/kernel/tracing/pt_test/pt_test.c started failing after: 38bb8d77d0b9 ("perf/x86/intel/pt: Split ToPA metadata and page layout") with following error on console/dmesg: pt: ToPA ERROR encountered,

Re: [PATCH -next] Bluetooth: btusb: Remove return statement in btintel_reset_to_bootloader

2019-10-19 Thread Marcel Holtmann
Hi Nathan, > When building with Clang and CONFIG_BT_INTEL unset, the following error > occurs: > > In file included from drivers/bluetooth/hci_ldisc.c:34: > drivers/bluetooth/btintel.h:188:2: error: void function > 'btintel_reset_to_bootloader' should not return a value [-Wreturn-type] >

[PATCH net-next 2/8] net: hns3: optimized MAC address in management table.

2019-10-19 Thread Huazhong Tan
From: Guojia Liao mac_addr_hi32 and mac_addr_lo16 are used to store the MAC address for management table. But using array of mac_addr[ETH_ALEN] would be more general and not need to care about the big-endian mode of the CPU. Signed-off-by: Guojia Liao Signed-off-by: Huazhong Tan ---

[PATCH net-next 7/8] net: hns3: do not allocate linear data for fraglist skb

2019-10-19 Thread Huazhong Tan
From: Yunsheng Lin Currently, napi_alloc_skb() is used to allocate skb for fraglist when the head skb is not enough to hold the remaining data, and the remaining data is added to the frags part of the fraglist skb, leaving the linear part unused. So this patch passes length of 0 to allocate

[PATCH net-next 1/8] net: hns3: remove struct hns3_nic_ring_data in hns3_enet module

2019-10-19 Thread Huazhong Tan
From: Yunsheng Lin Only the queue_index field in struct hns3_nic_ring_data is used, other field is unused and unnecessary for hns3 driver, so this patch removes it and move the queue_index field to hns3_enet_ring. This patch also removes an unused struct hns_queue declaration. Signed-off-by:

[PATCH net-next 5/8] net: hns3: make struct hns3_enet_ring cacheline aligned

2019-10-19 Thread Huazhong Tan
From: Yunsheng Lin Since struct hns3_enet_ring is a frequently used in critical data path, so make it cacheline aligned as struct hns3_enet_tqp_vector. Signed-off-by: Yunsheng Lin Signed-off-by: Huazhong Tan --- drivers/net/ethernet/hisilicon/hns3/hns3_enet.h | 2 +- 1 file changed, 1

[PATCH net-next 3/8] net: hns3: minor optimization for barrier in IO path

2019-10-19 Thread Huazhong Tan
From: Yunsheng Lin Currently, the TX and RX ring in a queue is bounded to the same IRQ, there may be unnecessary barrier op when only one of the ring need to be processed. This patch adjusts the location of rmb() in hns3_clean_tx_ring() and adds a checking in hns3_clean_rx_ring() to avoid

[PATCH net-next 6/8] net: hns3: minor cleanup for hns3_handle_rx_bd()

2019-10-19 Thread Huazhong Tan
From: Yunsheng Lin Since commit e55970950556 ("net: hns3: Add handling of GRO Pkts not fully RX'ed in NAPI poll"), ring->skb is used to record the current SKB when processing the RX BD in hns3_handle_rx_bd(), so the parameter out_skb is unnecessary. This patch also adjusts the err checking to

[PATCH net-next 4/8] net: hns3: introduce ring_to_netdev() in enet module

2019-10-19 Thread Huazhong Tan
From: Yunsheng Lin There are a few places that need to access the netdev of a ring through ring->tqp->handle->kinfo.netdev, and ring->tqp is a struct which both in enet and hclge modules, it is better to use the struct that is only used in enet module. This patch adds the ring_to_netdev() to

[PATCH net-next 0/8] net: hns3: add some cleanups & optimizations

2019-10-19 Thread Huazhong Tan
This patchset includes some cleanups and optimizations for the HNS3 ethernet driver. [patch 1/8] removes unused and unnecessary structures. [patch 2/8] uses a ETH_ALEN u8 array to replace two mac_addr_* field in struct hclge_mac_mgr_tbl_entry_cmd. [patch 3/8] optimizes the barrier used in the

[PATCH net-next 8/8] net: hns3: log and clear hardware error after reset complete

2019-10-19 Thread Huazhong Tan
From: Jian Shen When device is resetting, the CMDQ service may be stopped until reset completed. If a new RAS error occurs at this moment, it will no be able to clear the RAS source. This patch fixes it by clear the RAS source after reset complete. Signed-off-by: Jian Shen Signed-off-by:

Re: [PATCH 1/2] x86, mce, therm_throt: Optimize logging of thermal throttle messages

2019-10-19 Thread Borislav Petkov
On Fri, Oct 18, 2019 at 01:38:32PM -0700, Luck, Tony wrote: > Sorry to have caused confusion. Ditto. But us causing confusion is fine - this way we can talk about what we really wanna do! :-))) > The thoughts behind that statement are that we currently have an issue > with too many noisy high

Re: [PATCH 2/2] xfs: replace homemade binary search

2019-10-19 Thread Christoph Hellwig
On Sat, Oct 19, 2019 at 09:20:33AM +0200, Thomas Meyer wrote: > use newly introduced bsearch_idx instead. > > Signed-off-by: Thomas Meyer What is the point? This adds more code, and makes it slower by adding an indirect function call.

RE:PERSONAL LETTER FROM MRS RASHIA AMIRA

2019-10-19 Thread Mr Barrister Hans Erich
Greetings My name is Barrister Hans Erich. I have a client who is interested to invest in your country, she is a well known politician in her country and deserve a lucrative investment partnership with you outside her country without any delay Please can you manage such investment please

Re: [PATCH linux-kselftest/test v4] lib/list-test: add a test for the 'list' doubly linked list

2019-10-19 Thread Dan Carpenter
On Fri, Oct 18, 2019 at 02:55:49PM -0700, David Gow wrote: > Add a KUnit test for the kernel doubly linked list implementation in > include/linux/list.h > > Each test case (list_test_x) is focused on testing the behaviour of the > list function/macro 'x'. None of the tests pass invalid lists to

Re: [PATCH] PCI: Warn about host bridge device when its numa node is NO_NODE

2019-10-19 Thread Christoph Hellwig
On Sat, Oct 19, 2019 at 02:45:43PM +0800, Yunsheng Lin wrote: > + if (nr_node_ids > 1 && dev_to_node(bus->bridge) == NUMA_NO_NODE) > + dev_err(bus->bridge, FW_BUG "No node assigned on NUMA capable > HW by BIOS. Please contact your vendor for updates.\n"); > + The whole idea of

Re: [PATCH 1/2] platform/x86: huawei-wmi: Stricter battery thresholds set

2019-10-19 Thread Dan Carpenter
On Fri, Oct 18, 2019 at 06:42:13PM -0400, Ayman Bagabas wrote: > Check if battery thresholds are within 0 and 100. > --- Thanks! Don't forget to add your Signed-off-by: though. regards, dan carpenter

[PATCH] irq/irqdomain: __irq_domain_alloc_fwnode comment

2019-10-19 Thread Yi Wang
Commit b977fcf477c1 ("irqdomain/debugfs: Use PAs to generate fwnode names") changed the parameter of __irq_domain_alloc_fwnode(), but didn't change the comment meanwhile. This patch can fix this. Signed-off-by: Yi Wang --- kernel/irq/irqdomain.c | 2 +- 1 file changed, 1 insertion(+), 1

Re: [PATCH 39/46] power: tosa: simplify probe function

2019-10-19 Thread Sebastian Reichel
Hi Arnd, On Fri, Oct 18, 2019 at 05:41:54PM +0200, Arnd Bergmann wrote: > We have three power supplies that need similar initialization. > As a preparation for the gpio lookup table conversion, split > out the initialization into a separate function. > > Cc: Sebastian Reichel > Cc:

Re: [PATCH 40/46] ARM: pxa: tosa: use gpio lookup for battery

2019-10-19 Thread Sebastian Reichel
Hi, On Fri, Oct 18, 2019 at 05:41:55PM +0200, Arnd Bergmann wrote: > The battery driver uses a lot of GPIO lines, hardcoded from a > machine header file. > > Change it to use a gpiod lookup table instead. > > Cc: Sebastian Reichel > Cc: linux...@vger.kernel.org > Signed-off-by: Arnd Bergmann

Re: [PATCH 6/6 v2] MMC: JZ4740: Add support for LPM.

2019-10-19 Thread Zhou Yanjie
Hi Uffe, On 2019年10月18日 16:52, Ulf Hansson wrote: On Sat, 12 Oct 2019 at 07:19, Zhou Yanjie wrote: add support for low power mode of Ingenic's MMC/SD Controller. Signed-off-by: Zhou Yanjie I couldn't find a proper coverletter for the series, please provide that next time as it really helps

Re: [PATCH] mtd: rawnand: brcmnand: Fix sparse warning in has_flash_dma()

2019-10-19 Thread Miquel Raynal
Hi Florian, Florian Fainelli wrote on Fri, 18 Oct 2019 16:38:44 -0700: > Sparse rightfully complained about has_flash_dma(): > +drivers/mtd/nand/brcmnand/brcmnand.c:951:40: warning: Using plain integer as > NULL pointer [sparse] I don't get why would sparse complain about this... Anyway I

Re: [PATCH 11/46] ARM: pxa: cmx270: use platform device for nand

2019-10-19 Thread Miquel Raynal
Hi Arnd, Arnd Bergmann wrote on Fri, 18 Oct 2019 17:41:26 +0200: > The driver traditionally hardcodes the MMIO register address and > the GPIO numbers from data defined in platform header files. > > To make it indepdendent of that, use a memory resource for the > registers, and a gpio lookup

Re: [PATCH] lib/vdso: Use __arch_use_vsyscall() to indicate fallback

2019-10-19 Thread Thomas Gleixner
On Sat, 19 Oct 2019, Huacai Chen wrote: > On Fri, Oct 18, 2019 at 11:15 AM Andy Lutomirski wrote: > > > > On Thu, Oct 17, 2019 at 7:57 PM Huacai Chen wrote: > > > > > > In do_hres(), we currently use whether the return value of __arch_get_ > > > hw_counter() is negtive to indicate fallback, but

Re: [PATCH 00/46] ARM: pxa: towards multiplatform support

2019-10-19 Thread Arnd Bergmann
On Sat, Oct 19, 2019 at 3:03 AM Guenter Roeck wrote: > > On 10/18/19 8:40 AM, Arnd Bergmann wrote: > > > > Hi PXA maintainers, > > > > I'm in the process of getting the old ARM platforms to all build > > in a single kernel. The largest part of that work is changing all > > the device drivers to

clk: X1000: Add support for the X1000.

2019-10-19 Thread Zhou Yanjie
1.Add the clock bindings for X1000 from Ingenic. 2.Add support for the clocks provided by the CGU in the Ingenic X1000 SoC.

Re: (was Fair Trade O.S.) Varanger O-S

2019-10-19 Thread Ywe Cærlyn
Lessened the licence strictness and updated this with a mixed licence point of view, as long as it respects the optimized commerciality of it. Politicans here want it aswell, and that is what I wanted since the 90s, and probably many here. (the whole spotify debate etc.) The Com directory

[PATCH 1/2] dt-bindings: clock: Add X1000 bindings.

2019-10-19 Thread Zhou Yanjie
Add the clock bindings for the X1000 Soc from Ingenic. Signed-off-by: Zhou Yanjie --- .../devicetree/bindings/clock/ingenic,cgu.txt | 1 + include/dt-bindings/clock/x1000-cgu.h | 41 ++ 2 files changed, 42 insertions(+) create mode 100644

Re: [PATCH 00/46] ARM: pxa: towards multiplatform support

2019-10-19 Thread Arnd Bergmann
On Sat, Oct 19, 2019 at 3:03 AM Guenter Roeck wrote: > On 10/18/19 8:40 AM, Arnd Bergmann wrote: > > I don't get very far. > > $ make-arm pxa_defconfig > arch/arm/Kconfig:677: can't open file "arch/arm/plat-pxa/Kconfig" > scripts/kconfig/Makefile:90: recipe for target 'pxa_defconfig' failed > >

[PATCH 2/2] clk: Ingenic: Add CGU driver for X1000.

2019-10-19 Thread Zhou Yanjie
Add support for the clocks provided by the CGU in the Ingenic X1000 SoC, making use of the cgu code to do the heavy lifting. Signed-off-by: Zhou Yanjie --- drivers/clk/ingenic/Kconfig | 10 ++ drivers/clk/ingenic/Makefile| 1 + drivers/clk/ingenic/x1000-cgu.c | 253

Re: [PATCH] random: make try_to_generate_entropy() more robust

2019-10-19 Thread Thomas Gleixner
On Sat, 19 Oct 2019, Ingo Molnar wrote: > * Linus Torvalds wrote: > > On Fri, Oct 18, 2019 at 4:42 PM Jörn Engel wrote: > > But from a softirq or threaded irq context that 'interrupted' regs > context might potentially be NULL. > > NULL isn't a good thing to pass to mix_pool_bytes(), because

Re: [PATCH] power: supply: rt5033_battery: Fix the usage of potential uninitialized variable

2019-10-19 Thread Sebastian Reichel
Hi, On Tue, Oct 15, 2019 at 09:57:37AM -0700, Yizhuo wrote: > In function rt5033_battery_get_present(), variable "val" could be > uninitialized if regmap_read() returns -EINVAL. However, "val" is > used to decide the return value, which is potentially unsafe. > > Signed-off-by: Yizhuo > ---

Re: [PATCH v2] ftgmac100: Disable HW checksum generation on AST2500

2019-10-19 Thread Benjamin Herrenschmidt
On Sat, 2019-10-19 at 01:31 +, Vijay Khemka wrote: > Thanks Ben, > I will try to add some trace and test whatever possible and test it. > As we > don't have tcpdump into our image and I have limited understanding of > networking stack so if you get some time to verify ipv6, it will be > really

Re: [PATCH 00/46] ARM: pxa: towards multiplatform support

2019-10-19 Thread Robert Jarzmik
Arnd Bergmann writes: > On Fri, Oct 18, 2019 at 9:17 PM Arnd Bergmann wrote: >> On Fri, Oct 18, 2019 at 9:04 PM Robert Jarzmik >> wrote: >> > Arnd Bergmann writes: >> > >> > > Hi PXA maintainers, >> > > >> > > I'm in the process of getting the old ARM platforms to all build >> > > in a

Re: [PATCH] random: make try_to_generate_entropy() more robust

2019-10-19 Thread Thomas Gleixner
On Fri, 18 Oct 2019, Linus Torvalds wrote: > On Fri, Oct 18, 2019 at 4:42 PM Jörn Engel wrote: > > > > We can generate entropy on almost any CPU, even if it doesn't provide a > > high-resolution timer for random_get_entropy(). As long as the CPU is > > not idle, it changed the register file

Re: [PATCH v2] rtlwifi: Fix potential overflow on P2P code

2019-10-19 Thread Kalle Valo
Laura Abbott writes: > Nicolas Waisman noticed that even though noa_len is checked for > a compatible length it's still possible to overrun the buffers > of p2pinfo since there's no check on the upper bound of noa_num. > Bound noa_num against P2P_MAX_NOA_NUM. > > Reported-by: Nicolas Waisman >

Re: [PATCH v2] rtlwifi: Fix potential overflow on P2P code

2019-10-19 Thread Kalle Valo
Pkshih writes: > On Fri, 2019-10-18 at 07:43 -0400, Laura Abbott wrote: >> Nicolas Waisman noticed that even though noa_len is checked for >> a compatible length it's still possible to overrun the buffers >> of p2pinfo since there's no check on the upper bound of noa_num. >> Bound noa_num

Re: [PATCH v8 0/5] arm64: ftrace with regs

2019-10-19 Thread Torsten Duwe
Hi Mark! On Fri, 18 Oct 2019 18:41:02 +0100 Mark Rutland wrote: > In the process of reworking this I spotted some issues that will get > in the way of livepatching. Notably: > > * When modules can be loaded far away from the kernel, we'll > potentially need a PLT for each function within a

Re: [PATCH 0/9] OpenPandora: make wl1251 connected to mmc3 sdio port of OpenPandora work again

2019-10-19 Thread Kalle Valo
"H. Nikolaus Schaller" writes: > Here we have a set of scattered patches to make the OpenPandora WiFi work > again. > > v4.7 did break the pdata-quirks which made the mmc3 interface > fail completely, because some code now assumes device tree > based instantiation. > > Fixes: 81eef6ca9201

RE:PERSONAL LETTER FROM MRS RASHIA AMIRA

2019-10-19 Thread Mr Barrister Hans Erich
Greetings My name is Barrister Hans Erich. I have a client who is interested to invest in your country, she is a well known politician in her country and deserve a lucrative investment partnership with you outside her country without any delay Please can you manage such investment please

TRADING ACCOUNT

2019-10-19 Thread HUREL Vincent
Dear sir , I am M HUREL Vincent , purchasing and sales manager of ABB FRANCE . Our Company specialised in Supplying computer hardware and Electronic . We want to extend our supplier list because of concurrency in prices on the international market . We are seeking a supplier with whom we can

Re: [PATCH v6 05/10] KVM: arm64: Support stolen time reporting via shared structure

2019-10-19 Thread Marc Zyngier
On Fri, 11 Oct 2019 13:59:25 +0100, Steven Price wrote: > > Implement the service call for configuring a shared structure between a > VCPU and the hypervisor in which the hypervisor can write the time > stolen from the VCPU's execution time by other tasks on the host. > > User space allocates

RE:PERSONAL LETTER FROM MRS RASHIA AMIRA

2019-10-19 Thread Mr Barrister Hans Erich
Greetings My name is Barrister Hans Erich. I have a client who is interested to invest in your country, she is a well known politician in her country and deserve a lucrative investment partnership with you outside her country without any delay Please can you manage such investment please

[5.3.*] nvme issue

2019-10-19 Thread Udo van den Heuvel
Linux-guru's, When I boot this workstation, the nvme disks appear in /dev/ without their partitions. fdisk shows there are partitions but cannot write a new partitions table, mentions a busy disk. These processes are busy with the nvme disks: root 236 2 0 13:08 ?00:00:00

Re: [PATCH 0/9] OpenPandora: make wl1251 connected to mmc3 sdio port of OpenPandora work again

2019-10-19 Thread H. Nikolaus Schaller
Hi, > Am 19.10.2019 um 13:06 schrieb Kalle Valo : > > "H. Nikolaus Schaller" writes: > >> Here we have a set of scattered patches to make the OpenPandora WiFi work >> again. >> >> v4.7 did break the pdata-quirks which made the mmc3 interface >> fail completely, because some code now assumes

Re: [PATCH 0/9] OpenPandora: make wl1251 connected to mmc3 sdio port of OpenPandora work again

2019-10-19 Thread Kalle Valo
"H. Nikolaus Schaller" writes: > Hi, > >> Am 19.10.2019 um 13:06 schrieb Kalle Valo : >> >> "H. Nikolaus Schaller" writes: >> >>> Here we have a set of scattered patches to make the OpenPandora WiFi work >>> again. >>> >>> v4.7 did break the pdata-quirks which made the mmc3 interface >>>

Your Immediate Attention Is Required.

2019-10-19 Thread John Dike
Zenith Bank of Nigeria Plc Headquarters Plot 84, Ajose Adeogun Street Victoria Island Lagos, Nigeria ISIN CODE : NGZENBNK9 Dear Sir, I am Mr.Uche Akpu, The Director foreign Operations Zenith Bank of Nigeria Plc. We have worked out your outstanding payment of $2.5M approved by the Central Bank of

[PATCHv2 1/3] soc: qcom: llcc: Add configuration data for SC7180

2019-10-19 Thread Sai Prakash Ranjan
From: Vivek Gautam Add LLCC configuration data for SC7180 SoC which controls LLCC behaviour. Signed-off-by: Vivek Gautam Signed-off-by: Sai Prakash Ranjan --- drivers/soc/qcom/llcc-qcom.c | 15 ++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git

[PATCHv2 0/3] Add LLCC support for SC7180 SoC

2019-10-19 Thread Sai Prakash Ranjan
LLCC behaviour is controlled by the configuration data set in the llcc-qcom driver, add the same for SC7180 SoC. Also convert the existing bindings to json-schema and add the compatible for SC7180 SoC. v2: * Convert bindings to YAML and add compatible for SC7180 * Address Stephen's comments on

[PATCHv2 2/3] dt-bindings: msm: Convert LLCC bindings to YAML

2019-10-19 Thread Sai Prakash Ranjan
Convert LLCC bindings to DT schema format using json-schema. Signed-off-by: Sai Prakash Ranjan --- .../devicetree/bindings/arm/msm/qcom,llcc.txt | 41 -- .../bindings/arm/msm/qcom,llcc.yaml | 54 +++ 2 files changed, 54 insertions(+), 41 deletions(-)

[PATCHv2 3/3] dt-bindings: msm: Add LLCC for SC7180

2019-10-19 Thread Sai Prakash Ranjan
Add LLCC compatible for SC7180 SoC. Signed-off-by: Sai Prakash Ranjan --- Documentation/devicetree/bindings/arm/msm/qcom,llcc.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/arm/msm/qcom,llcc.yaml

[BUG -tip] kmemleak and stacktrace cause page faul

2019-10-19 Thread Cyrill Gorcunov
Hi! I'm not sure if I've CC'ed proper persons, so please sorry if I did. Anyway, today's -tip (07b4dbf1d830) refused to boot [0.024793] No NUMA configuration found [0.025406] Faking a node at [mem 0x-0x7ffdefff] [0.026462] NODE_DATA(0) allocated [mem

Re: [5.3.*] nvme issue

2019-10-19 Thread Udo van den Heuvel
On 19-10-2019 13:22, Udo van den Heuvel wrote: > When I boot this workstation, the nvme disks appear in /dev/ without > their partitions. # ls -l /dev/nv* crw--- 1 root root 251, 0 Oct 19 13:43 /dev/nvme0 brw-rw 1 root disk 259, 1 Oct 19 13:43 /dev/nvme0n1 crw--- 1 root root 251,

Kernel 5.3 / 5.4

2019-10-19 Thread ovidio
Hi list, since the kernels 5.3 and 5.4 the system has become choppy when HD usage is high.  Any ideas? Thank you! [0.00] Linux version 5.4.0-050400rc3-generic (kernel@gloin) (gcc version 9.2.1 20191008 (Ubuntu 9.2.1-9ubuntu2)) #201910132031 SMP Mon Oct 14 00:33:41 UTC 2019 [

Re: [PATCH linux-kselftest/test v1] apparmor: add AppArmor KUnit tests for policy unpack

2019-10-19 Thread Alan Maguire
On Fri, 18 Oct 2019, Luis Chamberlain wrote: > On Thu, Oct 17, 2019 at 05:18:16PM -0700, Brendan Higgins wrote: > > From: Mike Salvatore > > > > In order to write the tests against the policy unpacking code, some > > static functions needed to be exposed for testing purposes. One of the > >

[PATCH] scripts: prune-kernel : prune kernels generalized way

2019-10-19 Thread Bhaskar Chowdhury
This patch will remove old kernel from the system in a selective way. Signed-off-by: Bhaskar Chowdhury --- scripts/prune-kernel | 86 1 file changed, 72 insertions(+), 14 deletions(-) diff --git a/scripts/prune-kernel b/scripts/prune-kernel index

Re: [PATCH 1/3] binder: Fix race between mmap() and binder_alloc_print_pages()

2019-10-19 Thread Christian Brauner
On Fri Oct 18, 2019 at 10:56 PM Jann Horn wrote: > binder_alloc_print_pages() iterates over > alloc->pages[0..alloc->buffer_size-1] under alloc->mutex. > binder_alloc_mmap_handler() writes alloc->pages and alloc->buffer_size > without holding that lock, and even writes them before the last bailout

Re: [PATCH 3/3] binder: Handle start==NULL in binder_update_page_range()

2019-10-19 Thread Christian Brauner
On Fri Oct 18, 2019 at 10:56 PM Jann Horn wrote: > The old loop wouldn't stop when reaching `start` if `start==NULL`, instead > continuing backwards to index -1 and crashing. > > Luckily you need to be highly privileged to map things at NULL, so it's not > a big problem. > > Fix it by adjusting

Re: [PATCH] MAINTAINERS: mtd/ubi/ubifs: Remove inactive maintainers

2019-10-19 Thread Artem Bityutskiy
On Thu, 2019-10-17 at 16:22 +0200, Miquel Raynal wrote: > Despite their substantial personal investment in the MTD/UBI/UBIFS a > few years back, David, Brian, Artem and Adrian are not actively > maintaining the subsystem anymore. We warmly salute them for all the > work they have achieved and will

Re: [PATCH 09/46] watchdog: sa1100: use platform device registration

2019-10-19 Thread Guenter Roeck
On 10/18/19 8:41 AM, Arnd Bergmann wrote: Rather than relying on machine specific headers to pass down the reboot status and the register locations, use resources and platform_data. Aside from this, keep the changes to a minimum. Cc: Wim Van Sebroeck Cc: Guenter Roeck Cc:

Re: [PATCH 2/3] binder: Prevent repeated use of ->mmap() via NULL mapping

2019-10-19 Thread Christian Brauner
On Fri Oct 18, 2019 at 10:56 PM Jann Horn wrote: > binder_alloc_mmap_handler() attempts to detect the use of ->mmap() on a > binder_proc whose binder_alloc has already been initialized by checking > whether alloc->buffer is non-zero. > > Before commit 880211667b20 ("binder: remove kernel vm_area

[PATCH v1 4/5] staging: wfx: correct misspelled words

2019-10-19 Thread Jules Irenge
Correct misspelled words: retrieved and auxiliary. Issue detected by checkpatch tool. Signed-off-by: Jules Irenge --- drivers/staging/wfx/data_tx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/wfx/data_tx.c b/drivers/staging/wfx/data_tx.c index

Re: coccinelle: api/devm_platform_ioremap_resource: remove useless script

2019-10-19 Thread Markus Elfring
> What are the additional effects? I suggest to take another look at the commit 7945f929f1a77a1c8887a97ca07f87626858ff42 ("drivers: provide devm_platform_ioremap_resource()" from 2019-02-20) which triggered the discussed software evolution.

[PATCH v1 1/5] staging: wfx: fix warnings of no space is necessary

2019-10-19 Thread Jules Irenge
Fix warnings of no space is necessary after a cast. Issue detected by checkpatch tool. Signed-off-by: Jules Irenge --- drivers/staging/wfx/bh.c | 8 drivers/staging/wfx/bus_sdio.c | 6 +++--- drivers/staging/wfx/bus_spi.c | 2 +- drivers/staging/wfx/data_rx.c | 8

[PATCH v1 2/5] staging: wfx: fix warning of line over 80 characters

2019-10-19 Thread Jules Irenge
Fix warning of lines over 80 characters. Issue detected by checkpatch tool. Signed-off-by: Jules Irenge --- drivers/staging/wfx/bh.c | 17 -- drivers/staging/wfx/bus.h | 6 +- drivers/staging/wfx/bus_sdio.c | 3 +- drivers/staging/wfx/bus_spi.c | 9 ++-

[PATCH v1 5/5] staging: wfx: fix warnings of alignment should match open parenthesis

2019-10-19 Thread Jules Irenge
: Fix warnings of alignment should match open parenthesis. Issue detected by checkpatch tool. Signed-off-by: Jules Irenge --- drivers/staging/wfx/data_rx.c | 2 +- drivers/staging/wfx/data_tx.c | 2 +- drivers/staging/wfx/debug.c | 14 -- 3 files changed, 10 insertions(+), 8

[PATCH v1 0/5] staging: wfx: fix checkpatch warnings

2019-10-19 Thread Jules Irenge
Fix checkpatch warnings. Jules Irenge (5): staging: wfx: fix warnings of no space is necessary staging: wfx: fix warning of line over 80 characters staging: wfx: fix warnings of logical continuation staging: wfx: correct misspelled words staging: wfx: fix warnings of alignment should

[PATCH v1 3/5] staging: wfx: fix warnings of logical continuation

2019-10-19 Thread Jules Irenge
Fix check warnings of logical continuations should be on the previous line. Issue detected by checkpatch tool. Signed-off-by: Jules Irenge --- drivers/staging/wfx/data_rx.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/staging/wfx/data_rx.c

[PATCH] MAINTAINERS: Add mailing list for Realtek SoCs

2019-10-19 Thread Andreas Färber
Document linux-realtek-soc mailing list to be CC'ed on patches. Signed-off-by: Andreas Färber --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index c7b48525822a..8be71b3d25e7 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -2168,6 +2168,7 @@ F:

[PATCH v3] clk/ti/adpll: allocate room for terminating null

2019-10-19 Thread Stephen Kitt
The buffer allocated in ti_adpll_clk_get_name doesn't account for the terminating null. This patch switches to devm_kasprintf to avoid overflowing. Signed-off-by: Stephen Kitt --- Changes since v2: - Move "adpll" into the format string and drop base_name entirely. Changes since v1: - Use

Re: [PATCH 44/46] ARM: mmp: remove tavorevb board support

2019-10-19 Thread Lubomir Rintel
On Fri, 2019-10-18 at 17:41 +0200, Arnd Bergmann wrote: > There are two tavorevb boards in the kernel, one using a PXA930 chip in > mach-pxa, and one using the later PXA910 chip in mach-mmp. They use the > same board number, which is generally a bad idea, and in a multiplatform > kernel, we can

Re: [PATCH v1 1/5] staging: wfx: fix warnings of no space is necessary

2019-10-19 Thread Dan Carpenter
On Sat, Oct 19, 2019 at 03:07:15PM +0100, Jules Irenge wrote: > diff --git a/drivers/staging/wfx/bh.c b/drivers/staging/wfx/bh.c > index 3355183fc86c..573216b08042 100644 > --- a/drivers/staging/wfx/bh.c > +++ b/drivers/staging/wfx/bh.c > @@ -69,13 +69,13 @@ static int rx_helper(struct wfx_dev

Re: [PATCH v2] clk/ti/adpll: allocate room for terminating null

2019-10-19 Thread Stephen Kitt
On Thu, 17 Oct 2019 08:48:53 -0700, Stephen Boyd wrote: > Quoting Stephen Kitt (2019-09-27 11:05:59) > > The buffer allocated in ti_adpll_clk_get_name doesn't account for the > > terminating null. This patch switches to ka_sprintf to avoid > > overflowing. > > > > Signed-off-by: Stephen Kitt >

Re: [PATCH] random: make try_to_generate_entropy() more robust

2019-10-19 Thread Jörn Engel
On Sat, Oct 19, 2019 at 12:49:52PM +0200, Thomas Gleixner wrote: > > One slightly related thing I was looking into is that the mixing of > interrupt entropy is always done from hard interrupt context. That has a > few issues: > > 1) It's pretty visible in profiles for high frequency

Re: [PATCH] MAINTAINERS: Add mailing list for Realtek SoCs

2019-10-19 Thread Andreas Färber
Am 19.10.19 um 16:13 schrieb Andreas Färber: > Document linux-realtek-soc mailing list to be CC'ed on patches. > > Signed-off-by: Andreas Färber > --- > MAINTAINERS | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/MAINTAINERS b/MAINTAINERS > index c7b48525822a..8be71b3d25e7 100644 >

Re: [PATCH v2 2/2] dt-bindings: iio: adc: Add DT docs for AD7292

2019-10-19 Thread Marcelo Schmitt
Hi Rob Thanks for the review. I'm having some trouble with the DTC. I installed the DT tool from https://github.com/robherring/dt-schema. Running make -k dt_binding_check goes through all the checks (CHKDT), producing the .example.dts files but then gives errors like: DTC

Re: [PATCH v1 1/5] staging: wfx: fix warnings of no space is necessary

2019-10-19 Thread Jules Irenge
On Sat, 19 Oct 2019, Dan Carpenter wrote: > On Sat, Oct 19, 2019 at 03:07:15PM +0100, Jules Irenge wrote: > > diff --git a/drivers/staging/wfx/bh.c b/drivers/staging/wfx/bh.c > > index 3355183fc86c..573216b08042 100644 > > --- a/drivers/staging/wfx/bh.c > > +++ b/drivers/staging/wfx/bh.c > >

RE:PERSONAL LETTER FROM MRS RASHIA AMIRA

2019-10-19 Thread Mr Barrister Hans Erich
Greetings My name is Barrister Hans Erich. I have a client who is interested to invest in your country, she is a well known politician in her country and deserve a lucrative investment partnership with you outside her country without any delay Please can you manage such investment please

Re: [Outreachy kernel] Re: [PATCH v1 1/5] staging: wfx: fix warnings of no space is necessary

2019-10-19 Thread Julia Lawall
On Sat, 19 Oct 2019, Jules Irenge wrote: > > > On Sat, 19 Oct 2019, Dan Carpenter wrote: > > > On Sat, Oct 19, 2019 at 03:07:15PM +0100, Jules Irenge wrote: > > > diff --git a/drivers/staging/wfx/bh.c b/drivers/staging/wfx/bh.c > > > index 3355183fc86c..573216b08042 100644 > > > ---

Re: [PATCH -next] CIFS: remove set but not used variables 'cinode' and 'netfid'

2019-10-19 Thread Steve French
tentatively pushed to cifs-2.6.git for-next pending more testing of the flock patch it modified. On Fri, Oct 18, 2019 at 1:07 AM YueHaibing wrote: > > Fixes gcc '-Wunused-but-set-variable' warning: > > fs/cifs/file.c: In function 'cifs_flock': > fs/cifs/file.c:1704:8: warning: > variable

Re: [PATCH v3 2/3] mm/vmalloc: respect passed gfp_mask when do preloading

2019-10-19 Thread Uladzislau Rezki
> > > > > > This is explaining what but it doesn't say why. I would go with > > > " > > > Allocation functions should comply with the given gfp_mask as much as > > > possible. The preallocation code in alloc_vmap_area doesn't follow that > > > pattern and it is using a hardcoded GFP_KERNEL.

Re: [PATCH] scripts: prune-kernel : prune kernels generalized way

2019-10-19 Thread J. Bruce Fields
On Sat, Oct 19, 2019 at 06:37:22PM +0530, Bhaskar Chowdhury wrote: > This patch will remove old kernel from the system in a selective way. Please don't comment out code, just delete it, git's there to keep the old code. There's some redundant code that should be inside a loop. A little more

Re: [PATCH v2 3/4] gpio: Add RDA Micro GPIO controller support

2019-10-19 Thread Manivannan Sadhasivam
Hi Linus, Thanks for the review! Please see comments inline. On Wed, Oct 16, 2019 at 02:41:32PM +0200, Linus Walleij wrote: > Hi Manivannan! > > Thanks for your patch! > > On Tue, Oct 15, 2019 at 7:30 PM Manivannan Sadhasivam > wrote: > > > Add support for GPIO controller from RDA Micro. > >

[PATCH] fs/dax: Fix pmd vs pte conflict detection

2019-10-19 Thread Dan Williams
Check for NULL entries before checking the entry order, otherwise NULL is misinterpreted as a present pte conflict. The 'order' check needs to happen before the locked check as an unlocked entry at the wrong order must fallback to lookup the correct order. Reported-by: Jeff Smits Reported-by:

Re: [PATCH 2/6] ARM: ep93xx: enable SPARSE_IRQ

2019-10-19 Thread Alexander Sverdlin
Hello Arnd, On Fri, 18 Oct 2019 18:29:15 +0200 Arnd Bergmann wrote: > Without CONFIG_SPARSE_IRQ, we rely on mach/irqs.h to define NR_IRQS > globally. Do the minimal conversion by setting .nr_irqs in each > machine descriptor. > > Only the vision_ep9307 machine has extra IRQs for GPIOs, so make

[PATCH] net: fix sk_page_frag() recursion from memory reclaim

2019-10-19 Thread Tejun Heo
>From f0335a5d14d3596d36e3ffddb2fd4fa0dc6ca9c2 Mon Sep 17 00:00:00 2001 From: Tejun Heo Date: Sat, 19 Oct 2019 09:10:57 -0700 sk_page_frag() optimizes skb_frag allocations by using per-task skb_frag cache when it knows it's the only user. The condition is determined by seeing whether the socket

RE:PERSONAL LETTER FROM MRS RASHIA AMIRA

2019-10-19 Thread Mr Barrister Hans Erich
Greetings My name is Barrister Hans Erich. I have a client who is interested to invest in your country, she is a well known politician in her country and deserve a lucrative investment partnership with you outside her country without any delay Please can you manage such investment please

Re: [PATCH 05/10] libperf: Add _GNU_SOURCE define to compilation

2019-10-19 Thread Jiri Olsa
On Fri, Oct 18, 2019 at 03:07:38PM -0300, Arnaldo Carvalho de Melo wrote: > > Why? it's passed when the library is compiled with perf, but not when you compile it standalone.. and 2 '-D_GNU_SOURCE' on command line are ok jirka > > > Em Thu, Oct 17, 2019 at 12:59:13PM +0200, Jiri Olsa

Re: [PATCH 07/10] libperf: Add tests_mmap_cpus test

2019-10-19 Thread Jiri Olsa
On Fri, Oct 18, 2019 at 03:16:31PM -0300, Arnaldo Carvalho de Melo wrote: > Em Fri, Oct 18, 2019 at 03:14:29PM -0300, Arnaldo Carvalho de Melo escreveu: > > Em Thu, Oct 17, 2019 at 12:59:15PM +0200, Jiri Olsa escreveu: > > > Adding mmaping tests that generates prctl call on > > > every cpu

  1   2   3   >