Re: [PATCH v5] PCI: Check for PCIe downtraining conditions

2018-08-05 Thread Tal Gilboa
On 7/31/2018 6:10 PM, Alex G. wrote: On 07/31/2018 01:40 AM, Tal Gilboa wrote: [snip] @@ -2240,6 +2258,9 @@ static void pci_init_capabilities(struct pci_dev *dev)   /* Advanced Error Reporting */   pci_aer_init(dev); +    /* Check link and detect downtrain errors */ +    pcie_check_upst

[PATCH v4 2/2] mmc: host: iproc: Add ACPI support to IPROC SDHCI

2018-08-05 Thread Srinath Mannam
Add ACPI support to all IPROC SDHCI varients Signed-off-by: Srinath Mannam Reviewed-by: Ray Jui Reviewed-by: Scott Branden Reviewed-by: Vladimir Olovyannikov --- drivers/mmc/host/Kconfig | 1 + drivers/mmc/host/sdhci-iproc.c | 59 -- 2 files chan

[PATCH v4 1/2] mmc: sdhci-pltfm: Convert DT properties to generic device properties

2018-08-05 Thread Srinath Mannam
From: Adrian Hunter Convert DT properties to generic device properties so that drivers can get properties from DT or ACPI. Signed-off-by: Adrian Hunter Tested-by: Srinath Mannam --- drivers/mmc/host/sdhci-pltfm.c | 68 +- drivers/mmc/host/sdhci-pltfm.h

[PATCH v4 0/2] Add ACPI support to IPROC SDHCI

2018-08-05 Thread Srinath Mannam
This patch series adds - Feature to get generic device properties in the place of DT properties. - ACPI support to IPROC SDHCI varients This patch series is based off v4.18-rc3 Changes from v3: - Replaced separate device tree and ACPI get match data APIs with single device_get_match

Re: WARNING in try_charge

2018-08-05 Thread syzbot
syzbot has found a reproducer for the following crash on: HEAD commit:116b181bb646 Add linux-next specific files for 20180803 git tree: linux-next console output: https://syzkaller.appspot.com/x/log.txt?x=15f87bfc40 kernel config: https://syzkaller.appspot.com/x/.config?x=b4f38be7c

Re: [PATCH v2 15/18] serial: intel: Support more platform

2018-08-05 Thread Christoph Hellwig
The subject line also seems odd, your are changing deps on the lantiq driver, not some (nonexistent) intel serial driver.

Re: [PATCH v2 1/2] Support the nonstring variable attribute (gcc >= 8)

2018-08-05 Thread Miguel Ojeda
On Sun, Aug 5, 2018 at 3:38 AM, Joe Perches wrote: > On Wed, 2018-08-01 at 19:54 +0200, Miguel Ojeda wrote: >> From the GCC manual: >> >> The nonstring variable attribute specifies that an object or member >> declaration with type array of char or pointer to char is intended to >> store character

Re: [PATCH v2 1/2] Support the nonstring variable attribute (gcc >= 8)

2018-08-05 Thread Miguel Ojeda
On Sun, Aug 5, 2018 at 11:14 AM, Miguel Ojeda wrote: > On Sun, Aug 5, 2018 at 3:38 AM, Joe Perches wrote: >> On Wed, 2018-08-01 at 19:54 +0200, Miguel Ojeda wrote: >>> From the GCC manual: >>> >>> The nonstring variable attribute specifies that an object or member >>> declaration with type array

Re: [PATCH] PM / hibernate: Mark expected switch fall-through

2018-08-05 Thread Pavel Machek
On Sat 2018-08-04 21:12:00, Gustavo A. R. Silva wrote: > In preparation to enabling -Wimplicit-fallthrough, mark switch cases > where we are expecting to fall through. > > Addresses-Coverity-ID: 114713 ("Missing break in switch") > Signed-off-by: Gustavo A. R. Silva Acked-by: Pavel Machek --

Re: [PATCH] platform/x86: acer-wmi: use true and false for boolean values

