[PATCH v2 08/14] ARM: dts: at91: sama5d27_som1_ek: remove pull-up on SD/MMC lines

2017-10-10 Thread Claudiu Beznea
From: Nicolas Ferre As the board have the proper pull-ups soldered on the data and CMD lines we don't need them specified in the PADs. So remove the "bias-pull-up" property and set "bias-disable". Signed-off-by: Nicolas Ferre [claudiu.bez...@microchip.com: change subject to match the desired pr

[PATCH] x86/apic: Silence "FW_BUG TSC_DEADLINE disabled due to Errata" on hypervisors

2017-10-10 Thread Paolo Bonzini
Commit 594a30fb1242 ("x86/apic: Silence "FW_BUG TSC_DEADLINE disabled due to Errata" on CPUs without the feature", 2017-08-30) was also about silencing the warning on VirtualBox; however, KVM does expose the TSC deadline time, and it's virtualized so that it is immune from CPU errata. Therefore, b

[PATCH v2 02/14] ARM: dts: at91: sama5d27_som1_ek: enable i2c2

2017-10-10 Thread Claudiu Beznea
Enable i2c. Signed-off-by: Claudiu Beznea --- arch/arm/boot/dts/at91-sama5d27_som1_ek.dts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/at91-sama5d27_som1_ek.dts b/arch/arm/boot/dts/at91-sama5d27_som1_ek.dts index 43bca17b9e4e..03a4c77fd6ab 100644 ---

[PATCH v2 05/14] ARM: dts: at91: sama5d27_som1_ek: add aliases for i2c

2017-10-10 Thread Claudiu Beznea
From: Ludovic Desroches Add aliases for i2c devices to not rely on probe order for i2c device numbering. Signed-off-by: Ludovic Desroches [claudiu.bez...@microchip.com: remove i2c0, change subject] Signed-off-by: Claudiu Beznea --- arch/arm/boot/dts/at91-sama5d27_som1_ek.dts | 2 ++ 1 file ch

Re: [PATCH] firmware: bluefield: add boot control driver

2017-10-10 Thread Sudeep Holla
(+Mark, Grant) On 09/10/17 18:16, Chris Metcalf wrote: > The Mellanox BlueField SoC firmware supports a safe upgrade mode as > part of the flow where users put new firmware on the secondary eMMC > boot partition (the one not currently in use), tell the eMMC to make > the secondary boot partition p

Re: [tho...@m3y3r.de: Re: [PATCH] um: Fix kcov crash before kernel is started.]

2017-10-10 Thread Mark Rutland
Hi, On Tue, Oct 10, 2017 at 10:59:23AM +0200, 'Dmitry Vyukov' via syzkaller wrote: > On Mon, Oct 9, 2017 at 9:16 PM, Thomas Meyer wrote: > >> > Date: Sun, 8 Oct 2017 13:18:24 +0200 > >> > From: Thomas Meyer > >> > To: Richard Weinberger > >> > Cc: user-mode-linux-de...@lists.sourceforge.net, >

[PATCH 1/4] dt-bindings: PCI: dra7xx: Add SoC specific compatible strings

2017-10-10 Thread Kishon Vijay Abraham I
Add new compatible strings for dra74x SoC (also used by dra76x) and dra72x. This can be used to perform SoC specific configuration (like configuring PCIe in x2 lane mode). Signed-off-by: Kishon Vijay Abraham I Signed-off-by: Sekhar Nori --- Documentation/devicetree/bindings/pci/ti-pci.txt | 8 +

[PATCH 2/4] dt-bindings: PCI: dra7xx: Add properties to enable x2 lane in dra7

2017-10-10 Thread Kishon Vijay Abraham I
Add syscon properties required for configuring PCIe in x2 lane mode. Signed-off-by: Kishon Vijay Abraham I Signed-off-by: Sekhar Nori --- Documentation/devicetree/bindings/pci/ti-pci.txt | 4 1 file changed, 4 insertions(+) diff --git a/Documentation/devicetree/bindings/pci/ti-pci.txt b/

[PATCH 4/4] PCI: dwc: pci-dra7xx: Enable x2 mode support

2017-10-10 Thread Kishon Vijay Abraham I
Perform syscon configurations to get x2 mode to working in dra74x (and dra76x). Signed-off-by: Kishon Vijay Abraham I Signed-off-by: Sekhar Nori --- drivers/pci/dwc/pci-dra7xx.c | 68 ++-- 1 file changed, 66 insertions(+), 2 deletions(-) diff --git a/dri

[PATCH 3/4] PCI: dwc: dra7xx: Add support for SoC specific compatible strings

2017-10-10 Thread Kishon Vijay Abraham I
dra74x/dra76x and dra72x has separate compatible strings. Add support for these compatible strings in pci-dra7xx driver. This is a preparatory patch for adding 2-lane mode support and dra74/dra72 should add it's own driver data for 2-lane mode configuration. Signed-off-by: Kishon Vijay Abraham I

[PATCH 0/4] PCI: dwc: pci-dra7: Support PCIe x2 lane mode

2017-10-10 Thread Kishon Vijay Abraham I
Patch series adds support to enable x2 lane mode in dra74/dra76 based boards in pci-dra7xx driver. It introduces new compatible strings in order to enable x2 lane mode support. x2 lane mode support for dra72 based boards will be added in a later series. patch series is created on top of https://l

[PATCH v2] extcon: Split out extcon header file for consumer and provider device

2017-10-10 Thread Chanwoo Choi
The extcon has two type of extcon devices as following. - 'extcon provider deivce' adds new extcon device and detect the state/properties of external connector. Also, it notifies the state/properties to the extcon consumer device. - 'extcon consumer device' gets the change state/properties

Re: [PATCH v2] acpi/arm64: pr_err() strings should end with newlines

2017-10-10 Thread Lorenzo Pieralisi
On Tue, Oct 10, 2017 at 05:33:50PM +0800, Hanjun Guo wrote: > On 2017/9/25 15:24, Arvind Yadav wrote: > > pr_err() messages should terminated with a new-line to avoid > > other messages being concatenated onto the end. > > > > Signed-off-by: Arvind Yadav > > --- > > changes in v2: > >

