RE: [PATCH] mei: Replace HTTP links with HTTPS ones

2020-07-18 Thread Winkler, Tomas
> > Rationale: > Reduces attack surface on kernel devs opening the links for MITM as HTTPS > traffic is much harder to manipulate. > > Deterministic algorithm: > For each file: > If not .svg: > For each line: > If doesn't contain `\bxmlns\b`: > For each link, `\bhttp://[^#

Re: [PATCH v2] AF_PACKET doesnt strip VLAN information

2020-07-18 Thread kernel test robot
patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch] url: https://github.com/0day-ci/linux/commits/Sriram-Krishnan/AF_PACKET-doesnt-strip-VLAN-information/20200718-172707 base: https://github.com/hnaz/linux-mm master config: s390-randconfig-s031-20200719

[PATCH 2/2] f2fs: add volume_name mount option

2020-07-18 Thread Daeho Jeong
From: Daeho Jeong Added "volume_name" mount option. When the volume name in the on-disk superblock doesn't exist, we can input the volume name as a mount option and this is used to create a sysfs symbolic link pointing to /sys/fs/f2fs/. The format of the symbolic directory link is like

[PATCH 1/2] f2fs: add sysfs symbolic link to kobject with volume name

2020-07-18 Thread Daeho Jeong
From: Daeho Jeong Added a symbolic link directory pointing to its device name directory using the volume name of the partition in sysfs. (i.e., /sys/fs/f2fs/vol_#x -> /sys/fs/f2fs/sda1) "vol" is the volume name of the partition, "#x" is the number representing the order of mounting with the same

[PATCH] media: atomisp: move system_local consts into a C file

2020-07-18 Thread Mauro Carvalho Chehab
Instead of declaring all those consts everywhere when the headers are included, just place them on a single place. This change shuts up lots of warnings when built with W=1: In file included from drivers/staging/media/atomisp/pci/ia_css_acc_types.h:23, from

Re: [Intel-wired-lan] [PATCH] igc: Do not use link uninitialized in igc_check_for_copper_link

2020-07-18 Thread Neftin, Sasha
On 7/17/2020 05:12, Nathan Chancellor wrote: On Thu, Jul 16, 2020 at 07:29:03PM +0300, Neftin, Sasha wrote: On 7/16/2020 07:49, Nathan Chancellor wrote: Clang warns: Hello Nathan, Thanks for tracking our code.Please, look at

[PATCH rdma-next v2 0/2] Align write() and ioctl() paths

2020-07-18 Thread Leon Romanovsky
From: Leon Romanovsky Changelog: v2: * Fixed warning reported by kbuild where I wrote same assignment twice. v1: https://lore.kernel.org/lkml/20200716103956.1422139-1-l...@kernel.org * v0 revealed old bug * https://lore.kernel.org/linux-rdma/20200716102059.1420681-1-l...@kernel.org that

[PATCH 10/10] arm64: tegra: Audio graph sound card for Jetson Nano and TX1

2020-07-18 Thread Sameer Pujar
Enable support for audio-graph based sound card on Jetson-Nano and Jetson-TX1. Depending on the platform, required I/O interfaces are enabled. * Jetson-Nano: Enable I2S3, I2S4, DMIC1 and DMIC2. * Jetson-TX1: Enable all I2S and DMIC interfaces. Signed-off-by: Sameer Pujar ---

[PATCH 05/10] ASoC: audio-graph: Identify 'no_pcm' DAI links for DPCM

2020-07-18 Thread Sameer Pujar
PCM devices are created for FE dai links with 'no-pcm' flag as '0'. Such DAI links have CPU component which implement either pcm_construct() or pcm_new() at component or dai level respectively. Based on this, current patch exposes a helper function to identify such components and populate 'no_pcm'

[PATCH 06/10] ASoC: soc-pcm: Get all BEs along DAPM path

2020-07-18 Thread Sameer Pujar
dpcm_end_walk_at_be() stops the graph walk when first BE is found for the given FE component. In a component model we may want to connect multiple DAIs from different components. A new flag is introduced in 'snd_soc_card', which when set allows DAI/component chaining. Later PCM operations can be

[PATCH 07/10] ASoC: dt-bindings: audio-graph-card: Support for component chaining

2020-07-18 Thread Sameer Pujar
New compatible "audio-graph-cc-card" is exposed for audio-graph card driver which allows usage of DAI link chaining and thus connects multiple components together in a system. Signed-off-by: Sameer Pujar --- Documentation/devicetree/bindings/sound/audio-graph-card.txt | 1 + 1 file changed, 1

[PATCH 08/10] ASoC: audio-graph: Add support for component chaining

2020-07-18 Thread Sameer Pujar
The audio-graph driver supports both normal and DPCM DAI links. The sound cards requiring DPCM DAI link support, use DPCM_SELECTABLE flag and DAI links are treated as DPCM links depending on the number of child nodes in a given DAI link. There is another requirement where multiple ASoC components

[PATCH 09/10] arm64: tegra: Audio graph header for Tegra210

2020-07-18 Thread Sameer Pujar
Expose a header which describes DT bindings required to use audio-graph based sound card. All Tegra210 based platforms can include this header and add platform specific information. Currently, from SoC point of view, all links are exposed for ADMAIF, AHUB, I2S and DMIC components. Signed-off-by:

[PATCH 04/10] ASoC: audio-graph: Support for empty end point

2020-07-18 Thread Sameer Pujar
For open platforms, which can support pluggable audio cards, Codec endpoint is not fixed always. It actually depends on the compatible HW module that is going to be connected. From SoC side the given I/O interface is always available. Hence such links have fixed CPU endpoint but no Codec endpoint.

[PATCH 03/10] ASoC: audio-graph: Support Codec with multiple endpoints

2020-07-18 Thread Sameer Pujar
If a Codec port has multiple endpoints, only first endpoint gets parsed and remaining are ignored. This can be fixed by removing 'dup_codec' flag passed to graph_dai_link_of_dpcm() and thus it loops over all endpoints of Codec. Similarly graph_count_dpcm() is updated as well. Signed-off-by:

[PATCH 01/10] ASoC: soc-core: Fix component name_prefix parsing

2020-07-18 Thread Sameer Pujar
The "prefix" can be defined in DAI link node or it can be specified as part of the component node itself. Currently "sound-name-prefix" defined in a component is not taking effect. Actually the property is not getting parsed. It can be fixed by parsing "sound-name-prefix" property whenever

[PATCH 00/10] Audio graph card updates and usage with Tegra210 audio

2020-07-18 Thread Sameer Pujar
This series proposes following enhancements to audio-graph card driver. * Support multiple instances of a component. * Support Codec port with multiple endpoints. * Support open platforms with empty Codec endpoint. * Identify no-pcm DPCM DAI links which can be used in BE<->BE connections. *

[PATCH 02/10] ASoC: audio-graph: Use of_node and DAI for DPCM DAI link names

2020-07-18 Thread Sameer Pujar
For multiple instances of components, using DAI name alone for DAI links is causing conflicts. Components can define multiple DAIs and hence using just a device name won't help either. Thus DT device node reference and DAI names are used to uniquely represent DAI link names. Signed-off-by: Sameer

[PATCH v5 07/11] ASoC: tegra: Add Tegra210 based ADMAIF driver

2020-07-18 Thread Sameer Pujar
ADMAIF is the interface between ADMA and AHUB. Each ADMA channel that sends/receives data to/from AHUB must intreface through an ADMAIF channel. ADMA channel sending data to AHUB pairs with an ADMAIF Tx channel and similarly ADMA channel receiving data from AHUB pairs with an ADMAIF Rx channel.

Re: Are there some potentially serious problems that I should be aware of if I totally disable the CONFIG_ACPI option on the X86_64 platform?

2020-07-18 Thread 孙世龙 sunshilong
Hi, Pavel >> Are there some potentially serious problems that I should be aware of >> if I totally disable the CONFIG_ACPI option on the X86_64 platform? >These machines are still mostly IBM-PC compatible, so it is likely to >somehow work. You'll likely get worse power and thermal >management. Try

[PATCH v5 05/11] ASoC: tegra: Add Tegra210 based AHUB driver

2020-07-18 Thread Sameer Pujar
The Audio Hub (AHUB) comprises a collection of hardware accelerators for audio pre/post-processing and a programmable full crossbar (XBAR) for routing audio data across these accelerators in time and in parallel. AHUB supports multiple interfaces to I2S, DSPK, DMIC etc., XBAR is a switch used to

[PATCH v5 08/11] arm64: defconfig: Build AHUB component drivers

2020-07-18 Thread Sameer Pujar
This patch helps to build AHUB and its client drivers (I2S, DMIC, DSPK, ADMAIF and AHUB). These register components with ASoC core. Signed-off-by: Sameer Pujar --- arch/arm64/configs/defconfig | 6 ++ 1 file changed, 6 insertions(+) diff --git a/arch/arm64/configs/defconfig

[PATCH v5 04/11] ASoC: tegra: Add Tegra210 based I2S driver

2020-07-18 Thread Sameer Pujar
The Inter-IC Sound (I2S) controller implements full-duplex, bi-directional and single direction point to point serial interface. It can interface with I2S compatible devices. Tegra I2S controller can operate as both master and slave. This patch registers I2S controller with ASoC framework. The

[PATCH v5 06/11] ASoC: tegra: Add Tegra186 based DSPK driver

2020-07-18 Thread Sameer Pujar
The Digital Speaker Controller (DSPK) converts the multi-bit Pulse Code Modulation (PCM) audio input to oversampled 1-bit Pulse Density Modulation (PDM) output. From the signal flow perpsective, the DSPK can be viewed as a PDM transmitter that up-samples the input to the desired sampling rate by

[PATCH v5 11/11] arm64: tegra: Add DT binding for AHUB components

2020-07-18 Thread Sameer Pujar
This patch adds few AHUB modules for Tegra210, Tegra186 and Tegra194. Bindings for following modules are added. * AHUB added as a child node under ACONNECT * AHUB includes many HW accelerators and below components are added as its children. * ADMAIF * I2S * DMIC * DSPK (added for

[PATCH v5 09/11] arm64: defconfig: Build ADMA and ACONNECT driver

2020-07-18 Thread Sameer Pujar
This commit builds ADMA and ACONNECT drivers which can be used on Tegra210 and later platforms to transfer audio data to/from AHUB (Audio Hub). Signed-off-by: Sameer Pujar --- arch/arm64/configs/defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm64/configs/defconfig

[PATCH v5 10/11] arm64: tegra: Enable ACONNECT, ADMA and AGIC on Jetson Nano

2020-07-18 Thread Sameer Pujar
These devices are required for audio sub system and current patch ensures probe path of these devices gets tested. Later sound card support would be added which can use these devices at runtime. Signed-off-by: Sameer Pujar --- arch/arm64/boot/dts/nvidia/tegra210-p3450-.dts | 12

[PATCH v5 03/11] ASoC: tegra: Add Tegra210 based DMIC driver

2020-07-18 Thread Sameer Pujar
The Digital MIC (DMIC) Controller is used to interface with Pulse Density Modulation (PDM) input devices. The DMIC controller implements a converter to convert PDM signals to Pulse Code Modulation (PCM) signals. From signal flow perspective, the DMIC can be viewed as a PDM receiver. This patch

[PATCH v5 00/11] Add ASoC AHUB components for Tegra210 and later

2020-07-18 Thread Sameer Pujar
Overview Audio Processing Engine (APE) comprises of Audio DMA (ADMA) and Audio Hub (AHUB) unit. AHUB is a collection of hardware accelerators for audio pre-processing and post-processing. It also includes a programmable full crossbar for routing audio data across these accelerators. This

[PATCH v5 02/11] ASoC: tegra: Add support for CIF programming

2020-07-18 Thread Sameer Pujar
Audio Client Interface (CIF) is a proprietary interface employed to route audio samples through Audio Hub (AHUB) components by inter connecting the various modules. This patch exports an inline function tegra_set_cif() which can be used, for now, to program CIF on Tegra210 and later Tegra

[PATCH v5 01/11] ASoC: dt-bindings: tegra: Add DT bindings for Tegra210

2020-07-18 Thread Sameer Pujar
This patch adds YAML schema for DT binding of AHUB and few of its following components. These devices will be registered as ASoC components and binding will be used on Tegra210 and later chips. * ADMAIF * I2S * DMIC * DSPK DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nvidia.com;

Re: [PATCH v16 13/22] mm/lru: introduce TestClearPageLRU

2020-07-18 Thread Alex Shi
在 2020/7/18 上午2:26, Alexander Duyck 写道: > On Fri, Jul 17, 2020 at 12:46 AM Alex Shi wrote: >> >> >> >> 在 2020/7/17 上午5:12, Alexander Duyck 写道: >>> On Fri, Jul 10, 2020 at 5:59 PM Alex Shi wrote: Combine PageLRU check and ClearPageLRU into a function by new introduced func

Re: [PATCH 1/1] riscv: Enable compiler optimizations

2020-07-18 Thread Palmer Dabbelt
On Tue, 07 Jul 2020 22:43:54 PDT (-0700), maoche...@eswin.com wrote: Enable ARCH_HAS_FAST_MULTIPLIER and ARCH_SUPPORTS_INT128 for better code generation. These 2 configurations works fine on GCC-9.3 and GCC-10.1 Signed-off-by: Chenxi Mao --- arch/riscv/Kconfig | 2 ++ 1 file changed, 2

Re: [PATCH RFC V2 14/17] dax: Stray write protection for dax_direct_access()

2020-07-18 Thread Ira Weiny
On Fri, Jul 17, 2020 at 11:22:43AM +0200, Peter Zijlstra wrote: > On Fri, Jul 17, 2020 at 12:20:53AM -0700, ira.we...@intel.com wrote: > > > --- a/drivers/dax/super.c > > +++ b/drivers/dax/super.c > > @@ -30,12 +30,14 @@ static DEFINE_SPINLOCK(dax_host_lock); > > > > int dax_read_lock(void) >

Re: Are there some potentially serious problems that I should be aware of if I totally disable the CONFIG_ACPI option on the X86_64 platform?

2020-07-18 Thread 孙世龙 sunshilong
Hi, Greg KH >Yes, your ACPI-based system will not boot. Do you mean the OS will not boot or some of the Linux subsystems(i.e. USB PCI etc) will not boot? Thank you for your attention to this matter. On Wed, Jul 1, 2020 at 6:58 PM Greg KH wrote: > > On Wed, Jul 01, 2020 at 05:15:52PM +0800, 孙世龙

Re: [PATCH] staging: media: atomisp: Replace depracated MSI API.

2020-07-18 Thread Suraj Upadhyay
On Sat, Jul 18, 2020 at 06:56:32PM +0530, Suraj Upadhyay wrote: > Replace depracated pci_enable_msi with pci_alloc_irq_vectors. > And as a result modify how the returned value is handled. > > Signed-off-by: Suraj Upadhyay > --- > drivers/staging/media/atomisp/pci/atomisp_v4l2.c | 4 ++-- > 1

Re: [PATCH v2] staging: rts5208: rtsx: Replace depracated MSI API

2020-07-18 Thread Suraj Upadhyay
On Sat, Jul 18, 2020 at 09:10:30PM +0530, Suraj Upadhyay wrote: > Replace depracated pci_enable_msi with pci_alloc_irq_vectors. > > Signed-off-by: Suraj Upadhyay > --- > drivers/staging/rts5208/rtsx.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > Hii, don't merge this patch. It

Re: [PATCH v2] staging: kpc2000: Replace depracated MSI API.

2020-07-18 Thread Suraj Upadhyay
On Sat, Jul 18, 2020 at 09:19:51PM +0530, Suraj Upadhyay wrote: > Replace depracated pci_enable_msi with pci_alloc_irq_vectors. > And as a result modify how the returned value is handled. > > Signed-off-by: Suraj Upadhyay > --- > Changes: > v2: Removed the undefined variable. >

Re: [PATCH 2/2] ASoC: qcom: sc7180: Add machine driver for sound card registration

2020-07-18 Thread kernel test robot
Hi Cheng-Yi, Thank you for the patch! Yet something to improve: [auto build test ERROR on asoc/for-next] [also build test ERROR on linux/master linus/master v5.8-rc5 next-20200717] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to

Re: [PATCH RFC v2] rcu/segcblist: Add counters to segcblist datastructure

2020-07-18 Thread Joel Fernandes
On Sun, Jul 19, 2020 at 12:06:28AM -0400, Joel Fernandes wrote: > On Sat, Jul 18, 2020 at 11:55 PM Joel Fernandes (Google) > wrote: > [...] > > /* If no callbacks moved, nothing more need be done. */ > > @@ -419,10 +494,9 @@ void rcu_segcblist_advance(struct rcu_segcblist > > *rsclp,

Re: [PATCH RFC V2 13/17] kmap: Add stray write protection for device pages

2020-07-18 Thread Ira Weiny
On Fri, Jul 17, 2020 at 11:21:39AM +0200, Peter Zijlstra wrote: > On Fri, Jul 17, 2020 at 12:20:52AM -0700, ira.we...@intel.com wrote: > > @@ -31,6 +32,20 @@ static inline void invalidate_kernel_vmap_range(void > > *vaddr, int size) > > > > #include > > > > +static inline void

Re: [PATCH RFC v2] rcu/segcblist: Add counters to segcblist datastructure

2020-07-18 Thread Joel Fernandes
On Sat, Jul 18, 2020 at 11:55 PM Joel Fernandes (Google) wrote: [...] > /* If no callbacks moved, nothing more need be done. */ > @@ -419,10 +494,9 @@ void rcu_segcblist_advance(struct rcu_segcblist *rsclp, > unsigned long seq) > * callbacks. The overall effect is to copy down

Re: [PATCH v16 15/22] mm/compaction: do page isolation first in compaction

2020-07-18 Thread Alex Shi
在 2020/7/18 上午12:09, Alexander Duyck 写道: >>> I wonder if it wouldn't make sense to combine these two atomic ops >>> with tests and the put_page into a single inline function? Then it >>> could be possible to just do one check and if succeeds you do the >>> block of code below, otherwise you

Re: [PATCH v16 16/22] mm/mlock: reorder isolation sequence during munlock

2020-07-18 Thread Alex Shi
在 2020/7/18 上午4:30, Alexander Duyck 写道: > On Fri, Jul 10, 2020 at 5:59 PM Alex Shi wrote: >> >> This patch reorder the isolation steps during munlock, move the lru lock >> to guard each pages, unfold __munlock_isolate_lru_page func, to do the >> preparation for lru lock change. >> >>

[PATCH RFC v2] rcu/segcblist: Add counters to segcblist datastructure

2020-07-18 Thread Joel Fernandes (Google)
Add counting of segment lengths of segmented callback list. This will be useful for a number of things such as knowing how big the ready-to-execute segment have gotten. The immediate benefit is ability to trace how the callbacks in the segmented callback list change. Signed-off-by: Joel

Re: [PATCH] libbpf bpf_helpers: Use __builtin_offsetof for offsetof if available

2020-07-18 Thread Andrii Nakryiko
On Fri, Jul 17, 2020 at 12:24 AM Ian Rogers wrote: > > The non-builtin route for offsetof has a dependency on size_t from > stdlib.h/stdint.h that is undeclared and may break targets. > The offsetof macro in bpf_helpers may disable the same macro in other > headers that have a #ifdef offsetof

arch/powerpc/platforms/powermac/setup.c:215:25: sparse: sparse: cast removes address space '__iomem' of expression

2020-07-18 Thread kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: f932d58abc38c898d7d3fe635ecb2b821a256f54 commit: 670d0a4b10704667765f7d18f7592993d02783aa sparse: use identifiers to define address spaces date: 4 weeks ago config: powerpc64-randconfig-s031-20200719

Re: [PATCH v5 4/4] printk: use the lockless ringbuffer

2020-07-18 Thread Sergey Senozhatsky
Hi Marco, On (20/07/18 14:10), Marco Elver wrote: > > It seems this causes a regression observed at least with newline-only > printks. I noticed this during -next testing because various debugging > tools (K*SAN, lockdep, etc.) use e.g. pr_{err,warn,info}("\n") to format > reports. > > Without

[PATCH RFC] rcu/segcblist: Add counters to segcblist datastructure

2020-07-18 Thread Joel Fernandes (Google)
From: Joel Fernandes Add counting of segment lengths of segmented callback list. This will be useful for a number of things such as knowing how big the ready-to-execute segment have gotten. The immediate benefit is ability to trace how the callbacks in the segmented callback list change.

[RFC] raw_copy_from_user() semantics

2020-07-18 Thread Al Viro
Back in 2017 I'd made a bogus promise regarding raw_copy_from_user(). Namely, that in case of short copy it will copy at least something unless nothing could've been read at all. Such property could've been used by code that would want to squeeze every byte, by doing

Re: [PATCH] docs: core-api/printk-formats.rst: use literal block syntax

2020-07-18 Thread Sergey Senozhatsky
On (20/07/18 13:51), Daniel W. S. Almeida wrote: > Fix the following warning: > > WARNING: Definition list ends without a blank line; > unexpected unindent. > > By switching to the literal block syntax. > > Signed-off-by: Daniel W. S. Almeida Acked-by: Sergey Senozhatsky -ss

[PATCH] ASoC: soc-jack: calling snd_soc_jack_report causes a null pointer access

2020-07-18 Thread mnlife qiao
> From: mnlife > > When snd_soc_card_jack_new is not called or the call fails, > calling this function causes a null pointer access > > Signed-off-by: mnlife > --- > sound/soc/soc-jack.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/sound/soc/soc-jack.c

marcy

2020-07-18 Thread Marcy Alkhalifa
Hello My Dear, I would really like to have a good relationship with you, I contact you because of the urgency of my situation here. I am Miss Marcy Majzoub Alkhalifa, 23 years old girl from south Sudan, only daughter of Late Dr Majzoub Alkhalifa. My father was a politician and also a Gold

[PATCH v2 1/3] arm64: dts: meson: add audio playback to odroid-c4

2020-07-18 Thread Christian Hewitt
Add initial audio support limited to HDMI i2s. Signed-off-by: Christian Hewitt --- .../boot/dts/amlogic/meson-sm1-odroid-c4.dts | 88 +++ 1 file changed, 88 insertions(+) diff --git a/arch/arm64/boot/dts/amlogic/meson-sm1-odroid-c4.dts

[PATCH v2 3/3] arm64: dts: meson: add audio playback to u200

2020-07-18 Thread Christian Hewitt
Add initial support limited to HDMI i2s and S/PDIF (LPCM). Signed-off-by: Christian Hewitt --- .../boot/dts/amlogic/meson-g12a-u200.dts | 131 ++ 1 file changed, 131 insertions(+) diff --git a/arch/arm64/boot/dts/amlogic/meson-g12a-u200.dts

[PATCH v2 2/3] arm64: dts: meson: add audio playback to khadas-vim3l

2020-07-18 Thread Christian Hewitt
Add initial audio support limited to HDMI i2s, copying the config from the existing VIM3 device-tree. Signed-off-by: Christian Hewitt --- .../dts/amlogic/meson-sm1-khadas-vim3l.dts| 88 +++ 1 file changed, 88 insertions(+) diff --git

[PATCH v2 0/3] arm64: dts: meson: add more G12/SM1 soundcards

2020-07-18 Thread Christian Hewitt
This series adds basic support for LPCM audio over HDMI interfaces to the Khadas VIM3L (reusing the same config as the VIM3) and the HardKernel ODROID-C4 devices, and HDMI + S/PDIF on U200 reference board (reusing the config from the X96-Max box), I'm sure support can be extended to include other

Re: [PATCH] x86/idt: Make sure idt_table takes a whole page

2020-07-18 Thread Arvind Sankar
On Sat, Jul 18, 2020 at 06:15:26PM -0700, h...@zytor.com wrote: > On July 18, 2020 12:25:46 PM PDT, Andy Lutomirski wrote: > > > >> On Jul 18, 2020, at 10:57 AM, h...@zytor.com wrote: > >> > >> On July 9, 2020 3:33:55 AM PDT, Joerg Roedel > >wrote: > >>> From: Joerg Roedel > >>> > >>> On

fs/zonefs/super.c:1110:6: warning: Variable 'ret' is reassigned a value before the old one has been used.

2020-07-18 Thread kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 6cf7ccba29dcf39ab27630c383a3844078a6d5cd commit: 8dcc1a9d90c10fa4143e5c17821082e5e60e46a1 fs: New zonefs file system date: 5 months ago compiler: gcc-9 (Debian 9.3.0-14) 9.3.0 If you fix the issue, kindly

[PATCH 0/3] xtensa: add seccomp support

2020-07-18 Thread Max Filippov
Hello, this series adds support for seccomp filter on xtensa and updates selftests/seccomp. Max Filippov (3): xtensa: expose syscall through user_pt_regs xtensa: add seccomp support selftests/seccomp: add xtensa support .../seccomp/seccomp-filter/arch-support.txt | 2 +-

[PATCH 3/3] selftests/seccomp: add xtensa support

2020-07-18 Thread Max Filippov
Xtensa returns syscall number can be obtained and changed through the struct user_pt_regs. Syscall return value register is fixed relatively to the current register window in the user_pt_regs, so it needs a bit of special treatment. Signed-off-by: Max Filippov ---

[PATCH 2/3] xtensa: add seccomp support

2020-07-18 Thread Max Filippov
Add SECCOMP to xtensa Kconfig, select HAVE_ARCH_SECCOMP_FILTER, add TIF_SECCOMP and call secure_computing from do_syscall_trace_enter. Signed-off-by: Max Filippov --- .../seccomp/seccomp-filter/arch-support.txt | 2 +- arch/xtensa/Kconfig | 15

[PATCH 1/3] xtensa: expose syscall through user_pt_regs

2020-07-18 Thread Max Filippov
Use one of the reserved slots in struct user_pt_regs to return syscall number in the GPR regset. Update syscall number from the GPR regset only when it's non-zero. Signed-off-by: Max Filippov --- arch/xtensa/include/uapi/asm/ptrace.h | 3 ++- arch/xtensa/kernel/ptrace.c | 4 2

[PATCH v3 1/2] dt-bindings: arm: amlogic: add support for the WeTek Core 2

2020-07-18 Thread Christian Hewitt
The WeTek Core 2 is a commercial Android device based on the Amlogic Q200 reference design using the S912-H chipset. Specs: 3GB DDR3 RAM 32GB eMMC storage 10/100 Ethernet using Realtek RTL8152 (internal USB) 802.11 a/b/g/n/ac + BT 4.1 sdio wireless module (AP6356S) 2x single colour LEDs to

[PATCH v3 0/2] arm64: dts: meson: add support for WeTek Core 2

2020-07-18 Thread Christian Hewitt
From: chewitt This series adds support for the WeTek Core 2 which is a commercial box device based on the Amlogic Q200 reference design. v3 changes - fix BT node (enable-gpios > shutdown-gpios) v2 changes - simplify ethernet disable Christian Hewitt (2): dt-bindings: arm: amlogic: add

[PATCH v3 2/2] arm64: dts: meson: add support for the WeTek Core 2

2020-07-18 Thread Christian Hewitt
The WeTek Core2 is a commercial device based on the Amlogic Q200 reference design but with the following differences: - 3GB RAM, 32GB eMMC - Blue and Red LEDs used to signal on/off status - uart_AO can be accessed after opening the case; soldering required - USB OTG is not accessible (inside the

[PATCH] xtensa: add audit support

2020-07-18 Thread Max Filippov
All bits needed for syscall audit are present on xtensa. Add audit_syscall_entry and audit_syscall_exit calls and select HAVE_ARCH_AUDITSYSCALL in Kconfig. Signed-off-by: Max Filippov --- arch/xtensa/Kconfig | 1 + arch/xtensa/include/asm/thread_info.h | 4 +++-

Re: [PATCH -next] x86/xen: Convert to DEFINE_SHOW_ATTRIBUTE

2020-07-18 Thread Boris Ostrovsky
On 7/16/20 5:06 AM, Qinglang Miao wrote: > From: Chen Huang > > Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. > > Signed-off-by: Chen Huang Reviewed-by: Boris Ostrovsky

marcy

2020-07-18 Thread Marcy Alkhalifa
Hello My Dear, I would really like to have a good relationship with you, I contact you because of the urgency of my situation here. I am Miss Marcy Majzoub Alkhalifa, 23 years old girl from south Sudan, only daughter of Late Dr Majzoub Alkhalifa. My father was a politician and also a Gold

Re: [PATCH v2 01/11] xen/manage: keep track of the on-going suspend mode

2020-07-18 Thread Boris Ostrovsky
(Roger, question for you at the very end) On 7/17/20 3:10 PM, Anchal Agarwal wrote: > On Wed, Jul 15, 2020 at 05:18:08PM -0400, Boris Ostrovsky wrote: >> CAUTION: This email originated from outside of the organization. Do not >> click links or open attachments unless you can confirm the sender

Re: [RFC PATCH v2] fs/namespace: use percpu_rw_semaphore for writer holding

2020-07-18 Thread Al Viro
On Thu, Jul 02, 2020 at 05:46:46PM +0200, Sebastian Andrzej Siewior wrote: > The MNT_WRITE_HOLD flag is used to manually implement a rwsem. Could you show me where does it currently sleep? Your version does, unless I'm misreading it...

Re: [PATCH 01/32] iov_iter: Add ITER_MAPPING

2020-07-18 Thread Al Viro
On Mon, Jul 13, 2020 at 05:30:52PM +0100, David Howells wrote: > Add an iterator, ITER_MAPPING, that walks through a set of pages attached > to an address_space, starting at a given page and offset and walking for > the specified amount of bytes. > > The caller must guarantee that the pages are

Re: [PATCH] x86/idt: Make sure idt_table takes a whole page

2020-07-18 Thread hpa
On July 18, 2020 12:25:46 PM PDT, Andy Lutomirski wrote: > >> On Jul 18, 2020, at 10:57 AM, h...@zytor.com wrote: >> >> On July 9, 2020 3:33:55 AM PDT, Joerg Roedel >wrote: >>> From: Joerg Roedel >>> >>> On x86-32 the idt_table with 256 entries needs only 2048 bytes. It >is >>> page-aligned,

[tip:x86/urgent] BUILD SUCCESS cadfad870154e14f745ec845708bc17d166065f2

2020-07-18 Thread kernel test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/urgent branch HEAD: cadfad870154e14f745ec845708bc17d166065f2 x86/ioperm: Fix io bitmap invalidation on Xen PV elapsed time: 722m configs tested: 78 configs skipped: 79 The following configs have been built

[PATCH] xen/gntdev: gntdev.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "of" in a comment. Signed-off-by: Randy Dunlap Cc: Boris Ostrovsky Cc: Juergen Gross Cc: xen-de...@lists.xenproject.org --- include/uapi/xen/gntdev.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/uapi/xen/gntdev.h +++

[PATCH] soc: tegra/bpmp-abi.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "or" in a comment. Signed-off-by: Randy Dunlap Cc: Vidya Sagar Cc: Lorenzo Pieralisi Cc: Thierry Reding Cc: Timo Alho --- include/soc/tegra/bpmp-abi.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/soc/tegra/bpmp-abi.h

[PATCH] ASoC: soc-dai.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "be" in a comment. Signed-off-by: Randy Dunlap Cc: Liam Girdwood Cc: Mark Brown Cc: alsa-de...@alsa-project.org --- include/sound/soc-dai.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/sound/soc-dai.h +++

[PATCH] STM: : drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "the" in a comment. Signed-off-by: Randy Dunlap Cc: Alexander Shishkin --- include/linux/stm.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/linux/stm.h +++ linux-next-20200717/include/linux/stm.h @@ -57,7 +57,7 @@ struct

[PATCH] SCSI: scsi_transport_iscsi.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "the" in a comment. Signed-off-by: Randy Dunlap Cc: "James E.J. Bottomley" Cc: "Martin K. Petersen" Cc: linux-s...@vger.kernel.org --- include/scsi/scsi_transport_iscsi.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---

[PATCH] RDMA: rdma_user_ioctl.h: fix a duplicated word + clarify

2020-07-18 Thread Randy Dunlap
Change the repeated word "it" in a comment to "it to". Also insert a dash in the sentence to add clarity. Signed-off-by: Randy Dunlap Cc: Doug Ledford Cc: Jason Gunthorpe Cc: linux-r...@vger.kernel.org --- include/uapi/rdma/rdma_user_ioctl.h |2 +- 1 file changed, 1 insertion(+), 1

[PATCH] MTD: mtd-abi.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "mode" in a comment. Signed-off-by: Randy Dunlap Cc: Miquel Raynal Cc: Richard Weinberger Cc: Vignesh Raghavendra Cc: linux-...@lists.infradead.org --- include/uapi/mtd/mtd-abi.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---

[PATCH] RMI: : drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "to" in a comment. Signed-off-by: Randy Dunlap Cc: Nick Dyer Cc: Dmitry Torokhov Cc: Benjamin Tissoires --- include/linux/rmi.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/linux/rmi.h +++

[PATCH] platform_data: x86/pmc_atom.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "of" in a comment. Signed-off-by: Randy Dunlap Cc: Irina Tirdea Cc: Pierre-Louis Bossart Cc: Stephen Boyd --- include/linux/platform_data/x86/pmc_atom.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---

[PATCH] platform_data: cros_ec_commands.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "using" in a comment. Signed-off-by: Randy Dunlap Cc: Tzung-Bi Shih Cc: Mark Brown --- or "using the" ? include/linux/platform_data/cros_ec_commands.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---

[PATCH] soc: ti/ti_sci_protocol.h: drop a duplicated word + clarify

2020-07-18 Thread Randy Dunlap
Drop the repeated word "an" in a comment. Insert "and" between "source" and "destination" as is done a few lines earlier. Signed-off-by: Randy Dunlap Cc: Nishanth Menon Cc: Tero Kristo Cc: Santosh Shilimkar Cc: Lokesh Vutla Cc: Arnd Bergmann Cc: linux-arm-ker...@lists.infradead.org ---

[PATCH] platform_data: emif_plat.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "if" in a comment. Signed-off-by: Randy Dunlap Cc: Nishanth Menon Cc: Aneesh V Cc: Santosh Shilimkar --- include/linux/platform_data/emif_plat.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---

[PATCH] nvme-fc: nvme-fc-driver.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "a" in a comment. Signed-off-by: Randy Dunlap Cc: James Smart Cc: linux-n...@lists.infradead.org Cc: Jens Axboe --- include/linux/nvme-fc-driver.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/linux/nvme-fc-driver.h +++

[PATCH] platform_data: ad7793.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "and" in a comment. Signed-off-by: Randy Dunlap Cc: Lars-Peter Clausen Cc: Jonathan Cameron --- include/linux/platform_data/ad7793.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/linux/platform_data/ad7793.h +++

[PATCH] MTD: pfow.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "can" in a comment. Signed-off-by: Randy Dunlap Cc: Miquel Raynal Cc: Richard Weinberger Cc: Vignesh Raghavendra Cc: linux-...@lists.infradead.org --- include/linux/mtd/pfow.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---

[PATCH] perf: : drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "the" in a comment. Signed-off-by: Randy Dunlap Cc: Peter Zijlstra Cc: Ingo Molnar Cc: Arnaldo Carvalho de Melo --- include/linux/perf_event.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/linux/perf_event.h +++

[PATCH] irqchip: irq-bcm2836.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "the" in a comment. Signed-off-by: Randy Dunlap Cc: Thomas Gleixner Cc: Jason Cooper Cc: Marc Zyngier --- include/linux/irqchip/irq-bcm2836.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/linux/irqchip/irq-bcm2836.h +++

[PATCH] MFD: max77693-private.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "in" in a comment. Signed-off-by: Randy Dunlap Cc: Chanwoo Choi Cc: Krzysztof Kozlowski Cc: Bartlomiej Zolnierkiewicz Cc: Lee Jones --- include/linux/mfd/max77693-private.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---

[PATCH] misc: mic: : drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "the" in a comment. Signed-off-by: Randy Dunlap Cc: Sudeep Dutt Cc: Ashutosh Dixit Cc: Arnd Bergmann Cc: Greg Kroah-Hartman --- include/linux/mic_bus.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/linux/mic_bus.h +++

[PATCH] MFD: da9055/pdata.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "that" in a comment. Signed-off-by: Randy Dunlap Cc: Support Opensource Cc: Lee Jones --- include/linux/mfd/da9055/pdata.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/linux/mfd/da9055/pdata.h +++

[PATCH] isst: isst_if.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "for" in a comment. Signed-off-by: Randy Dunlap Cc: Srinivas Pandruvada Cc: platform-driver-...@vger.kernel.org Cc: Darren Hart Cc: Andy Shevchenko --- This description could still use some better wording. include/uapi/linux/isst_if.h |2 +- 1 file changed, 1

[PATCH] clk: : drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "not" in a comment. Signed-off-by: Randy Dunlap Cc: Michael Turquette Cc: Stephen Boyd Cc: linux-...@vger.kernel.org --- include/linux/clk-provider.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/linux/clk-provider.h +++

[PATCH] hyperv: hyperv.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "the" in a comment. Signed-off-by: Randy Dunlap Cc: "K. Y. Srinivasan" Cc: Haiyang Zhang Cc: Stephen Hemminger Cc: Wei Liu Cc: linux-hyp...@vger.kernel.org --- include/uapi/linux/hyperv.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---

[PATCH] dt-bindings: mux: mux.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "the" in a comment. Signed-off-by: Randy Dunlap Cc: Peter Rosin Cc: Rob Herring Cc: devicet...@vger.kernel.org --- include/dt-bindings/mux/mux.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/dt-bindings/mux/mux.h +++

[PATCH] android: binder.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "the" in a comment. Signed-off-by: Randy Dunlap Cc: Greg Kroah-Hartman Cc: Arve Hjønnevåg Cc: Todd Kjos Cc: Martijn Coenen Cc: Joel Fernandes Cc: Christian Brauner Cc: Hridya Valsaraju Cc: Suren Baghdasaryan Cc: de...@driverdev.osuosl.org ---

[PATCH] ACPI: actypes.h: drop a duplicated word

2020-07-18 Thread Randy Dunlap
Drop the repeated word "an" in a comment. Signed-off-by: Randy Dunlap Cc: "Rafael J. Wysocki" Cc: Len Brown Cc: linux-a...@vger.kernel.org --- include/acpi/actypes.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200717.orig/include/acpi/actypes.h +++

  1   2   3   4   5   6   >