[PATCH 04/10] pwm: core: use bitops

2015-10-26 Thread Olliver Schinagl
From: Olliver Schinagl The pwm header defines bits manually while there is a nice bitops.h with a BIT() macro. Use the BIT() macro to set bits in pwm.h Signed-off-by: Olliver Schinagl --- include/linux/pwm.h | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/lin

[PATCH 03/10] pwm: sunxi: Yield some time to the pwm-block to become ready

2015-10-26 Thread Olliver Schinagl
The pwm-block of some of the sunxi chips feature a 'ready' flag to indicate the software that it is ready for new commands. Right now, when we call pwm_config and set the period, we write the values to the registers, and turn off the clock to the IP. Because of this, the hardware does not have tim

[PATCH 01/10] pwm: lpc18xx_pwm: use pwm_set_chip_data

2015-10-26 Thread Olliver Schinagl
From: Olliver Schinagl The lpc18xx driver currently manipulates the pwm_device struct directly rather then using the pwm_set_chip_data. While the current method may save a clock cycle or two, it is more obvious that data is set to the chip pointer (especially since it is only a single int holding

[PATCH 00/10]

2015-10-26 Thread Olliver Schinagl
Hey Thierry, With this patch set I wanted to add some new features to the PWM framework, while doing so, I ran into 2 minor things with the lpc18xx and sunxi driver. The lpc18xx I bumped into because I was trying to learn from existing drivers. Here I only added the setter to set the chip_data, s

[PATCH 10/10] pwm: sunxi: Add possibility to pulse the sunxi pwm output

2015-10-26 Thread Olliver Schinagl
From: Olliver Schinagl With the new pulse mode addition to the PWM framework, we can make use of this for the sunxi PWM. WARNING: Do not merge yet, currently, we can only pulse once and a manual disable is required to 'reset' the PWM framework. I haven't thought through how to automatically 'dis

[PATCH 08/10] pwm: core: add pulse feature to the PWM framework

2015-10-26 Thread Olliver Schinagl
From: Olliver Schinagl Some hardware PWM's have the possibility to only send out one (or more) pulses. This can be quite a useful feature in case one wants or needs only a single pulse, but at the exact width. Additionally, if multiple pulses are possible, outputting a fixed amount of pulses can

[PATCH 09/10] pwm: pwm_gpio: add pulse option

2015-10-26 Thread Olliver Schinagl
From: Olliver Schinagl With the newly added pwm_pulse option added to the PWM framework, this patch adds the pulse functionality to the gpio_pwm driver. Signed-off-by: Olliver Schinagl --- drivers/pwm/pwm-gpio.c | 22 ++ 1 file changed, 22 insertions(+) diff --git a/driver

[PATCH 07/10] pwm: gpio: Add a generic gpio based PWM driver

2015-10-26 Thread Olliver Schinagl
From: Olliver Schinagl This patch adds a bit-banging gpio PWM driver. It makes use of hrtimers, to allow nano-second resolution, though it obviously strongly depends on the switching speed of the gpio pins, hrtimer and system load. Each pwm node can have 1 or more "pwm-gpio" entries, which will

BITTE BRAUCHE ICH EURE HILFE!

2015-10-26 Thread Mrs Hayet Zaara
Ich bin Frau Zaara Heyet ein Händler, Öl-Wartung der Anlagen, schreiben diese Mail an Sie, mit Tränen und Liebe aus meinem Herzen Liebe Arbeit, die ich aufgrund meiner derzeitigen Healness nicht vor dem Ende meiner Tage erfüllen konnte,bitte glaube nicht dieses Schreibens als einer derjenigen, d

Re: [PATCH 1/2] coccinelle: ifnullfree: improve and extend ifnullfree

2015-10-26 Thread Julia Lawall
On Mon, 26 Oct 2015, Michal Marek wrote: > Dne 18.10.2015 v 11:55 SF Markus Elfring napsal(a): > >> Remove removal and re-addition of freeing functions. > > > > I find such a wording confusing for a commit message. > > It is also a bit confusing to use the same subject for two patches in a > ser

[PATCH v3 2/2] net: ethernet: add driver for Aurora VLSI NB8800 Ethernet controller

2015-10-26 Thread Mans Rullgard
This adds a driver for the Aurora VLSI NB8800 Ethernet controller. It is an almost complete rewrite of a driver originally found in a Sigma Designs 2.6.22 tree. Signed-off-by: Mans Rullgard --- Changes: - remove check for wake on lan irq as it is never requested - prettify mac address setting - u

[PATCH v3 1/2] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller

2015-10-26 Thread Mans Rullgard
This adds a binding for the Aurora VLSI NB8800 Ethernet controller using the "aurora,nb8800" compatible string. When used in Sigma Designs chips a few additional features are available. These variants are indicated by a "sigma,-ethernet" compatible string. Signed-off-by: Mans Rullgard --- Chang

[PATCH 05/10] pwm: sysfs: do not unnecessarily store result in var

2015-10-26 Thread Olliver Schinagl
From: Olliver Schinagl Use the result of pwm_is_enabled directly instead of storing it first. Signed-off-by: Olliver Schinagl --- drivers/pwm/sysfs.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/pwm/sysfs.c b/drivers/pwm/sysfs.c index c472772..ba67845 100644 --

Re: [PATCH] oom_kill: add option to disable dump_stack()

2015-10-26 Thread David Rientjes
On Fri, 23 Oct 2015, Aristeu Rozanski wrote: > One of the largest chunks of log messages in a OOM is from dump_stack() and in > some cases it isn't even necessary to figure out what's going on. In > systems with multiple tenants/containers with limited resources each > OOMs can be way more frequen

Re: [PATCH] cocinelle: iterators: semantic patch to delete unneeded of_node_put

2015-10-26 Thread Michal Marek
Dne 22.10.2015 v 22:11 Julia Lawall napsal(a): > Device node iterators perform an of_node_put on each iteration, so putting > an of_node_put before a continue results in a double put. > > Signed-off-by: Julia Lawall Applied to kbuild.git#misc, thanks. Michal -- To unsubscribe from this list: s

[PATCH 1/2 v2] coccinelle: ifnullfree: various cleanups

2015-10-26 Thread Julia Lawall
Adjust tests to compare against NULL, to match cases that explicitly make that comparison. Remove removal and re-addition of freeing functions. Add position variable on usb_free_urb in the non-patch case. Signed-off-by: Julia Lawall --- v2: better subject scripts/coccinelle/free/ifnullfree.c

[PATCH 2/2 v2] coccinelle: ifnullfree: handle various destroy functions

2015-10-26 Thread Julia Lawall
Extend ifnullfree to the various destroy functions that were recently extended to tolerate NULL arguments. Signed-off-by: Julia Lawall --- v2: better subject scripts/coccinelle/free/ifnullfree.cocci | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/coccine

Re: [PATCH v3 1/2] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller

2015-10-26 Thread Måns Rullgård
Forgot to CC netdev. Mans Rullgard writes: > This adds a binding for the Aurora VLSI NB8800 Ethernet controller > using the "aurora,nb8800" compatible string. When used in Sigma > Designs chips a few additional features are available. These variants > are indicated by a "sigma,-ethernet" compa

Re: [PATCH 2/2 v2] coccinelle: ifnullfree: handle various destroy functions

2015-10-26 Thread Michal Marek
Dne 26.10.2015 v 22:28 Julia Lawall napsal(a): > Extend ifnullfree to the various destroy functions that were recently > extended to tolerate NULL arguments. > > Signed-off-by: Julia Lawall Applied both to kbuild.git#misc, thanks. Michal -- To unsubscribe from this list: send the line "unsubsc

Re: [PATCH] Staging: android: uapi: fixed comment block coding style error in ion.h

2015-10-26 Thread Laura Abbott
On 10/25/15 3:16 PM, Dzonatans Melgalvis wrote: Fixed checkpatch.pl warning about comment block coding style. The right aligned comments aren't great style. How about moving the comments (with the correct style) right above the macro they are describing. Signed-off-by: Dzonatans Melgalvis -

Re: [PATCHv2 4.3-rc6] proc: fix convert from oom_score_adj to oom_adj

2015-10-26 Thread David Rientjes
On Thu, 22 Oct 2015, Hongjie Fang (方洪杰) wrote: > > The oom_adj has been replaced by oom_score_adj in kernel, > but the /proc/pid/oom_adj is provided for legacy purposes. > When write/read a value into/from /proc/pid/oom_adj, > there is a transformation between oom_adj and oom_score_adj. > > Afte

Re: [PATCH v6] coccinelle: Improve checking for missing NULL terminators

2015-10-26 Thread Michal Marek
Dne 23.10.2015 v 21:35 Julia Lawall napsal(a): > Acked-by: Julia Lawall > > On Fri, 23 Oct 2015, Daniel Granat wrote: > >> * Extend checking on tables containing structures which are >> initialized without specifying member name. Added new tables >> for checking: i2c_device_id and platform_d

Re: [PATCH 04/14] devicetree: Add hardware rng entry to qcom-apq8064.dtsi

2015-10-26 Thread Bjorn Andersson
On Fri 18 Sep 05:31 PDT 2015, Srinivas Kandagatla wrote: > From: John Stultz > > Add devicetree data to add support for hw_rng support > to the apq8064 dts. > > Tested on the Nexus7 (2013). > > Cc: Kumar Gala > Cc: Stephen Boyd > Cc: Srinivas Kandagatla > Cc: devicet...@vger.kernel.org Rev

[PATCH 2/2] Drivers:staging:wlan_ng: fix all coding style isuues in file prism2usb.c

2015-10-26 Thread Bogicevic Sasa
Fixed all coding style issues based on checkpatch.pl warnings and errors Signed-off-by: Bogicevic Sasa --- drivers/staging/wlan-ng/prism2usb.c | 40 ++--- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/drivers/staging/wlan-ng/prism2usb.c b/driver

Re: [PATCH 2/3] lib/string_helpers.c: don't lose precision in string_get_size()

2015-10-26 Thread Rasmus Villemoes
So I also played with this over the weekend, and also threw together a stupid script to check the output. I see you have more or less the same idea I used, namely to combine size and blk_size earlier. I put some code on github, https://github.com/Villemoes/get_size. All versions still fail a very

RE: [PATCH v2 UPDATE-2 3/3] ACPI/APEI/EINJ: Allow memory error injection to NVDIMM

2015-10-26 Thread Luck, Tony
> Signed-off-by: Toshi Kani > Reviewed-by: Dan Williams Acked-by: Tony Luck -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at

Re: [PATCH RFC net-next 2/2] tcp: Add Redundant Data Bundling (RDB)

2015-10-26 Thread Andreas Petlund
> On 26 Oct 2015, at 15:50, Neal Cardwell wrote: > > On Fri, Oct 23, 2015 at 4:50 PM, Bendik Rønning Opstad > wrote: >> @@ -2409,6 +2412,15 @@ static int do_tcp_setsockopt(struct sock *sk, int >> level, > ... >> + case TCP_RDB: >> + if (val < 0 || val > 1) { >> +

Re: [PATCH 3/3] lib/test-string_helpers.c: add string_get_size() tests

2015-10-26 Thread Rasmus Villemoes
On Mon, Oct 26 2015, Vitaly Kuznetsov wrote: > Add a couple of simple tests for string_get_size(). > > Signed-off-by: Vitaly Kuznetsov > --- > lib/test-string_helpers.c | 44 > 1 file changed, 44 insertions(+) > > diff --git a/lib/test-string_helpers

Re: [PATCH v14 00/24] Compile-time stack metadata validation

2015-10-26 Thread Chris J Arges
On Wed, Oct 21, 2015 at 11:11:39AM -0500, Josh Poimboeuf wrote: > This is v14 of the compile-time stack metadata validation patch set, > along with proposed fixes for many of the warnings it found. It's based > on the tip/master branch. > Did some light testing with v14. Booted with no issues, i

Re: [PATCH v2 17/17] scsi: ufs-qcom: fix compilation warnings

2015-10-26 Thread Stephen Boyd
On 10/26/2015 08:41 AM, Yaniv Gardi wrote: > Tnis patch fixes the following compilation warnings: > ...ufs-qcom.c:1201:40: > warning: incorrect type in argument 1 (different address spaces) > ...ufs-qcom.c:1201:40: > expected void const *ptr > ...ufs-qcom.c:1201:40: > got void [no

Re: [PATCH 01/10] pwm: lpc18xx_pwm: use pwm_set_chip_data

2015-10-26 Thread Ezequiel Garcia
(+ Ariel) Hi Oliver, Not sure why there's some many people in Cc for such a silly change. I guess you are using get_maintainers.pl on the entire patchset and get this rather long list. IMO, the value of submitting patches as part of a larger series is to be able to push patches that need to be a

Re: [PATCH RFC net-next 2/2] tcp: Add Redundant Data Bundling (RDB)

2015-10-26 Thread Yuchung Cheng
On Mon, Oct 26, 2015 at 2:35 PM, Andreas Petlund wrote: > > > > On 26 Oct 2015, at 15:50, Neal Cardwell wrote: > > > > On Fri, Oct 23, 2015 at 4:50 PM, Bendik Rønning Opstad > > wrote: > >> @@ -2409,6 +2412,15 @@ static int do_tcp_setsockopt(struct sock *sk, int > >> level, > > ... > >> +

Re: [PATCH 08/10] pwm: core: add pulse feature to the PWM framework

2015-10-26 Thread kbuild test robot
Hi Olliver, [auto build test ERROR on pwm/for-next -- if it's inappropriate base, please suggest rules for selecting the more suitable base] url: https://github.com/0day-ci/linux/commits/Olliver-Schinagl/pwm-lpc18xx_pwm-use-pwm_set_chip_data/20151027-053853 config: x86_64-randconfig-n0-10270

Re: [PATCH] clk: versatile: Make depend on OF when COMPILE_TEST

2015-10-26 Thread Javier Martinez Canillas
Hello Stephen, On 10/27/2015 03:51 AM, Stephen Boyd wrote: > On 10/26, Javier Martinez Canillas wrote: >> Commit 4a7748c3d641 ("clk: Allow drivers to build if COMPILE_TEST is >> enabled") allowed clk drives to be compile tested on other archs but > > s/drives/drivers/ > >> the COMMON_CLK_VERSATI

Re: [PATCH 08/10] pwm: core: add pulse feature to the PWM framework

2015-10-26 Thread kbuild test robot
Hi Olliver, [auto build test WARNING on pwm/for-next -- if it's inappropriate base, please suggest rules for selecting the more suitable base] url: https://github.com/0day-ci/linux/commits/Olliver-Schinagl/pwm-lpc18xx_pwm-use-pwm_set_chip_data/20151027-053853 config: avr32-atstk1006_defconfi

Re: [PATCH] Staging:drivers:wlan_ng: code style issues

2015-10-26 Thread Bogicevic Sasa
yup, my bad -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH v3 0/2] Common SerDes driver for TI's Keystone Platforms

2015-10-26 Thread Murali Karicheri
Russell, On 10/23/2015 02:52 PM, Kishon Vijay Abraham I wrote: Hi, On Friday 23 October 2015 08:16 PM, Russell King - ARM Linux wrote: On Fri, Oct 23, 2015 at 11:17:06AM +0200, Arnd Bergmann wrote: On Thursday 22 October 2015 15:27:05 Loc Ho wrote: phy-xgene.c --- ---CUT--

Re: [PATCH 08/10] pwm: core: add pulse feature to the PWM framework

2015-10-26 Thread kbuild test robot
Hi Olliver, [auto build test ERROR on pwm/for-next -- if it's inappropriate base, please suggest rules for selecting the more suitable base] url: https://github.com/0day-ci/linux/commits/Olliver-Schinagl/pwm-lpc18xx_pwm-use-pwm_set_chip_data/20151027-053853 config: i386-randconfig-s1-201543

[PATCH] get_maintainer: Don't fallback to git by default

2015-10-26 Thread Javier Martinez Canillas
The get_maintainer.pl script could be used to get a list of people that has to be in the copy list when posting patches for a given file but it defaults to git fallback so the list returned isn't really relevant and submitters are posting patches to random developers that just happened to touch tha

Re: [PATCH 08/10] pwm: core: add pulse feature to the PWM framework

2015-10-26 Thread kbuild test robot
Hi Olliver, [auto build test WARNING on pwm/for-next -- if it's inappropriate base, please suggest rules for selecting the more suitable base] url: https://github.com/0day-ci/linux/commits/Olliver-Schinagl/pwm-lpc18xx_pwm-use-pwm_set_chip_data/20151027-053853 config: arm-at91_dt_defconfig (a

Re: [PATCH v4 1/7] usb: gadget: f_midi: Transmit data only when IN ep is enabled

2015-10-26 Thread Robert Baldyga
Hi Felipe, On 10/26/2015 05:55 PM, Felipe F. Tonello wrote: > This makes sure f_midi doesn't try to enqueue data when the IN endpoint is > disabled, ie, USB cable is disconnected. > > Signed-off-by: Felipe F. Tonello > --- > drivers/usb/gadget/function/f_midi.c | 7 ++- > 1 file changed, 6

Re: [PATCH] i2c: Enable Cadence driver for ARM64

2015-10-26 Thread Javier Martinez Canillas
Hello Lee, On 10/27/2015 01:45 AM, Lee Jones wrote: > On Tue, 27 Oct 2015, Javier Martinez Canillas wrote: > >> Hello, >> >> On 10/27/2015 12:00 AM, Lee Jones wrote: >>> On Mon, 26 Oct 2015, Wolfram Sang wrote: On Mon, Oct 26, 2015 at 02:32:36PM +, Lee Jones wrote: > Regarding your a

Re: [PATCH 5/5] block: enable dax for raw block devices

2015-10-26 Thread Dave Chinner
On Mon, Oct 26, 2015 at 05:56:30PM +0900, Dan Williams wrote: > On Mon, Oct 26, 2015 at 3:23 PM, Dave Chinner wrote: > > Also, DAX access isn't a property of mmap - it's a property > > of the inode. We cannot do DAX access via mmap while mixing page > > cache based access through file descriptor b

Re: [PATCH] Staging:drivers:wlan_ng: code style issues

2015-10-26 Thread Bogicevic Sasa
On 10/26, Bogicevic Sasa wrote: Thanks for the review just sent the new patch, since change is very trivial I believe one liner like "fix all coding style issues in that and that file" is descriptive enough. Don't know the best practice so please be patient, I am new at this On 10/27, Greg KH wro

Re: [PATCH v4 4/7] usb: gadget: f_midi: fix leak on failed to enqueue out requests

2015-10-26 Thread Robert Baldyga
On 10/26/2015 05:55 PM, Felipe F. Tonello wrote: > This patch fixes a memory leak that occurs when an endpoint fails to enqueue > the request. If that happens the complete function will never be called, thus > never freeing the request. > > Signed-off-by: Felipe F. Tonello > --- > drivers/usb/ga

Re: [PATCH v4 5/7] usb: gadget: f_midi: set altsettings only for MIDIStreaming interface

2015-10-26 Thread Robert Baldyga
On 10/26/2015 05:55 PM, Felipe F. Tonello wrote: > This avoids duplication of USB requests for OUT endpoint and > re-enabling endpoints. > > Signed-off-by: Felipe F. Tonello > --- > drivers/usb/gadget/function/f_midi.c | 4 > 1 file changed, 4 insertions(+) > > diff --git a/drivers/usb/gad

Quick Loans

2015-10-26 Thread
Do you need a personal loan, business loan or urgent loan to solve your problems? Do you have plans to open new business or expand your present business,buy properties,complete your education? pay your debts? or for personal use? This is to inform you that we offer all types of Loans at just 3.

Re: [PATCH v3 2/8] clk: qcom: msm8916: Set the parent of xo to xo_board

2015-10-26 Thread Stephen Boyd
On 10/20, Georgi Djakov wrote: > Remove the hard-coded clock rate from the driver and set the XO > parent to the on-board XO oscillator that is defined in the DT. > > Signed-off-by: Georgi Djakov > --- > drivers/clk/qcom/gcc-msm8916.c |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >

Re: [PATCH v3 3/8] clk: qcom: msm8916: Ignore sleep_clk_src registration errors

2015-10-26 Thread Stephen Boyd
On 10/20, Georgi Djakov wrote: > We are moving the sleep clock to the DT. While all patches > are merged, we will ignore sleep_clk_src registration errors. > By ignoring this error, the msm8916 boards will continue booting > during this transition period, otherwise the clock controller > initializa

Re: [PATCH v4 1/7] usb: gadget: f_midi: Transmit data only when IN ep is enabled

2015-10-26 Thread Felipe Tonello
Hi Robert, On Mon, Oct 26, 2015 at 10:13 PM, Robert Baldyga wrote: > Hi Felipe, > > On 10/26/2015 05:55 PM, Felipe F. Tonello wrote: >> This makes sure f_midi doesn't try to enqueue data when the IN endpoint is >> disabled, ie, USB cable is disconnected. >> >> Signed-off-by: Felipe F. Tonello >>

Re: [PATCH v4 5/7] usb: gadget: f_midi: set altsettings only for MIDIStreaming interface

2015-10-26 Thread Felipe Tonello
Hi Robert, On Mon, Oct 26, 2015 at 10:30 PM, Robert Baldyga wrote: > On 10/26/2015 05:55 PM, Felipe F. Tonello wrote: >> This avoids duplication of USB requests for OUT endpoint and >> re-enabling endpoints. >> >> Signed-off-by: Felipe F. Tonello >> --- >> drivers/usb/gadget/function/f_midi.c |

Re: [PATCH v4 4/7] usb: gadget: f_midi: fix leak on failed to enqueue out requests

2015-10-26 Thread Felipe Tonello
Hi Robert, On Mon, Oct 26, 2015 at 10:23 PM, Robert Baldyga wrote: > On 10/26/2015 05:55 PM, Felipe F. Tonello wrote: >> This patch fixes a memory leak that occurs when an endpoint fails to enqueue >> the request. If that happens the complete function will never be called, thus >> never freeing t

Re: [PATCH] usb: dwc2: host: Fix ahbcfg for rk3066

2015-10-26 Thread John Youn
On 10/20/2015 4:35 PM, Douglas Anderson wrote: > The comment for ahbcfg for rk3066 parameters (also used for rk3288) > claimed that ahbcfg was INCR16, but it wasn't. Since the bits weren't > shifted properly, the 0x7 ended up being masked and we ended up > programming 0x3 for the HBstLen. Let's s

Re: [PATCH] get_maintainer: Don't fallback to git by default

2015-10-26 Thread Laura Abbott
On 10/26/2015 03:11 PM, Javier Martinez Canillas wrote: The get_maintainer.pl script could be used to get a list of people that has to be in the copy list when posting patches for a given file but it defaults to git fallback so the list returned isn't really relevant and submitters are posting pa

Re: [PATCH 0/4] Patches to fix remote wakeup on rk3288 dwc2 "host" port

2015-10-26 Thread Rob Herring
On Sat, Oct 24, 2015 at 4:22 PM, Doug Anderson wrote: > Rob, > > On Sat, Oct 24, 2015 at 11:10 AM, Rob Herring wrote: >> On 10/23/2015 01:28 PM, Douglas Anderson wrote: >>> The "host1" port (AKA the dwc2 port that isn't the OTG port) on rk3288 >>> has a hardware errata that causes everything to g

Re: [PATCH 2/2] x86/cpufeature: Add CLZERO feature

2015-10-26 Thread Aravind Gopalakrishnan
On 10/26/2015 3:22 PM, Borislav Petkov wrote: On Mon, Oct 26, 2015 at 10:12:59AM -0500, Aravind Gopalakrishnan wrote: For large part yes, wrapped code in patch form with commit message etc. And modified comment a little bit. Does that still require his address in "From"? Yes, because it sounds

Re: [PATCH 08/10] pwm: core: add pulse feature to the PWM framework

2015-10-26 Thread kbuild test robot
Hi Olliver, [auto build test WARNING on pwm/for-next -- if it's inappropriate base, please suggest rules for selecting the more suitable base] url: https://github.com/0day-ci/linux/commits/Olliver-Schinagl/pwm-lpc18xx_pwm-use-pwm_set_chip_data/20151027-053853 reproduce: # apt-get ins

RE: [PATCH 4/4] perf tools: Introduce usage_with_options_msg()

2015-10-26 Thread 平松雅巳 / HIRAMATU,MASAMI
>From: Namhyung Kim [mailto:namhy...@gmail.com] On Behalf Of Namhyung Kim > >Now usage_with_options() setup a pager before printing message so normal >printf() or pr_err() will not be shown. The usage_with_options_msg() >can be used to print some help message before usage strings. Thanks! looks g

Re: [PATCH] f2fs: support file defragment

2015-10-26 Thread Jaegeuk Kim
Hi, On Fri, Oct 23, 2015 at 02:57:03PM +0800, Chao Yu wrote: > Hi Jaegeuk, > > > -Original Message- > > From: Jaegeuk Kim [mailto:jaeg...@kernel.org] > > Sent: Friday, October 23, 2015 2:12 AM > > To: Chao Yu > > Cc: linux-f2fs-de...@lists.sourceforge.net; linux-kernel@vger.kernel.org > >

[PATCH v3 6/7] drivers:hv: Define the channel type for Hyper-V PCI Express pass-through

2015-10-26 Thread jakeo
From: Jake Oshins This defines the channel type for PCI front-ends in Hyper-V VMs. Signed-off-by: Jake Oshins --- include/linux/hyperv.h | 11 +++ 1 file changed, 11 insertions(+) diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index ea0a0e3..5587899 100644 --- a/include/

[PATCH v3 5/7] PCI: irqdomain: Look up IRQ domain by fwnode_handle

2015-10-26 Thread jakeo
From: Jake Oshins The existing PCI code looks for an IRQ domain associated with a root PCI bus by looking in the Open Firmware tree. This patch introduces a second way to identify the associated IRQ domain, if the lookup in the OF tree fails. The handle used for the IRQ domain lookup was introdu

[PATCH v3 4/7] PCI: Record an fwnode associated with root PCI buses, optionally

2015-10-26 Thread jakeo
From: Jake Oshins This patch allows a PCI front-end implementation to supply an fwnode_handle associated with a root PCI bus, optionally. If supplied, the PCI driver records this. This patch supports the next patch in the series, which looks up an IRQ domain through this handle. Signed-off-by:

[RESEND PATCH] usb: remove unnecessary CONFIG_PM dependency from USB_OTG

2015-10-26 Thread Nathan Sullivan
The USB gadget support currently depends on power management (CONFIG_PM) being enabled, but does not actually need it enabled. Remove this dependency. Tested on Bay Trail hardware with dwc3 USB. Signed-off-by: Nathan Sullivan --- drivers/usb/core/Kconfig |1 - 1 file changed, 1 deletion(-)

Re: [PATCH v6.2 1/1] Input: Add userio module

2015-10-26 Thread Dmitry Torokhov
Hi, On Mon, Oct 26, 2015 at 09:51:57AM -0400, Lyude wrote: > Hi! So, I'm guessing you want me to merge this with the patch I've got > right now and post the new version? (Just making sure since I'm a bit > new to this :) > If you apply my patch on top of yours and it still works you do not need

Re: [PATCH v9 0/9] Goodix touchscreen enhancements

2015-10-26 Thread Dmitry Torokhov
On Mon, Oct 26, 2015 at 07:21:12PM +0100, Karsten Merker wrote: > On Mon, Oct 26, 2015 at 04:06:29PM +0100, Bastien Nocera wrote: > > On Mon, 2015-10-12 at 18:24 +0300, Irina Tirdea wrote: > > > > v9 only adds GPIOLIB dependency in Kconfig for patch 2: > > > "Input: goodix - reset device at init".

SECOND MAIL NOTICE OF (€950,000.00)

2015-10-26 Thread Qatar Foundation
Dear Recipient, You have been selected to receive €950,000.00 Euro, from the Qatar Foundation Award. Kindly contact Mr. Rashid Al-Naimi, through e-mail for more information; Yours sincerely, Mr. Rashid Al-Naimi. Contact e-mail: qfor...@gmail.com Chief Executive Officer of Qatar Foundation Endow

Re: [GIT PULL] On-demand device probing

2015-10-26 Thread Rafael J. Wysocki
On Mon, Oct 26, 2015 at 11:51 AM, Michael Turquette wrote: > Quoting Rafael J. Wysocki (2015-10-25 06:54:39) >> On Sun, Oct 25, 2015 at 12:06 AM, Mark Brown wrote: >> > On Sat, Oct 24, 2015 at 04:17:12PM +0200, Rafael J. Wysocki wrote: >> > >> >> Well, I'm not quite sure why exactly everyone is s

Linux 4.2.4 Wierd Fuse loading and errors with peripherals RH DVD Creator

2015-10-26 Thread Jeffrey Merkey
DVD Creator returns intermittent errors saying that the driver will not close properly with 4.2.4. The log shows seeks for block addresses which are out of bounds for the device size. Each time this happens I see a message saying fuse is initing. Same as other traces on previous bugs. For some

Re: [PATCH 0/4] Patches to fix remote wakeup on rk3288 dwc2 "host" port

2015-10-26 Thread Doug Anderson
Rob, On Mon, Oct 26, 2015 at 4:05 PM, Rob Herring wrote: >>> A DT reset controller seems like a bit of an overkill here. I think this >>> would be much more simple if we just add a phy reset hook to the phy >>> subsystem. >> >> Adding a reset hook in the PHY subsystem does seem like a reasonable

Re: [PATCH v8] seccomp, ptrace: add support for dumping seccomp filters

2015-10-26 Thread Tycho Andersen
Hi David, On Mon, Oct 26, 2015 at 04:07:01PM +0900, Kees Cook wrote: > On Mon, Oct 26, 2015 at 3:46 PM, Kees Cook wrote: > > Cool, thanks. I'll get this into my tree after kernel summit. Thanks > > for suffering through all this Tycho! > > Actually, since this depends on changes in net, could th

Re: [PATCH] get_maintainer: Don't fallback to git by default

2015-10-26 Thread Javier Martinez Canillas
Hello Laura, Thanks a lot for your feedback. On 10/27/2015 08:00 AM, Laura Abbott wrote: > On 10/26/2015 03:11 PM, Javier Martinez Canillas wrote: >> The get_maintainer.pl script could be used to get a list of people that >> has to be in the copy list when posting patches for a given file but it

Re: [PATCH] Staging:drivers:wlan_ng: code style issues

2015-10-26 Thread Greg KH
On Mon, Oct 26, 2015 at 11:21:48PM +0100, Bogicevic Sasa wrote: > On 10/26, Bogicevic Sasa wrote: > >Thanks for the review just sent the new patch, > >since change is very trivial I believe one liner like "fix all coding > >style issues in that and that file" is descriptive enough. No, not at all,

Re: [PATCH v4 4/5] regulator: tps65912: Add regulator driver for the TPS65912 PMIC

2015-10-26 Thread Mark Brown
On Mon, Oct 26, 2015 at 10:47:41AM -0500, Andrew F. Davis wrote: > On 10/25/2015 07:43 PM, Mark Brown wrote: > >>.of_compatible = "mediatek,mt6397-regulator", > >This is in the MFD, this is not used in actual systems. > Not sure what you mean by "actual systems", it looks like these > use it?:

[PATCH] ixgbe: Wait for 1ms, not 1us, after RST

2015-10-26 Thread dan . streetman
From: Dan Streetman The driver currently waits 1us after issuing a RST, but the spec requires it to wait 1ms. Signed-off-by: Dan Streetman Signed-off-by: Dan Streetman --- drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/d

Re: [PATCH v8] seccomp, ptrace: add support for dumping seccomp filters

2015-10-26 Thread Daniel Borkmann
Hi Tycho, On 10/27/2015 01:04 AM, Tycho Andersen wrote: On Mon, Oct 26, 2015 at 04:07:01PM +0900, Kees Cook wrote: On Mon, Oct 26, 2015 at 3:46 PM, Kees Cook wrote: Cool, thanks. I'll get this into my tree after kernel summit. Thanks for suffering through all this Tycho! Actually, since thi

[PATCH] ixgbe: check Master Disable bit after setting

2015-10-26 Thread dan . streetman
From: Dan Streetman Spec section 8.2.4.1.1 notes that after setting the PCIe Master Disable bit, it must be read to verify it was set before polling the Master Enable status bit. This adds the check to verify the Master Disable bit was set. This also corrects the spec section number reference -

[PATCH] bpf: sample: define aarch64 specific registers

2015-10-26 Thread Yang Shi
Define aarch64 specific registers for building bpf samples correctly. Signed-off-by: Yang Shi --- samples/bpf/bpf_helpers.h | 12 1 file changed, 12 insertions(+) diff --git a/samples/bpf/bpf_helpers.h b/samples/bpf/bpf_helpers.h index 3a44d3a..af44e56 100644 --- a/samples/bpf/bpf_

Re: [PATCH v3 5/7] PCI: irqdomain: Look up IRQ domain by fwnode_handle

2015-10-26 Thread kbuild test robot
Hi Jake, [auto build test ERROR on next-20151022 -- if it's inappropriate base, please suggest rules for selecting the more suitable base] url: https://github.com/0day-ci/linux/commits/jakeo-microsoft-com/New-paravirtual-PCI-front-end-for-Hyper-V-VMs/20151027-072118 config: x86_64-randconfig

Re: [PATCH v3 0/3] ARM: uniphier: add outer cache support and rework SMP operations

2015-10-26 Thread Olof Johansson
On Mon, Oct 26, 2015 at 01:16:50PM +0900, Masahiro Yamada wrote: > Hi Arnd, > > > 2015-10-10 15:59 GMT+09:00 Masahiro Yamada : > > Hi Arnd, > > > > > > 2015-10-06 15:22 GMT+01:00 Arnd Bergmann : > >> On Tuesday 06 October 2015 16:20:23 Arnd Bergmann wrote: > >>> On Friday 18 September 2015 13:37:

seccomp c/r patch

2015-10-26 Thread Tycho Andersen
Hi all, Here is a patch that we'd like to go via net-next, as it depends on previous changes in that tree. Thanks, Tycho -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.or

Re: [PATCH v2] ARM: dts: am335x-boneblack: Use pinctrl constants and AM33XX_IOPAD macro

2015-10-26 Thread Javier Martinez Canillas
Hello Andrew, On Sun, Oct 25, 2015 at 2:05 AM, Andrew F. Davis wrote: > Using constants for pinctrl allows better readability and removes > redundancy with comments. AM33XX_IOPAD allows us to use part of the > pinctrl physical address as in the TRM instead of an offset. > > Signed-off-by: Andrew

[PATCH net-next] seccomp, ptrace: add support for dumping seccomp filters

2015-10-26 Thread Tycho Andersen
This patch adds support for dumping a process' (classic BPF) seccomp filters via ptrace. PTRACE_SECCOMP_GET_FILTER allows the tracer to dump the user's classic BPF seccomp filters. addr should be an integer which represents the ith seccomp filter (0 is the most recently installed filter). data sho

Re: [PATCH 1/1] kthread: introduce kthread_get_run() to fix __nbd_ioctl()

2015-10-26 Thread Christoph Hellwig
On Sun, Oct 25, 2015 at 03:27:13PM +0100, Oleg Nesterov wrote: > It is not safe to use the task_struct returned by kthread_run(threadfn) > if threadfn() can exit before the "owner" does kthread_stop(), nothing > protects this task_struct. > > So __nbd_ioctl() looks buggy; a killed nbd_thread_send(

Working Together !!!!!!!!!

2015-10-26 Thread Andris
Hi, Can we work together for benefit ? .If yes answer the questions below and reply to ( andris...@aim.com ) Rdg, Andris -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel

Re: [PATCH] regulator: tps65217: remove tps65217.dtsi file

2015-10-26 Thread Mark Brown
On Mon, Oct 26, 2015 at 10:13:55AM +0100, Heiko Schocher wrote: > remove tps65217.dtsi and adapt all boards, which > used it. Acked-by: Mark Brown but really this is a DTS change so I'd expect it to go via arm-soc rather than me. signature.asc Description: PGP signature

Re: [PATCH v3 7/7] PCI: hv: New paravirtual PCI front-end for Hyper-V VMs

2015-10-26 Thread kbuild test robot
Hi Jake, [auto build test WARNING on next-20151022 -- if it's inappropriate base, please suggest rules for selecting the more suitable base] url: https://github.com/0day-ci/linux/commits/jakeo-microsoft-com/New-paravirtual-PCI-front-end-for-Hyper-V-VMs/20151027-072118 config: i386-allmodconf

Re: [RFC PATCH] clocksource: dw_apb_timer_of: support timer-based delay

2015-10-26 Thread Daniel Lezcano
On 10/20/2015 10:11 AM, Jisheng Zhang wrote: Implement an ARM delay timer to be used for udelay(). This allows us to skip the delay loop calibration at boot on Marvell BG2, BG2Q, BG2CD platforms. And after this patch, udelay() will be unaffected by CPU frequency changes. But, this driver is not

Re: [PATCH -rt] Revert "net: use synchronize_rcu_expedited()"

2015-10-26 Thread Paul E. McKenney
On Mon, Oct 26, 2015 at 02:14:55PM -0500, Josh Cartwright wrote: > This reverts commit be3fc413da9eb17cce0991f214ab019d16c88c41. > > While the use of synchronize_rcu_expedited() might make > synchronize_net() "faster", it does so at significant cost on RT > systems, as expediting a grace period fo

Re: [PATCH v3 4/7] PCI: Record an fwnode associated with root PCI buses, optionally

2015-10-26 Thread kbuild test robot
Hi Jake, [auto build test ERROR on next-20151022 -- if it's inappropriate base, please suggest rules for selecting the more suitable base] url: https://github.com/0day-ci/linux/commits/jakeo-microsoft-com/New-paravirtual-PCI-front-end-for-Hyper-V-VMs/20151027-072118 config: parisc-b180_defco

Re: [PATCH] iommu/amd: Fix amd_iommu_detect() (does not fix any issues).

2015-10-26 Thread Jerome Glisse
On Mon, Oct 26, 2015 at 12:07:17PM -0400, Konrad Rzeszutek Wilk wrote: > On Mon, Aug 31, 2015 at 06:13:03PM -0400, j.gli...@gmail.com wrote: > > From: Jérôme Glisse > > > > Fix amd_iommu_detect() to return positive value on success, like > > intended, and not zero. This will not change anything i

Re: [PATCH v2 0/4] x86: sigcontext fixes, again

2015-10-26 Thread Andy Lutomirski
On Mon, Oct 26, 2015 at 4:45 AM, Stas Sergeev wrote: > 26.10.2015 04:25, Andy Lutomirski пишет: >> This is take 2 at fixing x86 64-bit signals wrt SS. After a lot of >> thought, this is not controlled by any flags -- I would much prefer >> to avoid opt-in behavior. Instead, it just tries hard to

Re: [PATCH] iommu/amd: Fix amd_iommu_detect() (does not fix any issues).

2015-10-26 Thread Jerome Glisse
On Tue, Oct 27, 2015 at 09:47:48AM +0900, Jerome Glisse wrote: > On Mon, Oct 26, 2015 at 12:07:17PM -0400, Konrad Rzeszutek Wilk wrote: > > On Mon, Aug 31, 2015 at 06:13:03PM -0400, j.gli...@gmail.com wrote: > > > From: Jérôme Glisse > > > > > > Fix amd_iommu_detect() to return positive value on

Re: [PATCH v3 3/3] leds: rt5033: Add RT5033 Flash led device driver

2015-10-26 Thread Ingi Kim
Hi Jacek, Thanks for the review I can make this code better :) On 2015년 10월 26일 19:10, Jacek Anaszewski wrote: > Hi Ingi, > > Thanks for the update. I've found a few minor issues, please > refer to my comments below. > > On 10/23/2015 07:48 AM, Ingi Kim wrote: >> This patch adds device driver o

Re: [PATCH 1/2] hwmon: ina2xx: convert driver to using regmap

2015-10-26 Thread Guenter Roeck
On Mon, Oct 26, 2015 at 05:24:32PM +0100, Marc Titinger wrote: > Any sysfs "show" read access from the client app will result in reading > all registers (8 with ina226). Depending on the host this can limit the > best achievable read rate. > > This changeset allows for individual register accesses

Re: Can arm64 plan to support hibernation(suspend-to-disk)in current kernel(ATF)?

2015-10-26 Thread wangfei
On 2015/10/26 18:09, Lorenzo Pieralisi wrote: > On Mon, Oct 26, 2015 at 05:51:53PM +0800, wangfei wrote: >> Hi all, >> >> Is any one knew,whether mainline kernel and psci plan to support hibernation >> on arm64 architecture now? > > Suspend-to-disk relies on PSCI SYSTEM_OFF to be implemented and

Re: [PATCH 2/2] x86/cpufeature: Add CLZERO feature

2015-10-26 Thread Borislav Petkov
On Mon, Oct 26, 2015 at 05:50:47PM -0500, Aravind Gopalakrishnan wrote: > How do you prefer a V2 for this to be sent though- > Shall I wait until your fixes are in tip.git and resend? > Or send a V2 on top of current tip.git? Actually, I just showed it to hpa and he says those CPUID leafs are goin

Re: [PATCH 2/2] hwmon: ina2xx: give precedence to DT over checking for platform data.

2015-10-26 Thread Guenter Roeck
On Mon, Oct 26, 2015 at 05:24:33PM +0100, Marc Titinger wrote: > when checking for the value of the shunt resistor. > > Signed-off-by: Marc Titinger > --- > drivers/hwmon/ina2xx.c | 21 ++--- > 1 file changed, 10 insertions(+), 11 deletions(-) > > diff --git a/drivers/hwmon/ina2

Re: [PATCH 0/5 v3] Fix NVMe driver support on Power with 32-bit DMA

2015-10-26 Thread David Miller
From: Nishanth Aravamudan Date: Fri, 23 Oct 2015 13:54:20 -0700 > 1) add a generic dma_get_page_shift implementation that just returns > PAGE_SHIFT I won't object to this patch series, but if I had implemented this I would have required the architectures to implement this explicitly, one-by-one.

Re: [PATCH 1/2] hwmon: ina2xx: convert driver to using regmap

2015-10-26 Thread Guenter Roeck
On Mon, Oct 26, 2015 at 05:24:32PM +0100, Marc Titinger wrote: > Any sysfs "show" read access from the client app will result in reading > all registers (8 with ina226). Depending on the host this can limit the > best achievable read rate. > > This changeset allows for individual register accesses

Re: [PATCH v2] iov: restore NumVFs register to 0 before return from virtfn_max_buses()

2015-10-26 Thread ethan zhao
On 2015/10/22 4:54, Bjorn Helgaas wrote: On Thu, Oct 15, 2015 at 12:16:00PM -0500, Bjorn Helgaas wrote: Hi Ethan, On Wed, Sep 16, 2015 at 12:19:53PM +0900, Ethan Zhao wrote: After commit 4449f079722c ("PCI: Calculate maximum number of buses required for VFs"),the initial value of NumVFs regis

<    2   3   4   5   6   7   8   9   >