Re: [PATCH] firmware: bluefield: add boot control driver

2017-10-10 Thread Mark Rutland
On Tue, Oct 10, 2017 at 11:15:39AM +0100, Sudeep Holla wrote: > (+Mark, Grant) > > On 09/10/17 18:16, Chris Metcalf wrote: > > The Mellanox BlueField SoC firmware supports a safe upgrade mode as > > part of the flow where users put new firmware on the secondary eMMC > > boot partition (the one not

Re: [PATCH v2] extcon: Split out extcon header file for consumer and provider device

2017-10-10 Thread Felipe Balbi
Hi, Chanwoo Choi writes: > The extcon has two type of extcon devices as following. > - 'extcon provider deivce' adds new extcon device and detect the >state/properties of external connector. Also, it notifies the >state/properties to the extcon consumer device. > - 'extcon consumer devic

Re: [PATCH v2 15/16] gpio: tegra: Use banked GPIO infrastructure

2017-10-10 Thread Thierry Reding
On Mon, Oct 09, 2017 at 04:22:29PM -0500, Grygorii Strashko wrote: > > > On 09/28/2017 04:56 AM, Thierry Reding wrote: > > From: Thierry Reding > > > > Convert the Tegra GPIO driver to use the banked GPIO infrastructure, > > which simplifies some parts of the driver. > > > > Signed-off-by: Thi

[PATCH v8 3/8] coresight: of: Use of_cpu_node_to_id helper

2017-10-10 Thread Suzuki K Poulose
Reuse the new generic helper, of_cpu_node_to_id() to map a given CPU phandle to a logical CPU number. Acked-by: Mathieu Poirier Tested-by: Leo Yan Signed-off-by: Suzuki K Poulose --- Changes since V4: - Fix a regression introduced in v4, reported by bugrobot Changes since V3: - Reflect the re

[PATCH v8 1/8] perf: Export perf_event_update_userpage

2017-10-10 Thread Suzuki K Poulose
Export perf_event_update_userpage() so that PMU driver using them, can be built as modules. Cc: Peter Zilstra Signed-off-by: Suzuki K Poulose --- kernel/events/core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/events/core.c b/kernel/events/core.c index 6bc21e202ae4..162f5ba756a9

[PATCH v8 7/8] dt-bindings: Document devicetree binding for ARM DSU PMU

2017-10-10 Thread Suzuki K Poulose
This patch documents the devicetree bindings for ARM DSU PMU. Cc: Mark Rutland Cc: Will Deacon Cc: devicet...@vger.kernel.org Cc: frowand.l...@gmail.com Acked-by: Rob Herring Signed-off-by: Suzuki K Poulose --- Changes since V3: - Fixed node name in the example, suggested by Rob --- .../devi

[PATCH v8 8/8] perf: ARM DynamIQ Shared Unit PMU support

2017-10-10 Thread Suzuki K Poulose
Add support for the Cluster PMU part of the ARM DynamIQ Shared Unit (DSU). The DSU integrates one or more cores with an L3 memory system, control logic, and external interfaces to form a multicore cluster. The PMU allows counting the various events related to L3, SCU etc, along with providing a cyc

[PATCH v8 4/8] irqchip: gic-v3: Use of_cpu_node_to_id helper

2017-10-10 Thread Suzuki K Poulose
Use the new generic helper of_cpu_node_to_id() instead of using our own version to map a device node to logical CPU number. Acked-by: Marc Zyngier Signed-off-by: Suzuki K Poulose --- Changes since V3: - Reflect the change in the helper name and return value. --- drivers/irqchip/irq-gic-v3.c |

[PATCH v8 5/8] arm64: Use of_cpu_node_to_id helper for CPU topology parsing

2017-10-10 Thread Suzuki K Poulose
Make use of the new generic helper to convert an of_node of a CPU to the logical CPU id in parsing the topology. Cc: Catalin Marinas Cc: Leo Yan Cc: Will Deacon Cc: Mark Rutland Signed-off-by: Suzuki K Poulose --- arch/arm64/kernel/topology.c | 16 ++-- 1 file changed, 6 insertio

[PATCH v8 6/8] arm_pmu: Use of_cpu_node_to_id helper

2017-10-10 Thread Suzuki K Poulose
Use the new generic helper, of_cpu_node_to_id(), to map a a phandle to the logical CPU number while parsing the PMU irq affinity. Cc: Mark Rutland Cc: Will Deacon Signed-off-by: Suzuki K Poulose --- drivers/perf/arm_pmu_platform.c | 15 +++ 1 file changed, 3 insertions(+), 12 delet

[PATCH v8 2/8] of: Add helper for mapping device node to logical CPU number

2017-10-10 Thread Suzuki K Poulose
Add a helper to map a device node to a logical CPU number to avoid duplication. Currently this is open coded in different places (e.g gic-v3, coresight). The helper tries to map device node to a "possible" logical CPU id, which may not be online yet. It is the responsibility of the user to make sur

[PATCH v8 0/8] perf: Support for ARM DynamIQ Shared Unit

2017-10-10 Thread Suzuki K Poulose
This series adds support for the PMU in ARM DynamIQ Shared Unit (DSU). The DSU integrates one or more cores with an L3 memory system, control logic, and external interfaces to form a multicore cluster. The PMU allows counting the various events related to L3, SCU etc, using 32bit independent counte

Re: [PATCH v2] powerpc: Default to enabling STRICT_KERNEL_RWX

2017-10-10 Thread Michael Ellerman
Kees Cook writes: > When available, CONFIG_KERNEL_RWX should be default-enabled for PPC64. > On PPC32, there is a performance trade-off. Thanks for prodding us. But I think we need some more test cycles on this before we make it the default. As Balbir said it's currently not compatible with REL

RE: [PATCH v2] extcon: Split out extcon header file for consumer and provider device

2017-10-10 Thread Yoshihiro Shimoda
Hi, > From: Chanwoo Choi, Sent: Tuesday, October 10, 2017 7:18 PM > > The extcon has two type of extcon devices as following. > - 'extcon provider deivce' adds new extcon device and detect the >state/properties of external connector. Also, it notifies the >state/properties to the extcon c

drm/imx: lock scanout transfers for consecutive bursts

2017-10-10 Thread Patrick Brünn
Hi Philipp, since commit 790cb4c7c9545953d22d3d425e49b36a711bae5b my display on CX9020 (a i.MX53 based machine) stopped working: # dmesg | grep -i drm [0.141829] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [0.141838] [drm] No driver support for vblank timestamp query. [

Re: [PATCH] clk: samsung: exynos5433: mark PM functions as __maybe_unused

2017-10-10 Thread Ulf Hansson
On 10 October 2017 at 11:15, Arnd Bergmann wrote: > The suspend/resume functions are referenced conditionally, causing > a harmless warning when CONFIG_PM is disabled: > > drivers/clk/samsung/clk-exynos5433.c:5476:12: error: 'exynos5433_cmu_resume' > defined but not used [-Werror=unused-function]

Re: [alsa-devel] [Patch v6 1/7] slimbus: Device management on SLIMbus

2017-10-10 Thread Vinod Koul
On Fri, Oct 06, 2017 at 05:51:30PM +0200, srinivas.kandaga...@linaro.org wrote: > From: Sagar Dharia > > SLIMbus (Serial Low Power Interchip Media Bus) is a specification > developed by MIPI (Mobile Industry Processor Interface) alliance. > SLIMbus is a 2-wire implementation, which is used to com

Re: [PATCH v4 01/12] mmc: dt-bindings: Add reg/source_cg/latch-ck for Mediatek MMC bindings

2017-10-10 Thread Ulf Hansson
On 10 October 2017 at 11:30, Chaotian Jing wrote: > Change the comptiable for support of multi-platform > Make compatible explicit > Add description for reg > Add description for source_cg > Add description for mediatek,latch-ck > Note that source_cg and mediatek,latch-ck are optional for some pro

[PATCH] btrfs: use appropriate replacements for __sb_{start,end}_write calls

2017-10-10 Thread Rakesh Pandit
Commit a53f4f8e9c8eb ("btrfs: Don't call btrfs_start_transaction() on frozen fs to avoid deadlock.") started using internal calls and we replace them with more suitable ones. Signed-off-by: Rakesh Pandit --- fs/btrfs/super.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a

Re: [PATCH v4 03/12] arm64: dts: mt8173: remove "mediatek,mt8135-mmc" from mmc nodes

2017-10-10 Thread Ulf Hansson
On 10 October 2017 at 11:30, Chaotian Jing wrote: > devicetree bindings has been updated to support multi-platforms, > so that each platform has its owns compatible name. > And, this compatible name may used in driver to distinguish with > other platform. > > Signed-off-by: Chaotian Jing I assum

[tip:perf/urgent] perf/core: Avoid freeing static PMU contexts when PMU is unregistered

2017-10-10 Thread tip-bot for Will Deacon
Commit-ID: df0062b27ebf473b372914a3e3574d93790e2b72 Gitweb: https://git.kernel.org/tip/df0062b27ebf473b372914a3e3574d93790e2b72 Author: Will Deacon AuthorDate: Tue, 3 Oct 2017 15:20:50 +0100 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 10:06:54 +0200 perf/core: Avoid freeing sta

[PATCH] KVM: SVM: unconditionally wake up VCPU on IOMMU interrupt

2017-10-10 Thread Paolo Bonzini
Checking the mode is unnecessary, and is done without a memory barrier separating the LAPIC write from the vcpu->mode read; in addition, kvm_vcpu_wake_up is already doing a check for waiters on the wait queue that has the same effect. In practice it's safe because spin_lock has full-barrier semant

[tip:perf/urgent] perf/core: Fix cgroup time when scheduling descendants

2017-10-10 Thread tip-bot for leilei.lin
Commit-ID: e6a5203399d19871021c1fa0eb2a08fc63b67e91 Gitweb: https://git.kernel.org/tip/e6a5203399d19871021c1fa0eb2a08fc63b67e91 Author: leilei.lin AuthorDate: Fri, 29 Sep 2017 13:54:44 +0800 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 10:06:55 +0200 perf/core: Fix cgroup time w

Re: [PATCH] mmc: sdhci-msm: fix x86 build error

2017-10-10 Thread Ulf Hansson
On 10 October 2017 at 11:14, Arnd Bergmann wrote: > The __WARN_printf() function is not portable across architectures > and causes a compile-time error on x86 and others that don't use > the asm-generic version of asm/bug.h: > > drivers/mmc/host/sdhci-msm.c: In function 'sdhci_msm_check_power_stat

Re: [PATCH v15 6/7] drm/i915: Introduce GEM proxy

2017-10-10 Thread Joonas Lahtinen
On Tue, 2017-10-10 at 17:50 +0800, Tina Zhang wrote: > GEM proxy is a kind of GEM, whose backing physical memory is pinned > and produced by guest VM and is used by host as read only. With GEM > proxy, host is able to access guest physical memory through GEM object > interface. As GEM proxy is such

[tip:sched/core] sched/debug: Rename task-state printing helpers

2017-10-10 Thread tip-bot for Peter Zijlstra
Commit-ID: 1d48b080bcce0a5e7d7aa2dbcdb35deefc188c3f Gitweb: https://git.kernel.org/tip/1d48b080bcce0a5e7d7aa2dbcdb35deefc188c3f Author: Peter Zijlstra AuthorDate: Fri, 29 Sep 2017 13:50:16 +0200 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:43:29 +0200 sched/debug: Rename task

[PATCH] vmalloc: back off only when the current task is OOM killed

2017-10-10 Thread Tetsuo Handa
Commit 5d17a73a2ebeb8d1 ("vmalloc: back off when the current task is killed") revealed two bugs [1] [2] that were not ready to fail vmalloc() upon SIGKILL. But since the intent of that commit was to avoid unlimited access to memory reserves, we should have checked tsk_is_oom_victim() rather than fa

[tip:sched/core] sched/headers: Remove duplicate prototype of __dl_clear_params()

2017-10-10 Thread tip-bot for luca abeni
Commit-ID: e964d3501b64d6930aaa4dd18955a8cd086ccb92 Gitweb: https://git.kernel.org/tip/e964d3501b64d6930aaa4dd18955a8cd086ccb92 Author: luca abeni AuthorDate: Thu, 7 Sep 2017 12:09:28 +0200 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:43:30 +0200 sched/headers: Remove duplica

Re: [PATCH 1/1] sched/cputime: do not decrease steal time after live migration on xen

2017-10-10 Thread Ingo Molnar
(Cc:-ed more gents involved in kernel/sched/cputime.c work. Full patch quoted below.) * Dongli Zhang wrote: > After guest live migration on xen, steal time in /proc/stat > (cpustat[CPUTIME_STEAL]) might decrease because steal returned by > paravirt_steal_clock() might be less than this_rq()->p

[tip:sched/core] sched/deadline: Fix switching to -deadline

2017-10-10 Thread tip-bot for Luca Abeni
Commit-ID: 295d6d5e373607729bcc8182c25afe964655714f Gitweb: https://git.kernel.org/tip/295d6d5e373607729bcc8182c25afe964655714f Author: Luca Abeni AuthorDate: Thu, 7 Sep 2017 12:09:29 +0200 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:43:30 +0200 sched/deadline: Fix switching

Re: [PATCH v2 14/16] gpio: Add support for banked GPIO controllers

2017-10-10 Thread Thierry Reding
On Mon, Oct 09, 2017 at 04:52:21PM -0500, Grygorii Strashko wrote: > > > On 09/28/2017 04:56 AM, Thierry Reding wrote: > > From: Thierry Reding > > > > Some GPIO controllers are subdivided into multiple logical blocks called > > banks (or ports). This is often caused by the design assigning sep

Re: [PATCH] btrfs: use appropriate replacements for __sb_{start,end}_write calls

2017-10-10 Thread Nikolay Borisov
On 10.10.2017 13:48, Rakesh Pandit wrote: > Commit a53f4f8e9c8eb ("btrfs: Don't call btrfs_start_transaction() on > frozen fs to avoid deadlock.") started using internal calls and we > replace them with more suitable ones. > > Signed-off-by: Rakesh Pandit > --- > fs/btrfs/super.c | 4 ++-- > 1

[tip:sched/core] sched/deadline: Rename __dl_clear() to __dl_sub()

2017-10-10 Thread tip-bot for Peter Zijlstra
Commit-ID: 8c0944cee7af55291df0b28e6e2eeac0930e93c9 Gitweb: https://git.kernel.org/tip/8c0944cee7af55291df0b28e6e2eeac0930e93c9 Author: Peter Zijlstra AuthorDate: Thu, 7 Sep 2017 12:09:30 +0200 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:26 +0200 sched/deadline: Rename __

[tip:sched/core] sched/deadline: Use C bitfields for the state flags

2017-10-10 Thread tip-bot for luca abeni
Commit-ID: 799ba82de01e7543f6b2042e1a739f3a20255f23 Gitweb: https://git.kernel.org/tip/799ba82de01e7543f6b2042e1a739f3a20255f23 Author: luca abeni AuthorDate: Thu, 7 Sep 2017 12:09:31 +0200 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:26 +0200 sched/deadline: Use C bitfiel

[tip:sched/core] sched/topology: Introduce NUMA identity node sched domain

2017-10-10 Thread tip-bot for Suravee Suthikulpanit
Commit-ID: 051f3ca02e46432c0965e8948f00c07d8a2f09c0 Gitweb: https://git.kernel.org/tip/051f3ca02e46432c0965e8948f00c07d8a2f09c0 Author: Suravee Suthikulpanit AuthorDate: Thu, 7 Sep 2017 02:20:05 -0500 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:28 +0200 sched/topology: In

Re: [PATCH v5 03/10] kexec_file: factor out arch_kexec_kernel_*() from x86, powerpc

2017-10-10 Thread Julien Thierry
Hi Takahiro, On 10/10/17 07:36, AKASHI Takahiro wrote: arch_kexec_kernel_*() and arch_kimage_file_post_load_cleanup can now be duplicated among some architectures, so let's factor them out. Signed-off-by: AKASHI Takahiro Cc: Dave Young Cc: Vivek Goyal Cc: Baoquan He Cc: Michael Ellerman Cc

[tip:sched/core] sched/fair: Force balancing on NOHZ balance if local group has capacity

2017-10-10 Thread tip-bot for Brendan Jackman
Commit-ID: 583ffd99d7657755736d831bbc182612d1d2697d Gitweb: https://git.kernel.org/tip/583ffd99d7657755736d831bbc182612d1d2697d Author: Brendan Jackman AuthorDate: Thu, 5 Oct 2017 11:58:54 +0100 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:32 +0200 sched/fair: Force balanc

Re: [PATCH] btrfs: use appropriate replacements for __sb_{start,end}_write calls

2017-10-10 Thread Rakesh Pandit
On Tue, Oct 10, 2017 at 02:00:20PM +0300, Nikolay Borisov wrote: > > > On 10.10.2017 13:48, Rakesh Pandit wrote: > > Commit a53f4f8e9c8eb ("btrfs: Don't call btrfs_start_transaction() on > > frozen fs to avoid deadlock.") started using internal calls and we > > replace them with more suitable one

[tip:sched/core] sched/fair: Sync task util before slow-path wakeup

2017-10-10 Thread tip-bot for Brendan Jackman
Commit-ID: ea16f0ea6c3dc9e1aa083bd3d1792ba02860526e Gitweb: https://git.kernel.org/tip/ea16f0ea6c3dc9e1aa083bd3d1792ba02860526e Author: Brendan Jackman AuthorDate: Thu, 5 Oct 2017 11:55:51 +0100 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:31 +0200 sched/fair: Sync task ut

Re: [PATCH v6 13/14] platform/x86: wmi: create character devices when requested by drivers

2017-10-10 Thread Greg KH
On Mon, Oct 09, 2017 at 05:51:51PM -0500, Mario Limonciello wrote: > +static long wmi_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) > +{ > + struct wmi_driver *wdriver = NULL; > + struct wmi_block *wblock = NULL; > + const char *driver_name; > + struct list_head *p;

Re: [PATCH] arm64: dts: rockchip: enable touchpad button for rk3399-gru-kevin

2017-10-10 Thread Emil Renner Berthing
On 10 October 2017 at 11:33, Heiko Stuebner wrote: > Am Montag, 9. Oktober 2017, 20:40:28 CEST schrieb Emil Renner Berthing: >> Adding the linux,gpio-keymap entry also has >> the side-effect of making the driver register >> the touchpad as a touchpad rather than another >> touchscreen. >> >> The i

[tip:sched/core] sched/fair: Remove unnecessary comparison with -1

2017-10-10 Thread tip-bot for Brendan Jackman
Commit-ID: e90381eaecf6d59c60fe396838e0e99789531419 Gitweb: https://git.kernel.org/tip/e90381eaecf6d59c60fe396838e0e99789531419 Author: Brendan Jackman AuthorDate: Thu, 5 Oct 2017 12:45:13 +0100 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:34 +0200 sched/fair: Remove unnec

[tip:sched/core] sched/fair: Move select_task_rq_fair() slow-path into its own function

2017-10-10 Thread tip-bot for Brendan Jackman
Commit-ID: 18bd1b4bd53aba81d76d55e91a68310a227dc187 Gitweb: https://git.kernel.org/tip/18bd1b4bd53aba81d76d55e91a68310a227dc187 Author: Brendan Jackman AuthorDate: Thu, 5 Oct 2017 12:45:12 +0100 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:33 +0200 sched/fair: Move select_

[tip:sched/core] sched/rt: Add a helper to test for a RT task

2017-10-10 Thread tip-bot for Sebastian Andrzej Siewior
Commit-ID: ff0d4a9dc16b1f4c954f6407c233ab848bdfe8b0 Gitweb: https://git.kernel.org/tip/ff0d4a9dc16b1f4c954f6407c233ab848bdfe8b0 Author: Sebastian Andrzej Siewior AuthorDate: Wed, 4 Oct 2017 17:49:00 +0200 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:38 +0200 sched/rt: Add

[tip:sched/core] sched/fair: Search a task from the tail of the queue

2017-10-10 Thread tip-bot for Uladzislau Rezki
Commit-ID: 93824900a2e242766f5fe6ae7697e3d7171aa234 Gitweb: https://git.kernel.org/tip/93824900a2e242766f5fe6ae7697e3d7171aa234 Author: Uladzislau Rezki AuthorDate: Wed, 13 Sep 2017 12:24:30 +0200 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:30 +0200 sched/fair: Search a t

[tip:sched/core] block/ioprio: Use a helper to check for RT prio

2017-10-10 Thread tip-bot for Sebastian Andrzej Siewior
Commit-ID: 36436440cd19f59f5be12a1b181d299af2725140 Gitweb: https://git.kernel.org/tip/36436440cd19f59f5be12a1b181d299af2725140 Author: Sebastian Andrzej Siewior AuthorDate: Wed, 4 Oct 2017 17:49:01 +0200 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:39 +0200 block/ioprio:

[tip:sched/core] sched/fair: Fix find_idlest_group() when local group is not allowed

2017-10-10 Thread tip-bot for Brendan Jackman
Commit-ID: 0d10ab952e99f3e9f374898e93f45452b81e5711 Gitweb: https://git.kernel.org/tip/0d10ab952e99f3e9f374898e93f45452b81e5711 Author: Brendan Jackman AuthorDate: Thu, 5 Oct 2017 12:45:14 +0100 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:34 +0200 sched/fair: Fix find_idl

[tip:sched/core] sched/fair: Fix usage of find_idlest_group() when the local group is idlest

2017-10-10 Thread tip-bot for Brendan Jackman
Commit-ID: 93f50f90247e3e926bbe9830df089c64a5cec236 Gitweb: https://git.kernel.org/tip/93f50f90247e3e926bbe9830df089c64a5cec236 Author: Brendan Jackman AuthorDate: Thu, 5 Oct 2017 12:45:16 +0100 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:36 +0200 sched/fair: Fix usage of

[tip:sched/core] sched/fair: Fix usage of find_idlest_group() when no groups are allowed

2017-10-10 Thread tip-bot for Brendan Jackman
Commit-ID: 6fee85ccbc76e8aeba43dc120c5fa3c5409a4e2c Gitweb: https://git.kernel.org/tip/6fee85ccbc76e8aeba43dc120c5fa3c5409a4e2c Author: Brendan Jackman AuthorDate: Thu, 5 Oct 2017 12:45:15 +0100 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:35 +0200 sched/fair: Fix usage of

Re: [PATCH v3 17/22][UPDATE] firmware: arm_scmi: add device power domain support genpd

2017-10-10 Thread Ulf Hansson
On 29 September 2017 at 15:42, Sudeep Holla wrote: > This patch hooks up the support for device power domain provided by > SCMI using the Linux generic power domain infrastructure. > > Cc: Kevin Hilman > Cc: Ulf Hansson > Signed-off-by: Sudeep Holla > --- > drivers/firmware/Kconfig

Re: [PATCH v6 13/14] platform/x86: wmi: create character devices when requested by drivers

2017-10-10 Thread Greg KH
On Mon, Oct 09, 2017 at 05:51:51PM -0500, Mario Limonciello wrote: > --- /dev/null > +++ b/include/uapi/linux/wmi.h > @@ -0,0 +1,19 @@ > +/* > + * User API methods for ACPI-WMI mapping driver > + * > + * Copyright (C) 2017 Dell, Inc. > + * > + * This program is free software; you can redistribut

[tip:sched/core] sched/rt: Simplify the IPI based RT balancing logic

2017-10-10 Thread tip-bot for Steven Rostedt (Red Hat)
Commit-ID: 4bdced5c9a2922521e325896a7bbbf0132c94e56 Gitweb: https://git.kernel.org/tip/4bdced5c9a2922521e325896a7bbbf0132c94e56 Author: Steven Rostedt (Red Hat) AuthorDate: Fri, 6 Oct 2017 14:05:04 -0400 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:40 +0200 sched/rt: Simpl

Re: [PATCH v4 03/12] arm64: dts: mt8173: remove "mediatek,mt8135-mmc" from mmc nodes

2017-10-10 Thread Matthias Brugger
On 10/10/2017 12:49 PM, Ulf Hansson wrote: On 10 October 2017 at 11:30, Chaotian Jing wrote: devicetree bindings has been updated to support multi-platforms, so that each platform has its owns compatible name. And, this compatible name may used in driver to distinguish with other platform. S

[tip:locking/core] locking/paravirt: Use new static key for controlling call of virt_spin_lock()

2017-10-10 Thread tip-bot for Juergen Gross
Commit-ID: 9043442b43b1fddf202591b84702863286700c1a Gitweb: https://git.kernel.org/tip/9043442b43b1fddf202591b84702863286700c1a Author: Juergen Gross AuthorDate: Wed, 6 Sep 2017 19:36:24 +0200 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:50:12 +0200 locking/paravirt: Use new

Re: [PATCH v5 03/10] kexec_file: factor out arch_kexec_kernel_*() from x86, powerpc

2017-10-10 Thread Julien Thierry
Hi Takahiro, Sorry about the previous message, confidential disclaimer shouldn't have been there. Resending comments without disclaimer to avoid confusion. On 10/10/17 07:36, AKASHI Takahiro wrote: arch_kexec_kernel_*() and arch_kimage_file_post_load_cleanup can now be duplicated among some

[tip:locking/core] locking/spinlocks, paravirt, xen: Correct the xen_nopvspin case

2017-10-10 Thread tip-bot for Juergen Gross
Commit-ID: e6fd28eb3522b31f79a938e24674f77268a120fd Gitweb: https://git.kernel.org/tip/e6fd28eb3522b31f79a938e24674f77268a120fd Author: Juergen Gross AuthorDate: Wed, 6 Sep 2017 19:36:25 +0200 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:50:13 +0200 locking/spinlocks, paravir

[tip:sched/core] x86/tsc: Append the 'tsc=' description for the 'tsc=unstable' boot parameter

2017-10-10 Thread tip-bot for Dou Liyang
Commit-ID: 6be53520ad8f87dc748f381e4e8e6a846a4b466b Gitweb: https://git.kernel.org/tip/6be53520ad8f87dc748f381e4e8e6a846a4b466b Author: Dou Liyang AuthorDate: Mon, 9 Oct 2017 17:03:33 +0800 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:45:42 +0200 x86/tsc: Append the 'tsc=' de

[tip:locking/core] locking/arch, ia64: Add __down_read_killable()

2017-10-10 Thread tip-bot for Kirill Tkhai
Commit-ID: c0905115a55c8a3011d7b7e6ee5d63653c1e99f1 Gitweb: https://git.kernel.org/tip/c0905115a55c8a3011d7b7e6ee5d63653c1e99f1 Author: Kirill Tkhai AuthorDate: Fri, 29 Sep 2017 19:06:07 +0300 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:50:14 +0200 locking/arch, ia64: Add __

[tip:locking/core] locking/arch, alpha: Add __down_read_killable()

2017-10-10 Thread tip-bot for Kirill Tkhai
Commit-ID: 8c74392a8db9f19f7b2d07f3bb7c5accb4cb4702 Gitweb: https://git.kernel.org/tip/8c74392a8db9f19f7b2d07f3bb7c5accb4cb4702 Author: Kirill Tkhai AuthorDate: Fri, 29 Sep 2017 19:05:56 +0300 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:50:14 +0200 locking/arch, alpha: Add _

Re: [PATCH] btrfs: use appropriate replacements for __sb_{start,end}_write calls

2017-10-10 Thread Nikolay Borisov
On 10.10.2017 13:48, Rakesh Pandit wrote: > Commit a53f4f8e9c8eb ("btrfs: Don't call btrfs_start_transaction() on > frozen fs to avoid deadlock.") started using internal calls and we > replace them with more suitable ones. > > Signed-off-by: Rakesh Pandit > --- > fs/btrfs/super.c | 4 ++-- > 1

[tip:locking/core] locking/arch, s390: Add __down_read_killable()

2017-10-10 Thread tip-bot for Kirill Tkhai
Commit-ID: a61ba2c8a48f150f5e6b6d14328fc7f1aa32969d Gitweb: https://git.kernel.org/tip/a61ba2c8a48f150f5e6b6d14328fc7f1aa32969d Author: Kirill Tkhai AuthorDate: Fri, 29 Sep 2017 19:06:18 +0300 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:50:15 +0200 locking/arch, s390: Add __

Re: [PATCH v16 3/5] virtio-balloon: VIRTIO_BALLOON_F_SG

2017-10-10 Thread Tetsuo Handa
Wei Wang wrote: > On 10/09/2017 11:20 PM, Michael S. Tsirkin wrote: > > On Sat, Sep 30, 2017 at 12:05:52PM +0800, Wei Wang wrote: > >> +static inline void xb_set_page(struct virtio_balloon *vb, > >> + struct page *page, > >> + unsigned long *pfn_min,

[tip:locking/core] locking/arch, x86: Add __down_read_killable()

2017-10-10 Thread tip-bot for Kirill Tkhai
Commit-ID: 19c60923010b3f56f10ca1fb6d537c9cc852b3f1 Gitweb: https://git.kernel.org/tip/19c60923010b3f56f10ca1fb6d537c9cc852b3f1 Author: Kirill Tkhai AuthorDate: Fri, 29 Sep 2017 19:06:28 +0300 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:50:15 +0200 locking/arch, x86: Add __d

[tip:locking/core] locking/rwsem: Add down_read_killable()

2017-10-10 Thread tip-bot for Kirill Tkhai
Commit-ID: 76f8507f7a6442215df19de74f07eabca2462f1e Gitweb: https://git.kernel.org/tip/76f8507f7a6442215df19de74f07eabca2462f1e Author: Kirill Tkhai AuthorDate: Fri, 29 Sep 2017 19:06:38 +0300 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:50:16 +0200 locking/rwsem: Add down_re

[tip:locking/core] locking/rwsem, fs: Use killable down_read() in iterate_dir()

2017-10-10 Thread tip-bot for Kirill Tkhai
Commit-ID: 0dc208b5d5feedc795cbf124539decd182c8e99e Gitweb: https://git.kernel.org/tip/0dc208b5d5feedc795cbf124539decd182c8e99e Author: Kirill Tkhai AuthorDate: Fri, 29 Sep 2017 19:06:48 +0300 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:50:16 +0200 locking/rwsem, fs: Use kil

[tip:locking/core] locking/core: Remove {read,spin,write}_can_lock()

2017-10-10 Thread tip-bot for Will Deacon
Commit-ID: a8a217c22116eff6c120d753c9934089fb229af0 Gitweb: https://git.kernel.org/tip/a8a217c22116eff6c120d753c9934089fb229af0 Author: Will Deacon AuthorDate: Tue, 3 Oct 2017 19:25:27 +0100 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:50:18 +0200 locking/core: Remove {read,s

[tip:locking/core] locking/rwsem, security/apparmor: Replace homebrew use of write_can_lock() with lockdep

2017-10-10 Thread tip-bot for Will Deacon
Commit-ID: 26c4eb192c6224e5297496cead36404b62fb071b Gitweb: https://git.kernel.org/tip/26c4eb192c6224e5297496cead36404b62fb071b Author: Will Deacon AuthorDate: Tue, 3 Oct 2017 19:25:26 +0100 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:50:17 +0200 locking/rwsem, security/appa

Re: [PATCH v4 03/12] arm64: dts: mt8173: remove "mediatek,mt8135-mmc" from mmc nodes

2017-10-10 Thread Ulf Hansson
On 10 October 2017 at 13:06, Matthias Brugger wrote: > > > On 10/10/2017 12:49 PM, Ulf Hansson wrote: >> >> On 10 October 2017 at 11:30, Chaotian Jing >> wrote: >>> >>> devicetree bindings has been updated to support multi-platforms, >>> so that each platform has its owns compatible name. >>> And

[tip:locking/core] locking/arch: Remove dummy arch_{read,spin,write}_relax() implementations

2017-10-10 Thread tip-bot for Will Deacon
Commit-ID: 0160fb177d484367e041ac251fca591a3e49660c Gitweb: https://git.kernel.org/tip/0160fb177d484367e041ac251fca591a3e49660c Author: Will Deacon AuthorDate: Tue, 3 Oct 2017 19:25:28 +0100 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:50:18 +0200 locking/arch: Remove dummy a

[tip:locking/core] locking/arch: Remove dummy arch_{read,spin,write}_lock_flags() implementations

2017-10-10 Thread tip-bot for Will Deacon
Commit-ID: a4c1887d4c1462b0ec5a8989f8ba3cdd9057a299 Gitweb: https://git.kernel.org/tip/a4c1887d4c1462b0ec5a8989f8ba3cdd9057a299 Author: Will Deacon AuthorDate: Tue, 3 Oct 2017 19:25:29 +0100 Committer: Ingo Molnar CommitDate: Tue, 10 Oct 2017 11:50:19 +0200 locking/arch: Remove dummy a

Re: [PATCH 2/2] ata: ahci_sunxi: add support for R40 SATA controller

2017-10-10 Thread Maxime Ripard
On Sun, Oct 08, 2017 at 04:35:41AM +, Icenowy Zheng wrote: > Allwinner R40 SoC has an AHCI SATA controller like the one in A10/A20, > but with a reset control and two dedicated VDD pins for this controller > (one 1.2v and one 2.5v). > > Add support for it. > > Signed-off-by: Icenowy Zheng >

Re: [PATCH v3 03/22] dt-bindings: arm: scmi: add ARM MHU specific mailbox client bindings

2017-10-10 Thread Sudeep Holla
On 09/10/17 23:57, Rob Herring wrote: > On Mon, Oct 9, 2017 at 9:46 AM, Jassi Brar wrote: >> On Mon, Oct 9, 2017 at 7:22 PM, Rob Herring wrote: >>> On Fri, Oct 6, 2017 at 9:26 PM, Jassi Brar wrote: On Fri, Oct 6, 2017 at 9:24 PM, Rob Herring wrote: > On Fri, Oct 6, 2017 at 6:01 AM, J

Re: [PATCH v4 03/12] arm64: dts: mt8173: remove "mediatek,mt8135-mmc" from mmc nodes

2017-10-10 Thread Matthias Brugger
On 10/10/2017 01:10 PM, Ulf Hansson wrote: On 10 October 2017 at 13:06, Matthias Brugger wrote: On 10/10/2017 12:49 PM, Ulf Hansson wrote: On 10 October 2017 at 11:30, Chaotian Jing wrote: devicetree bindings has been updated to support multi-platforms, so that each platform has its ow

Re: [linux-sunxi] Re: [PATCH 3/6] ARM: sun8i: r40: add 5V regulator for Banana Pi M2 Ultra

2017-10-10 Thread Maxime Ripard
On Tue, Oct 10, 2017 at 02:25:35AM +, Chen-Yu Tsai wrote: > On Tue, Oct 10, 2017 at 7:25 AM, Icenowy Zheng wrote: > > > > > > 于 2017年10月10日 GMT+08:00 上午5:04:07, Maxime Ripard > > 写到: > >>On Sun, Oct 08, 2017 at 04:29:03AM +, Icenowy Zheng wrote: > >>> On newer revisions of the Banana Pi

Re: [PATCH 1/2] dt-bindings: add binding for Allwinner R40 SATA AHCI controller

2017-10-10 Thread Maxime Ripard
On Sun, Oct 08, 2017 at 04:35:40AM +, Icenowy Zheng wrote: > The Allwinner R40 SoC contains a SATA AHCI controller like the one in > A10/A20 SoCs, however a reset control and two power supplies are added > to it. > > Add a binding document for it. > > As a dedicated binding document is needed

[PATCH] KVM: X86: clear page flags when freeing kvm mmapping page

2017-10-10 Thread Peng Hao
When freeing mmapped kvm_run several pages, the pages will have page flags PG_dirty and PG_referenced. It will result to bad page report when allocating pages. I just encounter once like this; BUG: Bad page state in process qemu-system-x86 pfn:81fc5d page:ea00207f1740 count:0 mapcount:0 mappin

Re: null dereference in binfmt misc

2017-10-10 Thread Oleg Nesterov
On 10/09, Tycho Andersen wrote: > Hi, > > It looks like eb23aa031 ("exec: binfmt_misc: remove the confusing > e->interp_file != NULL checks") uncovered a bug for me (see the trace below, > which I'm afraid isn't very helpful). Well, I think this commit uncovered the fact I am stupid, although ther

Re: usb/sound: use-after-free in snd_usb_mixer_interrupt

2017-10-10 Thread Andrey Konovalov
On Tue, Oct 10, 2017 at 12:10 AM, Takashi Iwai wrote: > On Mon, 09 Oct 2017 19:50:39 +0200, > Andrey Konovalov wrote: >> >> Hi! >> >> I've got the following report while fuzzing the kernel with syzkaller. >> >> On commit 8a5776a5f49812d29fe4b2d0a2d71675c3facf3f (4.14-rc4). >> >> gadgetfs: bound to

Re: [PATCH] jbd2: Convert timers to use timer_setup()

2017-10-10 Thread Jan Kara
On Wed 04-10-17 17:48:46, Kees Cook wrote: > In preparation for unconditionally passing the struct timer_list pointer to > all timer callbacks, switch to using the new timer_setup() and from_timer() > to pass the timer pointer explicitly. > > Cc: "Theodore Ts'o" > Cc: Jan Kara > Cc: linux-e...@v

Re: [PATCH] chacha20-ssse3/avx2: satisfy stack validation 2.0

2017-10-10 Thread Jason A. Donenfeld
Hi Herbert, Can we get this reviewed for rc5 please? Thanks, Jason

Re: [PATCH] fs/ncpfs: Convert timers to use timer_setup()

2017-10-10 Thread Jan Kara
On Wed 04-10-17 17:52:50, Kees Cook wrote: > In preparation for unconditionally passing the struct timer_list pointer to > all timer callbacks, switch to using the new timer_setup() and from_timer() > to pass the timer pointer explicitly. > > Cc: Petr Vandrovec > Cc: Jan Kara > Cc: Jens Axboe >

Re: [PATCH v2] HID: usbhid: fix out-of-bounds bug

2017-10-10 Thread Andrey Konovalov
On Tue, Oct 10, 2017 at 9:25 AM, Jaejoong Kim wrote: > Hi, > > To. Jiri, Alan, > > Could you please review this patch? > > To. Andey, > > Could you please test with this patch for KASAN OOB error? Hi! Yes, your patch fixes the issue. Thanks! Tested-by: Andrey Konovalov > > Thanks, jaejoong >

Re: [PATCH] media: imon: Fix null-ptr-deref in imon_probe

2017-10-10 Thread Andrey Konovalov
On Mon, Oct 9, 2017 at 8:14 PM, Arvind Yadav wrote: > It seems that the return value of usb_ifnum_to_if() can be NULL and > needs to be checked. Hi Arvind, Your patch fixes the issue. Thanks! Tested-by: Andrey Konovalov > > Signed-off-by: Arvind Yadav > --- > This bug report by Andrey Konov

Re: [PATCH v2 00/16] gpio: Tight IRQ chip integration and banked infrastructure

2017-10-10 Thread Thierry Reding
On Mon, Oct 09, 2017 at 04:56:57PM -0500, Grygorii Strashko wrote: > > > On 10/06/2017 06:07 AM, Thierry Reding wrote: > > On Thu, Sep 28, 2017 at 09:22:17AM -0500, Grygorii Strashko wrote: > >> > >> > >> On 09/28/2017 04:56 AM, Thierry Reding wrote: > >>> From: Thierry Reding > >>> > >>> Hi Lin

Re: [PATCH] firmware: bluefield: add boot control driver

2017-10-10 Thread Ard Biesheuvel
On 10 October 2017 at 11:23, Mark Rutland wrote: > On Tue, Oct 10, 2017 at 11:15:39AM +0100, Sudeep Holla wrote: >> (+Mark, Grant) >> >> On 09/10/17 18:16, Chris Metcalf wrote: >> > The Mellanox BlueField SoC firmware supports a safe upgrade mode as >> > part of the flow where users put new firmwa

Re: [PATCH] perf/ftrace : Fix repetitious traces when specify a target task

2017-10-10 Thread Peter Zijlstra
On Tue, Oct 10, 2017 at 09:19:39AM +0800, Cheng Jian wrote: > diff --git a/kernel/events/core.c b/kernel/events/core.c > index baa134c..5682ead 100644 > --- a/kernel/events/core.c > +++ b/kernel/events/core.c > @@ -7988,12 +7988,16 @@ void perf_tp_event(u16 event_type, u64 count, void > *record, i

[PATCH] kbuild: remove KBUILD_SUBDIR_ASFLAGS and KBUILD_SUBDIR_CCFLAGS

2017-10-10 Thread Masahiro Yamada
Accumulate subdir-{cc,as}flags-y directly to KBUILD_{A,C}FLAGS. Remove KBUILD_SUBDIR_{AS,CC}FLAGS. Signed-off-by: Masahiro Yamada --- scripts/Makefile.lib | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 9bbb019..bc63f

<    1   2   3   4   5   6   7   8   9   10   >