2018-08-05 Thread Andy Shevchenko
On Sun, Aug 5, 2018 at 3:18 AM, Gustavo A. R. Silva wrote: > Return statements in functions returning bool should use true or false > instead of an integer value. > > This code was detected with the help of Coccinelle. > static bool has_cap(u32 cap) > { > if ((interface->capability & ca

RE: [PATCH 2/3] mei: Migrate to pci_alloc_irq_vectors API

2018-08-05 Thread Winkler, Tomas
> > Update the driver to the pci_alloc_irq_vectors API, this allows to get rid of > legacy calls like pci_enable_msi(). Another benefit is that no driver change > would be needed in case the hardware starts supporting MSI-X. > > Signed-off-by: Heiner Kallweit Sorry, we are losing the ONE_SHOT f

Re: [PATCH 2/3] mei: Migrate to pci_alloc_irq_vectors API

2018-08-05 Thread Heiner Kallweit
On 05.08.2018 13:02, Winkler, Tomas wrote: >> >> Update the driver to the pci_alloc_irq_vectors API, this allows to get rid of >> legacy calls like pci_enable_msi(). Another benefit is that no driver change >> would be needed in case the hardware starts supporting MSI-X. >> >> Signed-off-by: Heiner

[GIT pull] irq fixes for 4.18

2018-08-05 Thread Thomas Gleixner
Linus, please pull the latest irq-urgent-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq-urgent-for-linus A single bugfix for the irq core to prevent silent data corruption and malfunction of threaded interrupts under certain conditions. Thanks,

[GIT pull] perf fixes for 4.18

2018-08-05 Thread Thomas Gleixner
Linus, please pull the latest perf-urgent-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf-urgent-for-linus A set of fixes for perf: drivers: - Fix the hardcoded index of extra PCI devices on Broadwell which causes a resource conflict and trigg

[PATCH v2] Staging: rtlwifi: base: Modified the line ending with a parenthesis

2018-08-05 Thread Sohil Ladhani
This patch fixes the "Lines should not end with a '('" warning reported by checkpatch.pl script. The line containing 'rtl_mrate_idx_to_arfr_id' function previously ended with '(', which did not conform to the linux kernel coding style. Signed-off-by: Sohil Ladhani --- Changes in v2: - Ma

[GIT pull] timer fixes for 4.18

2018-08-05 Thread Thomas Gleixner
Linus, please pull the latest timers-urgent-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers-urgent-for-linus Two oneliners addressing NOHZ failures: - Use a bitmask to check for the pending timer softirq and not the bit number. The existing co

Re: WARNING in try_charge

2018-08-05 Thread Tetsuo Handa
On 2018/08/04 22:45, Tetsuo Handa wrote: > syzbot is hitting WARN(1) because of mem_cgroup_out_of_memory() == false. Since syzbot found a syz reproducer, I asked syzbot to try two patches. Setting MMF_OOM_SKIP under oom_lock to prevent from races ( https://syzkaller.appspot.com/x/patch.diff?x=10f

[GIT pull] x86 fix for 4.18

2018-08-05 Thread Thomas Gleixner
Linus, please pull the latest x86-urgent-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-urgent-for-linus A single fix, which addresses boot failures on machines which do not report EBDA correctly, which can place the trampoline into reserved memory reg

Re: [PATCH 4.17 00/31] 4.17.13-stable review

2018-08-05 Thread Naresh Kamboju
On 4 August 2018 at 14:30, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 4.17.13 release. > There are 31 patches in this series, all will be posted as a response > to this one. If anyone has any issues with these being applied, please > let me know. > > Response

Re: [PATCH 4.14 00/23] 4.14.61-stable review

2018-08-05 Thread Naresh Kamboju
On 4 August 2018 at 14:30, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 4.14.61 release. > There are 23 patches in this series, all will be posted as a response > to this one. If anyone has any issues with these being applied, please > let me know. > > Response

Re: [PATCH 4.9 00/32] 4.9.118-stable review

2018-08-05 Thread Naresh Kamboju
On 4 August 2018 at 14:30, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 4.9.118 release. > There are 32 patches in this series, all will be posted as a response > to this one. If anyone has any issues with these being applied, please > let me know. > > Response

Re: [PATCH 4.4 000/124] 4.4.146-stable review

2018-08-05 Thread Naresh Kamboju
On 4 August 2018 at 14:29, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 4.4.146 release. > There are 124 patches in this series, all will be posted as a response > to this one. If anyone has any issues with these being applied, please > let me know. > > Respons

[PATCH] staging: rtl8188eu: use phydm_regdefine11n.h from rtlwifi

2018-08-05 Thread Michael Straube
Use rtlwifi/phydm/phydm_regdefine11n.h instead of odm_RegDefine11N.h and remove the now unused odm_RegDefine11N.h. The defines from odm_RegDefine11N.h are defined with the same values in rtlwifi/phydm/phydm_regdefine11n.h. There is one define that is named different, but that one is not used in t

Re: [PATCH] eeprom: at24: Fix unexpected timeout under high load

2018-08-05 Thread Jonas Mark (BT-FIR/ENG1)
Hi Andy, Thank you for your feedback. > > -#define at24_loop_until_timeout(tout, op_time) \ > > - for (tout = jiffies + msecs_to_jiffies(at24_write_timeout), \ > > -op_time = 0; \ > > -op_time

Re: [PATCH] mm: Use special value SHRINKER_REGISTERING instead list_empty() check

2018-08-05 Thread Matthew Wilcox
On Sun, Aug 05, 2018 at 08:30:43AM +0300, Kirill Tkhai wrote: > On 05.08.2018 03:03, Matthew Wilcox wrote: > > On Sat, Aug 04, 2018 at 09:42:05PM +0300, Kirill Tkhai wrote: > >> This is exactly the thing the patch makes. Instead of inserting a shrinker > >> pointer > >> to idr, it inserts a fake v

[no subject]

2018-08-05 Thread Wang Shengkun
Hi My name is Wang Shengkun, i am a software programmer and i work with a lottery company over here in the United States. I can give you the winning numbers in our admin to play and win the lottery and we will share the proceeds 50% each. If you are interested , kindly write me back : 2148972

Re: [PATCH] ext4/mballoc: Remove unneeded variable "err"

2018-08-05 Thread zhong jiang
On 2018/8/5 5:24, Theodore Y. Ts'o wrote: > On Sat, Aug 04, 2018 at 07:04:56PM +0800, zhong jiang wrote: >> The err is not used after initalization. So just remove the variable. >> >> Signed-off-by: zhong jiang > I'll apply this patch, but how did you generate the diff? The > function name here i

Re: [PATCH] kernel/kthread: Make function __kthread_queue_delayed_work static

2018-08-05 Thread zhong jiang
On 2018/8/3 21:21, Steven Rostedt wrote: > On Fri, 3 Aug 2018 20:40:02 +0800 > zhong jiang wrote: > >> Fix the following warning. >> >> kernel/kthread.c:859:6: warning: symbol '__kthread_queue_delayed_work' was >> not declared. Should it be static? > > This should go via the trivial tree. > >> Si

hallo Schönheit

2018-08-05 Thread Wesley
Viele Grüße von mir. Wie geht es dir? Ich bin über Ihre Informationen im Internet gestolpert und das hat mein Interesse geweckt. Ich bin ein einsamer Mann und bin eines solchen Lebens müde. Ich möchte eine angenehme Frau finden, die mich liebt und schätzt. Ich bin Wesley mit Namen bin aus den US

Re: [PATCH 4.4 000/124] 4.4.146-stable review

2018-08-05 Thread Greg Kroah-Hartman
On Sun, Aug 05, 2018 at 05:24:21PM +0530, Naresh Kamboju wrote: > On 4 August 2018 at 14:29, Greg Kroah-Hartman > wrote: > > This is the start of the stable review cycle for the 4.4.146 release. > > There are 124 patches in this series, all will be posted as a response > > to this one. If anyone

Re: [PATCH 2/2] staging:r8188eu: Use lib80211 to encrypt (CCMP) tx frames

2018-08-05 Thread Greg Kroah-Hartman
On Thu, Aug 02, 2018 at 06:35:05PM +0200, Michael Straube wrote: > On 07/16/18 15:30, Michael Straube wrote: > > On 07/14/18 19:54, Ivan Safonov wrote: > > > Put data to skb, decrypt with lib80211_crypt_ccmp, and place back to tx > > > buffer. > > > > > > Signed-off-by: Ivan Safonov > > > --- >

Re: [PATCH] eeprom: at24: Fix unexpected timeout under high load

2018-08-05 Thread Andy Shevchenko
On Sun, Aug 5, 2018 at 3:26 PM, Jonas Mark (BT-FIR/ENG1) wrote: > Hi Andy, > > Thank you for your feedback. > >> > -#define at24_loop_until_timeout(tout, op_time) \ >> > - for (tout = jiffies + msecs_to_jiffies(at24_write_timeout), \ >> > -op_time = 0;

[PATCH] drivers/staging: Remove some unneeded semicolon

2018-08-05 Thread zhong jiang
That semicolons are unneeded, JUst remove them. Signed-off-by: zhong jiang --- drivers/staging/erofs/unzip_vle.c | 2 +- drivers/staging/gasket/gasket_interrupt.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/erofs/unzip_vle.c b/drivers/stagi

Re: [PATCH 2/6] staging: rtl8188eu: use is_multicast_ether_addr

2018-08-05 Thread Greg KH
On Thu, Aug 02, 2018 at 07:18:19PM +0200, Michael Straube wrote: > Use is_multicast_ether_addr instead of custom IS_MCAST in > hal/rtl8188eu_xmit.c. > > There is only one use, so remove the extra variable for the > result of IS_MCAST. > > Signed-off-by: Michael Straube > --- > drivers/staging/r

Re: [PATCH 5/6] staging: rtl8188eu: use is_multicast_ether_addr

2018-08-05 Thread Greg KH
On Thu, Aug 02, 2018 at 07:18:22PM +0200, Michael Straube wrote: > Use is_multicast_ether_addr instead of custom IS_MCAST in > core/rtw_sta_mgt.c. > > Signed-off-by: Michael Straube > --- > drivers/staging/rtl8188eu/core/rtw_sta_mgt.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Same

Re: [PATCH 6/7] staging:rtl8192u: Remove unused member variable - Style

2018-08-05 Thread Greg KH
On Sat, Aug 04, 2018 at 10:18:58AM +0100, John Whitmore wrote: > Remove name of 'reserved' bitfield member which is simply used to pad > the bitfield to a byte boundary. The actual bit has been left in place > so alignment should not change. The name, which is not required has > been removed. > >

RE: framebuffer corruption due to overlapping stp instructions on arm64

2018-08-05 Thread Mikulas Patocka
On Fri, 3 Aug 2018, David Laight wrote: > From: Mikulas Patocka > > Sent: 03 August 2018 13:05 > ... > > > Even on x86 using memcpy() on PCIe memory (maybe mmap()ed into userspace) > > > isn't a good idea. > > > In the kernel memcpy_to/fromio() ought to be a better choice but that > > > is just

Re: [PATCH 4.4 000/124] 4.4.146-stable review

2018-08-05 Thread Guenter Roeck
On 08/05/2018 06:49 AM, Greg Kroah-Hartman wrote: On Sun, Aug 05, 2018 at 05:24:21PM +0530, Naresh Kamboju wrote: On 4 August 2018 at 14:29, Greg Kroah-Hartman wrote: This is the start of the stable review cycle for the 4.4.146 release. There are 124 patches in this series, all will be posted

Re: [PATCH] ext4/mballoc: Remove unneeded variable "err"

2018-08-05 Thread Theodore Y. Ts'o
On Sun, Aug 05, 2018 at 08:59:33PM +0800, zhong jiang wrote: > I create the diff in this patch again ,but get the same result . > the git version is git version 1.7.12.4 but I create the diff in > git version 1.8.3.1. It shows the correct function name. Ah, OK, so it was a git bug. Whew! Glad

Re: [PATCH 4.4 000/124] 4.4.146-stable review

2018-08-05 Thread Dan Rue
On Sun, Aug 05, 2018 at 03:49:52PM +0200, Greg Kroah-Hartman wrote: > On Sun, Aug 05, 2018 at 05:24:21PM +0530, Naresh Kamboju wrote: > > On 4 August 2018 at 14:29, Greg Kroah-Hartman > > wrote: > > > This is the start of the stable review cycle for the 4.4.146 release. > > > There are 124 patches

Re: [PATCH v4 1/2] leds: core: Introduce LED pattern trigger

2018-08-05 Thread Jacek Anaszewski
Hi Baolin, Thank you for the fix. I've found few more details to improve, please take a look at my comments below. On 08/05/2018 06:04 AM, Baolin Wang wrote: > Some LED controllers have support for autonomously controlling > brightness over time, according to some preprogrammed pattern or > func

Long and short term loan without collateral at 3% interest rate

2018-08-05 Thread Brad Sanwomi
Dear Prospective Client, We provide funding for up to 500 Million USD. Loans are available at 3% interest rate with re-payment period of 1 year to 30 years. We provide:- *Business Loans *Project Loans *Personal Loans *Home Loans e.t.c If interested, please provide the information below:-

Re: [PATCH] ALSA: hda/realtek - Add mute LED quirk for HP Spectre x360

2018-08-05 Thread Takashi Iwai
On Sat, 04 Aug 2018 18:44:44 +0200, Alexandru Gagniuc wrote: > > This device has the same issues as the HP x360 wrt the MUTE LED and > the front speakers not working. This patch fixes the MUTE LED issue, > but doesn't touch the HDA verbs. The fix for the x360 does not work > on the Spectre. > > S

Re: [PATCH] ALSA: emu10k1: Mark expected switch fall-throughs

2018-08-05 Thread Takashi Iwai
On Sat, 04 Aug 2018 22:12:09 +0200, Gustavo A. R. Silva wrote: > > In preparation to enabling -Wimplicit-fallthrough, mark switch cases > where we are expecting to fall through. > > Notice that in this particular case, I replaced the code comment with > a proper "fall through" annotation, which

Re: [PATCH] ALSA: echoaudio: Mark expected switch fall-throughs

2018-08-05 Thread Takashi Iwai
On Sat, 04 Aug 2018 22:13:26 +0200, Gustavo A. R. Silva wrote: > > In preparation to enabling -Wimplicit-fallthrough, mark switch cases > where we are expecting to fall through. > > Addresses-Coverity-ID: 115156 ("Missing break in switch") > Signed-off-by: Gustavo A. R. Silva Applied, thanks.

Re: [PATCH] ALSA: mixart: Mark expected switch fall-through

2018-08-05 Thread Takashi Iwai
On Sat, 04 Aug 2018 22:11:03 +0200, Gustavo A. R. Silva wrote: > > In preparation to enabling -Wimplicit-fallthrough, mark switch cases > where we are expecting to fall through. > > Signed-off-by: Gustavo A. R. Silva Applied, thanks. Takashi

Re: [PATCH v12 0/3] tracing: Centralize preemptirq tracepoints and unify their usage

2018-08-05 Thread Joel Fernandes
Hi Masami, On Fri, Aug 3, 2018 at 9:51 PM, Joel Fernandes wrote: [...] >> On Thu, 2 Aug 2018 19:57:09 -0700 >> Joel Fernandes wrote: >> >>> Hi Masami, >>> >>> On Thu, Aug 2, 2018 at 7:55 AM, Masami Hiramatsu >>> wrote: >>> > Hi Joel, >>> > >>> > I found this caused several issues when testing

[PATCH] Staging: rtl8712: rtl871x: removed unused code, to fix a coding style issue

2018-08-05 Thread Frank Werner-Krippendorf
Fixed a coding style issue. Signed-off-by: Frank Werner-Krippendorf --- drivers/staging/rtl8712/rtl871x_event.h | 10 +- drivers/staging/rtl8712/rtl871x_io.h | 2 +- drivers/staging/rtl8712/rtl871x_pwrctrl.h | 10 +- drivers/staging/rtl8712/rtl871x_xmit.h| 14 +++-

Re: [PATCH] Staging: rtl8712: rtl871x: removed unused code, to fix a coding style issue

2018-08-05 Thread Greg KH
On Sun, Aug 05, 2018 at 07:12:32PM +0200, Frank Werner-Krippendorf wrote: > Fixed a coding style issue. > > Signed-off-by: Frank Werner-Krippendorf > --- > drivers/staging/rtl8712/rtl871x_event.h | 10 +- > drivers/staging/rtl8712/rtl871x_io.h | 2 +- > drivers/staging/rtl8712/rt

Re: framebuffer corruption due to overlapping stp instructions on arm64

2018-08-05 Thread Florian Weimer
On 08/04/2018 01:04 PM, Mikulas Patocka wrote: There's plenty of memcpy's in the graphics stack. No one will be rewriting all the graphics drivers because of tiny market share that ARM has in desktop computers. So if you refuse to fix things and blame everyone else, you can as well announce that

[PATCH v2 4/6] staging: rtl8188eu: remove whitespace - style

2018-08-05 Thread Michael Straube
Replace tabs with spaces and/or remove spaces where appropriate. Signed-off-by: Michael Straube --- .../staging/rtl8188eu/hal/rtl8188eu_xmit.c| 22 +-- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/staging/rtl8188eu/hal/rtl8188eu_xmit.c b/drivers/st

[PATCH v2 2/6] staging: rtl8188eu: use is_multicast_ether_addr in rtl8188eu_xmit.c

2018-08-05 Thread Michael Straube
Use is_multicast_ether_addr instead of custom IS_MCAST in hal/rtl8188eu_xmit.c. There is only one use, so remove the extra variable for the result of IS_MCAST. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/rtl8188eu_xmit.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(

[PATCH v2 5/6] staging: rtl8188eu: use is_multicast_ether_addr in rtw_sta_mgt.c

2018-08-05 Thread Michael Straube
Use is_multicast_ether_addr instead of custom IS_MCAST in core/rtw_sta_mgt.c. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/core/rtw_sta_mgt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8188eu/core/rtw_sta_mgt.c b/drivers/staging/rtl818

[PATCH v2 3/6] staging: rtl8188eu: cleanup block comment - style

2018-08-05 Thread Michael Straube
Cleanup a block comment to conform with kernel coding style. Also cleans 'line over 80 characters' checkpatch warnings. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/rtl8188eu_xmit.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/drivers/staging/rt

[PATCH v2 6/6] staging: rtl8188eu: remove whitespace, add missing blank line

2018-08-05 Thread Michael Straube
Replace tabs with spaces and/or remove spaces where appropriate. Add a missing blank line after declarations. Also clears checkpatch warnings. WARNING: Statements should start on a tabstop WARNING: suspect code indent for conditional statements (8, 17) Signed-off-by: Michael Straube --- drivers

[PATCH v2 1/6] staging: rtl8188eu: use is_multicast_ether_addr in recv_linux.c

2018-08-05 Thread Michael Straube
Use is_multicast_ether_addr instead of custom IS_MCAST in os_dep/recv_linux.c. Signed-off-by: Michael Straube --- v2: changed duplicate subjects drivers/staging/rtl8188eu/os_dep/recv_linux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/rtl8188eu/os_d

Re: Problems with Zen under Xen and recent Linux kernel improvements

2018-08-05 Thread Adam Novak
Sorry, I am using Xen version 4.9.2, specifically 4.9.2-0ubuntu1. I am seeing the bug with *kernel* version 4.15.0, and specifically Ubuntu's tag Ubuntu-4.15.0-23.25. That appears to have the "x86/cpu: Re-apply forced caps every time CPU caps are re-read" patch, but not "x86/xen: Add call of specu

[PATCH] Staging:rtl8712: Style - Removed inline block comment to fix "Statements should start on a tapstop"

2018-08-05 Thread Frank Werner-Krippendorf
Removed 5 inline comments "/*volatile*/" rtl87x_event.h, to fix a coding style issue "Statements should start on a tabstop" detected by checkpatch.pl script. Signed-off-by: Frank Werner-Krippendorf --- drivers/staging/rtl8712/rtl871x_event.h | 10 +- 1 file changed, 5 insertions(+), 5 de

Linux 4.18-rc8

2018-08-05 Thread Linus Torvalds
So as already mentioned a couple of times in some of the relevant threads, this last week wasn't entirely painless, and 4.18 ended up being one of those releases that gets an extra week of rc testing before release. The original impetus for this was the continued VM worries - although it looks lik

[tip:sched/urgent] stop_machine: Atomically queue and wake stopper threads

2018-08-05 Thread tip-bot for Prasad Sodagudi
Commit-ID: cfd355145c32bb7ccb65fccbe2d67280dc2119e1 Gitweb: https://git.kernel.org/tip/cfd355145c32bb7ccb65fccbe2d67280dc2119e1 Author: Prasad Sodagudi AuthorDate: Fri, 3 Aug 2018 13:56:06 -0700 Committer: Thomas Gleixner CommitDate: Sun, 5 Aug 2018 21:58:31 +0200 stop_machine: Atomica

[PATCH 05/15] staging: gasket: core: remove device enable and disable callbacks

2018-08-05 Thread Todd Poynor
From: Todd Poynor Device enable/disable operations are moving from being initiated through the gasket framework to being initiated by the gasket device driver. The driver can perform any processing needed for these operations before or after the calls into the framework. Neither of these callbac

[PATCH 02/15] staging: gasket: core: move core PCI calls to device drivers

2018-08-05 Thread Todd Poynor
From: Todd Poynor Remove gasket wrapping of PCI probe, enable, disable, and remove functions. Replace with calls to add and remove PCI gasket devices, to be called by the gasket device drivers. Signed-off-by: Todd Poynor --- drivers/staging/gasket/gasket_core.c | 82 --

[PATCH 03/15] staging: gasket: apex: move PCI core calls to apex driver

2018-08-05 Thread Todd Poynor
From: Todd Poynor Apex driver moves PCI core calls like probe, enable, and remove from gasket to apex. Call new functions in gasket to register apex as a PCI device to the gasket framework. Signed-off-by: Todd Poynor --- drivers/staging/gasket/apex_driver.c | 49 +++-

[PATCH 04/15] staging: gasket: core: convert remaining info logs to debug

2018-08-05 Thread Todd Poynor
From: Todd Poynor Remaining info-level logs in gasket core converted to debug-level; the information is not needed during normal system operation. Signed-off-by: Todd Poynor --- drivers/staging/gasket/gasket_core.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/driv

[PATCH 09/15] staging: gasket: core: delete device add and remove callbacks

2018-08-05 Thread Todd Poynor
From: Todd Poynor Gasket device drivers are now in charge of orchestrating the device add and removal sequences, so the callbacks from the framework to the device drivers for these events are no longer needed. Signed-off-by: Todd Poynor --- drivers/staging/gasket/gasket_core.c | 10 --

[PATCH 00/15] staging: gasket: unwrap pci core and more

2018-08-05 Thread Todd Poynor
From: Todd Poynor Stop wrapping PCI core calls like probe, enable, remove, etc. in the gasket framework, move these calls to the device driver instead. Have gasket drivers call into framework on init, enable, disable, etc. sequences, rather than the other way around. Remove the gasket-to-device

[PATCH 01/15] staging: gasket: sysfs: clean up state if ENOMEM removing mapping

2018-08-05 Thread Todd Poynor
From: Todd Poynor If kcalloc() returns NULL in put_mapping(), continue to clean up state, including dropping the reference on the struct device and free attribute memory. Signed-off-by: Todd Poynor --- drivers/staging/gasket/gasket_sysfs.c | 13 ++--- 1 file changed, 6 insertions(+), 7

[PATCH 15/15] staging: gasket: core: remove incorrect extraneous comment

2018-08-05 Thread Todd Poynor
From: Todd Poynor A copy-and-pasted comment from another code sequence is removed from gasket core init sequence. Signed-off-by: Todd Poynor --- drivers/staging/gasket/gasket_core.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/gasket/gasket_core.c b/drivers/staging/gaske

[PATCH 07/15] staging: gasket: core: let device driver enable/disable gasket device

2018-08-05 Thread Todd Poynor
From: Todd Poynor Move gasket device enable/disable functions from internal calls to external calls from the gasket device drivers. The device driver will call these functions at appropriate times in its processing, placing the device driver in control of this sequence and reducing the need for

[PATCH 14/15] staging: gasket: apex: place in low power reset until opened

2018-08-05 Thread Todd Poynor
From: Todd Poynor The apex device is left out of reset mode at the end of device probe/initialize processing. Add a call to enter reset at the end of the sequence, triggering power gating and other low power features. Signed-off-by: Todd Poynor --- drivers/staging/gasket/apex_driver.c | 4 +++

[PATCH 13/15] staging: gasket: core: protect against races during unregister

2018-08-05 Thread Todd Poynor
From: Todd Poynor Keep mutex held across the unregistration operation, until the driver_desc field of the global table is removed, to prevent a concurrent accessor from looking up the driver_desc while gasket_unregister_device() is in the processing of removing it. Reported-by: Guenter Roeck Si

[PATCH 11/15] staging: gasket: core: remove sysfs setup and cleanup callbacks

2018-08-05 Thread Todd Poynor
From: Todd Poynor Gasket device drivers now call into the gasket framework to initialize and de-initialize, rather than the other way around. The calling code can perform sysfs setup and cleanup actions without callbacks from the framework. Remove the sysfs setup and cleanup callbacks. Signed-

[PATCH 12/15] staging: gasket: apex: move sysfs setup code to probe function

2018-08-05 Thread Todd Poynor
From: Todd Poynor The gasket framework no longer provides callbacks to the device driver for sysfs setup and teardown. Move the sysfs setup code to the device probe function. Apex does not implement sysfs cleanup code. Signed-off-by: Todd Poynor --- drivers/staging/gasket/apex_driver.c | 14

[PATCH 08/15] staging: gasket: apex: enable/disable gasket device from apex

2018-08-05 Thread Todd Poynor
From: Todd Poynor Gasket framework now places device drivers in charge of calling APIs to enable and disable gasket device operations. Make the appropriate calls from the apex driver. Signed-off-by: Todd Poynor --- drivers/staging/gasket/apex_driver.c | 12 1 file changed, 12 ins

[PATCH 10/15] staging: gasket: apex: fold device add/remove logic inline

2018-08-05 Thread Todd Poynor
From: Todd Poynor Gasket device drivers are now in charge of the device add and remove sequences; the framework callbacks for these are deleted. Move the apex device add callback code to the probe function. Apex did not implement the removal callback. Signed-off-by: Todd Poynor --- drivers/s

[PATCH 06/15] staging: gasket: apex: remove device enable and disable callbacks

2018-08-05 Thread Todd Poynor
From: Todd Poynor These are not implemented for apex, and are now being removed from the gasket framework. Signed-off-by: Todd Poynor --- drivers/staging/gasket/apex_driver.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/staging/gasket/apex_driver.c b/drivers/staging/gasket/ap

Re: [PATCH 6/7] x86/mm/pageattr: pass named flag instead of 0/1

2018-08-05 Thread Thomas Gleixner
On Thu, 2 Aug 2018, Dave Hansen wrote: > > From: Dave Hansen > > This is a cleanup. There should be functional changes in this patch. Missing 'no' after 'be', right? Thanks, tglx

[tip:x86/pti] mm: Allow non-direct-map arguments to free_reserved_area()

2018-08-05 Thread tip-bot for Dave Hansen
Commit-ID: 0d83432811f26871295a9bc24d3c387924da6071 Gitweb: https://git.kernel.org/tip/0d83432811f26871295a9bc24d3c387924da6071 Author: Dave Hansen AuthorDate: Thu, 2 Aug 2018 15:58:26 -0700 Committer: Thomas Gleixner CommitDate: Sun, 5 Aug 2018 22:21:02 +0200 mm: Allow non-direct-map

[tip:x86/pti] x86/mm/pti: Clear Global bit more aggressively

2018-08-05 Thread tip-bot for Dave Hansen
Commit-ID: eac7073aa69aa1cac819aa712146284f53f642b1 Gitweb: https://git.kernel.org/tip/eac7073aa69aa1cac819aa712146284f53f642b1 Author: Dave Hansen AuthorDate: Thu, 2 Aug 2018 15:58:25 -0700 Committer: Thomas Gleixner CommitDate: Sun, 5 Aug 2018 22:21:02 +0200 x86/mm/pti: Clear Global

[tip:x86/pti] x86/mm/init: Pass unconverted symbol addresses to free_init_pages()

2018-08-05 Thread tip-bot for Dave Hansen
Commit-ID: 9f515cdb411ef34f1aaf4c40bb0c932cf6db5de1 Gitweb: https://git.kernel.org/tip/9f515cdb411ef34f1aaf4c40bb0c932cf6db5de1 Author: Dave Hansen AuthorDate: Thu, 2 Aug 2018 15:58:28 -0700 Committer: Thomas Gleixner CommitDate: Sun, 5 Aug 2018 22:21:02 +0200 x86/mm/init: Pass unconve

[tip:x86/pti] x86/mm/init: Add helper for freeing kernel image pages

2018-08-05 Thread tip-bot for Dave Hansen
Commit-ID: 6ea2738e0ca0e626c75202fb051c1e88d7a950fa Gitweb: https://git.kernel.org/tip/6ea2738e0ca0e626c75202fb051c1e88d7a950fa Author: Dave Hansen AuthorDate: Thu, 2 Aug 2018 15:58:29 -0700 Committer: Thomas Gleixner CommitDate: Sun, 5 Aug 2018 22:21:03 +0200 x86/mm/init: Add helper f

[tip:x86/urgent] x86/irqflags: Provide a declaration for native_save_fl

2018-08-05 Thread tip-bot for Nick Desaulniers
Commit-ID: 208cbb32558907f68b3b2a081ca2337ac3744794 Gitweb: https://git.kernel.org/tip/208cbb32558907f68b3b2a081ca2337ac3744794 Author: Nick Desaulniers AuthorDate: Fri, 3 Aug 2018 10:05:50 -0700 Committer: Thomas Gleixner CommitDate: Sun, 5 Aug 2018 22:30:37 +0200 x86/irqflags: Provid

[tip:x86/pti] x86/mm/init: Remove freed kernel image areas from alias mapping

2018-08-05 Thread tip-bot for Dave Hansen
Commit-ID: 2140e26f3d98e615c60c5f6a97d8421a077d61eb Gitweb: https://git.kernel.org/tip/2140e26f3d98e615c60c5f6a97d8421a077d61eb Author: Dave Hansen AuthorDate: Thu, 2 Aug 2018 15:58:31 -0700 Committer: Thomas Gleixner CommitDate: Sun, 5 Aug 2018 22:21:03 +0200 x86/mm/init: Remove freed

[tip:x86/vdso] x86: vdso: Use $LD instead of $CC to link

2018-08-05 Thread tip-bot for Alistair Strachan
Commit-ID: 379d98ddf41344273d9718556f761420f4dc80b3 Gitweb: https://git.kernel.org/tip/379d98ddf41344273d9718556f761420f4dc80b3 Author: Alistair Strachan AuthorDate: Fri, 3 Aug 2018 10:39:31 -0700 Committer: Thomas Gleixner CommitDate: Sun, 5 Aug 2018 22:33:50 +0200 x86: vdso: Use $LD

RE: [char-misc-next 06/12] mei: dma ring buffers allocation

2018-08-05 Thread Winkler, Tomas
> Subject: RE: [char-misc-next 06/12] mei: dma ring buffers allocation > > > > On Tue, Jul 31, 2018 at 09:35:38AM +0300, Tomas Winkler wrote: > > > --- /dev/null > > > +++ b/drivers/misc/mei/dma-ring.c > > > @@ -0,0 +1,103 @@ > > > +// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 > > > > I

[PATCH] Revert "staging:r8188eu: Use lib80211 to encrypt (CCMP) tx frames"

2018-08-05 Thread Michael Straube
On a Raven Ridge system with a r8188eu usb wifi device commit 515ce733e86e ("staging:r8188eu: Use lib80211 to encrypt (CCMP) tx frames") is causing two bugs and a warning in dmesg: [ 22.618465] BUG: scheduling while atomic: NetworkManager/489/0x0202 [ 22.618466] Modules linked in: amdkfd

[PATCH v2] checkpatch: Check for space after "else" keyword

2018-08-05 Thread Michal Zylowski
Current checkpatch implementation permits notation like: } else{ in kernel code. It looks like oversight and inconsistency in checkpatch rules (e.g. instruction like 'do' is tested). Add regex for checking space after 'else' keyword and trigger error if space is not present. Signed-off-by: Michal

Re: [PATCH 2/2] staging:r8188eu: Use lib80211 to encrypt (CCMP) tx frames

2018-08-05 Thread Michael Straube
On 08/05/18 16:07, Greg Kroah-Hartman wrote: On Thu, Aug 02, 2018 at 06:35:05PM +0200, Michael Straube wrote: On 07/16/18 15:30, Michael Straube wrote: On 07/14/18 19:54, Ivan Safonov wrote: Put data to skb, decrypt with lib80211_crypt_ccmp, and place back to tx buffer. Signed-off-by: Ivan Sa

give editing

2018-08-05 Thread Sam Dennis
Want to know if you have photos for editing? We can edit 300+ images each day. We can work on ecommerce photos, jewelry photos, and portrait photos. We give cut out and clipping path for different kind of photos, and also we provide retouching for them. Send us a test photo and we will do testi

and for the photos

2018-08-05 Thread Sam Dennis
Want to know if you have photos for editing? We can edit 300+ images each day. We can work on ecommerce photos, jewelry photos, and portrait photos. We give cut out and clipping path for different kind of photos, and also we provide retouching for them. Send us a test photo and we will do testi

Re: Problems with Zen under Xen and recent Linux kernel improvements

2018-08-05 Thread Adam Novak
OK, I pulled that commit, 74899d92e3dc7671a8017b3146dcd4735f3b, in to the Ubuntu kernel and it seems to solve the problem. Now I just need to get Ubuntu to ship it. Thanks! On Sun, Aug 5, 2018 at 12:27 PM, Adam Novak wrote: > Sorry, I am using Xen version 4.9.2, specifically 4.9.2-0ubuntu1.

Re: framebuffer corruption due to overlapping stp instructions on arm64

2018-08-05 Thread Pavel Machek
Hi! > > I tried to use a PCIe graphics card on the MacchiatoBIN board and I hit a > > strange problem. > > > > When I use the links browser in graphics mode on the framebuffer, I get > > occasional pixel corruption. Links does memcpy, memset and 4-byte writes > > on the framebuffer - nothing else.

linux-next: Signed-off-by missing for commit in the risc-v tree

2018-08-05 Thread Stephen Rothwell
Hi Palmer, Commit bce17edfe6af ("fixup: ". " in PLIC docs") is missing a Signed-off-by from its author and committer. -- Cheers, Stephen Rothwell pgpYI05hse_QQ.pgp Description: OpenPGP digital signature

Re: framebuffer corruption due to overlapping stp instructions on arm64

2018-08-05 Thread Pavel Machek
Hi! > > Can you run the test program on x86 using the similar framebuffer > > setup? Does doing two writes (one aligned and one unaligned but > > overlapping with previous one) cause the same issue? I suspect it > > does, then using memcpy for frame buffers is wrong. I'm pretty sure it will wor

linux-next: Signed-off-by missing for commit in the block tree

2018-08-05 Thread Stephen Rothwell
Hi Jens, Commit 290a40cb336c ("nvme: don't enable AEN if not supported") is missing a Signed-off-by from its committer. -- Cheers, Stephen Rothwell pgp7XFc8pPUFp.pgp Description: OpenPGP digital signature

Re: [PATCH v4 1/2] leds: core: Introduce LED pattern trigger

2018-08-05 Thread Pavel Machek
Hi! > > +What: /sys/class/leds//repeat > > +Date: August 2018 > > +KernelVersion: 4.19 > > +Description: > > + Specify a pattern repeat number. 0 means repeat indefinitely. > > In current implementation this file on read returns the number > of remaining re

Re: [PATCH 1/2] zram: remove BD_CAP_SYNCHRONOUS_IO with writeback feature

2018-08-05 Thread Minchan Kim
Hi Andrew, On Fri, Aug 03, 2018 at 04:28:18PM -0700, Andrew Morton wrote: > On Fri, 3 Aug 2018 11:51:43 +0900 Minchan Kim wrote: > > > > Is it legitimate to be altering the bdi capabilities at this level? Or > > > is this hacky? > > > > Most of device's bdi capability seems to be static but th

[RFC] serial: sc16is7xx: Use DT sub-nodes for UART ports

2018-08-05 Thread Andreas Färber
This is to allow using serdev. Signed-off-by: Andreas Färber --- drivers/tty/serial/sc16is7xx.c | 25 + 1 file changed, 25 insertions(+) diff --git a/drivers/tty/serial/sc16is7xx.c b/drivers/tty/serial/sc16is7xx.c index 243c96025053..ad7267274f65 100644 --- a/drivers/tty

Re: 4.18.0-rc1-next-20180619 boot failed on beagle board x15

2018-08-05 Thread Stephen Rothwell
Hi Samuel, On Mon, 2 Jul 2018 09:31:56 -0400 Samuel Morris wrote: > > On Mon, Jul 2, 2018 at 5:32 AM, Tony Lindgren wrote: > > Hi, > > > > * Roger Quadros [180621 14:56]: > >> On 21/06/18 17:31, Samuel Morris wrote: > >> > On Thu, Jun 21, 2018 at 3:58 AM, Roger Quadros wrote: > >> >> +Ra

Re: [PATCH v2] riscv: Add support to no-FPU systems

2018-08-05 Thread Alan Kao
On Fri, Aug 03, 2018 at 09:03:00PM -0700, Palmer Dabbelt wrote: > On Wed, 01 Aug 2018 11:23:43 PDT (-0700), Andrew Waterman wrote: > >On Wed, Aug 1, 2018 at 10:55 AM, Palmer Dabbelt wrote: > >>On Tue, 26 Jun 2018 21:22:26 PDT (-0700), alan...@andestech.com wrote: > >>> > >>>This patch adds an opti

  1   2   >