laina

2015-09-11 Thread YesGrowth Loans®
Hyvää päivää, Olen rouva Rose Butler, toimeenpaneva agentti hyvin tunnustettu laillinen luotonanto yritys tunnetaan YesGrowth Lainat. Onko sinulla huono luotto tai olet tarvitsevat rahaa maksaa laskujaan? meidän korko on 3%. Täytä alla oleva lomake jos kiinnostaa. Koko nimi: sukupuo

Re: [PATCH] ARM: exynos_defconfig: Disable simplefb support

2015-09-11 Thread Javier Martinez Canillas
Hello Krzysztof, On 09/11/2015 07:01 AM, Krzysztof Kozlowski wrote: > On 10.09.2015 22:42, Javier Martinez Canillas wrote: >> The simplefb driver allows the kernel to render on a pre-allocated >> buffer that's been initialized by firmware before the kernel boots. >> >> This option was enabled to h

RE: [PATCH] PM / devfreq: Fix incorrect type issue.

2015-09-11 Thread Xiaolong Ye
> > > > time_in_state in struct devfreq is defined as unsigned long, so > > devm_kzalloc should use sizeof(unsigned long) as argument instead of > > sizeof(unsigned int), otherwise it will cause unexpected result in > > 64bit system. > > > > Signed-off-by: Xiaolong Ye > > Signed-off-by: Kevin Li

kooperace?

2015-09-11 Thread Email
odpovezte mi na nize uvedenou e-mailovou adresu pro vysvetlení výroku. E-mail: chn.j...@gmail.com -- 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

Re: [PATCH] ARM: exynos_defconfig: Disable simplefb support

2015-09-11 Thread Krzysztof Kozlowski
On 11.09.2015 16:07, Javier Martinez Canillas wrote: > Hello Krzysztof, > > On 09/11/2015 07:01 AM, Krzysztof Kozlowski wrote: >> On 10.09.2015 22:42, Javier Martinez Canillas wrote: >>> The simplefb driver allows the kernel to render on a pre-allocated >>> buffer that's been initialized by firmwa

[PATCH 1/2] ARM: dts: support Highspeed for rk3188-radxarock

2015-09-11 Thread Shawn Lin
Add cap-sd-highspeed and cap-mmc-highspeed for rk3188-radxarock board to make sd cards running faster. Signed-off-by: Shawn Lin --- arch/arm/boot/dts/rk3188-radxarock.dts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/rk3188-radxarock.dts b/arch/arm/boo

[PATCH 2/2] ARM: dts: support Highspeed for rk3066a platform

2015-09-11 Thread Shawn Lin
Add cap-sd-highspeed and cap-mmc-highspeed for rk3066a platform to make sd cards running faster. Signed-off-by: Shawn Lin --- arch/arm/boot/dts/rk3066a.dtsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/boot/dts/rk3066a.dtsi b/arch/arm/boot/dts/rk3066a.dtsi index 946f187..b50a7

[PATCHv2 00/16] staging: rtl8192u: code clean up

2015-09-11 Thread Raphaël Beamonte
Hi, Following comments from Dan Carpenter on my previous patch to limit the lines lengths for rtl8192u/r8192U_core.c [1], please find attached a set of patches splitting those operations. I also took care of keeping the code the more readable possible, some of those patchs even aim to clean the o

[PATCHv2 03/16] staging: rtl8192u: r8192U_core: add temporary variables to keep lines under 80 characters

2015-09-11 Thread Raphaël Beamonte
Add some temporary variables to reduce line length under the maximum of 80 characters, as per the kernel code style. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 139 ++--- 1 file changed, 94 insertions(+), 45 deletions(-) diff --git a

[PATCHv2 08/16] staging: rtl8192u: r8192U_core: rtl8192_process_phyinfo: rename variable slide_beacon_adc_pwdb_index to sb_index

2015-09-11 Thread Raphaël Beamonte
Rename variable to a shorter name to allow easier code refactoring in following patch. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/sta

[PATCHv2 06/16] staging: rtl8192u: r8192U_core: rtl8192_read_eeprom_info: reorganize function

2015-09-11 Thread Raphaël Beamonte
Refactor code to avoid multiple check of same boolean value, and to make the code clearer. This patches also implements the necessary changes for the code lines in this function to be under 80 chars. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 259 +++

[PATCHv2 07/16] staging: rtl8192u: r8192U_core: rtl8192_process_phyinfo: rename variable pprevious_stats to prev_stats

2015-09-11 Thread Raphaël Beamonte
Rename variable to a shorter name to allow easier code refactoring in following patch. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 84 +- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/drivers/staging/rtl8192u/r819

[PATCHv2 04/16] staging: rtl8192u: r8192U_core: reverse conditions to get lines under 80 characters

2015-09-11 Thread Raphaël Beamonte
Reverse some conditions to clean the code and allow to have lines under 80 characters, as to follow the kernel code style. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 48 ++ 1 file changed, 25 insertions(+), 23 deletions(-) diff -

[PATCHv2 05/16] staging: rtl8192u: r8192U_core: rtl8192_adapter_start: reorganize function

2015-09-11 Thread Raphaël Beamonte
Reverse conditions and use goto in the function rtl8192_adapter_start to have most of it under 80 characters per line. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 91 ++ 1 file changed, 47 insertions(+), 44 deletions(-) diff --git

[PATCHv2 09/16] staging: rtl8192u: r8192U_core: rtl8192_process_phyinfo: rename variable slide_beacon_adc_pwdb_statistics to sb_stats

2015-09-11 Thread Raphaël Beamonte
Rename variable to a shorter name to allow easier code refactoring in following patch. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/

[PATCHv2 01/16] staging: rtl8192u: r8192U_core: fix comments lines over 80 characters

2015-09-11 Thread Raphaël Beamonte
Move, replace and reorganize comments to stay under 80 characters per line, as to follow the kernel code style. Some unuseful comments have been removed. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 232 ++--- 1 file changed, 153 insert

[PATCHv2 13/16] staging: rtl8192u: r8192U_core: rtl8192_tx: replace some inline conditions

2015-09-11 Thread Raphaël Beamonte
Replace some inline conditions by a full if-else statement to make the source clearer and follow the 80 characters kernel code style rule. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --gi

[PATCHv2 10/16] staging: rtl8192u: r8192U_core: rtl8192_process_phyinfo: remove unneeded variable

2015-09-11 Thread Raphaël Beamonte
Local variable last_beacon_adc_pwdb was used to store a value that wasn't used after. This patch removes that variable. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/staging/rtl8192u/r81

[PATCHv2 11/16] staging: rtl8192u: r8192U_core: rtl8192_process_phyinfo: rename variable rfpath to rfp

2015-09-11 Thread Raphaël Beamonte
Rename variable to a shorter name to allow easier code refactoring in following patches. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 31 --- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/drivers/staging/rtl8192u/r8192

[PATCHv2 14/16] staging: rtl8192u: r8192U_core: rtl8192_ioctl: reorganize function

2015-09-11 Thread Raphaël Beamonte
Reorganize function rtl8192_ioctl to replace a switch with only one case besides the default by an if statement. This also allows to follow the 80 characters kernel code style rule. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 141 -

[PATCHv2 12/16] staging: rtl8192u: r8192U_core: rtl8192_process_phyinfo: reorganize function

2015-09-11 Thread Raphaël Beamonte
Reorganize function to make it cleaner, and respect the 80 characters kernel code style rule. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 140 +++-- 1 file changed, 81 insertions(+), 59 deletions(-) diff --git a/drivers/staging/rtl819

[PATCHv2 16/16] staging: rtl8192u: remove all code framed by symbol TO_DO_LIST

2015-09-11 Thread Raphaël Beamonte
The symbol TO_DO_LIST was used in the code to frame sections of code unused or unusable. This patch remove all code framed by that symbol in this driver. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/ieee80211/ieee80211.h | 4 +- drivers/staging/rtl8192u/ieee80211/ieee80211_

[PATCHv2 15/16] staging: rtl8192u: r8192U_core: replace else { if() {} } by else if () {}

2015-09-11 Thread Raphaël Beamonte
An else block only contained an if statement. Replace that else block by an else if block instead. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/drivers/staging/rtl8192u/r8192U_core.c b

Re: [PATCH 2/2] [media] media-device: split media initialization and registration

2015-09-11 Thread Javier Martinez Canillas
Hello Sakari, On 09/11/2015 07:51 AM, Sakari Ailus wrote: > Hi Javier, > > Javier Martinez Canillas wrote: >> Hello Sakari, >> >> On 09/10/2015 07:14 PM, Sakari Ailus wrote: >>> Hi Javier, >>> >>> Thanks for the set! A few comments below. >>> >> >> Thanks to you for your feedback. >> >>> Javier M

[PATCHv2 02/16] staging: rtl8192u: r8192U_core: add line breaks to keep lines under 80 characters

2015-09-11 Thread Raphaël Beamonte
Add line breaks in multiple lines to keep them under 80 characters, as to follow the kernel code style. Signed-off-by: Raphaël Beamonte --- drivers/staging/rtl8192u/r8192U_core.c | 626 ++--- 1 file changed, 421 insertions(+), 205 deletions(-) diff --git a/drivers/st

[PATCH v2] cpufreq: imx: update the clock switch flow to support imx6ul

2015-09-11 Thread Bai Ping
For i.MX6UL, the clock switch flow is slightly different from other i.MX6 SOCs. It has a 'secondary_sel' clk that will be used when the CPU freq is higher than 396MHz. So the clock switch flow in 'set_target' callback need to update to support i.MX6UL in the common i.MX6 SOC cpufreq driver. Signed

Re: [PATCH V4 1/4] kvm: factor out core eventfd assign/deassign logic

2015-09-11 Thread Cornelia Huck
On Fri, 11 Sep 2015 11:17:34 +0800 Jason Wang wrote: > This patch factors out core eventfd assign/deassign logic and leave > the argument checking and bus index selection to callers. > > Cc: Gleb Natapov > Cc: Paolo Bonzini > Signed-off-by: Jason Wang > --- > virt/kvm/eventfd.c | 83 > +

Re: [PATCH] ARM: exynos_defconfig: Disable simplefb support

2015-09-11 Thread Javier Martinez Canillas
Hello Krzysztof, On 09/11/2015 09:16 AM, Krzysztof Kozlowski wrote: > On 11.09.2015 16:07, Javier Martinez Canillas wrote: >> Hello Krzysztof, >> >> On 09/11/2015 07:01 AM, Krzysztof Kozlowski wrote: >>> On 10.09.2015 22:42, Javier Martinez Canillas wrote: The simplefb driver allows the kerne

Re: [PATCH V4 2/4] kvm: fix double free for fast mmio eventfd

2015-09-11 Thread Cornelia Huck
On Fri, 11 Sep 2015 11:17:35 +0800 Jason Wang wrote: > We register wildcard mmio eventfd on two buses, one for KVM_MMIO_BUS > and another is KVM_FAST_MMIO_BUS but with a single iodev > instance. This will lead an issue: kvm_io_bus_destroy() knows nothing > about the devices on two buses points to

Re: [PATCH 5/6] sched/fair: Get rid of scaling utilization by capacity_orig

2015-09-11 Thread Leo Yan
Hi Morten, On Tue, Sep 08, 2015 at 05:53:31PM +0100, Morten Rasmussen wrote: > On Tue, Sep 08, 2015 at 03:31:58PM +0100, Morten Rasmussen wrote: > > On Tue, Sep 08, 2015 at 02:52:05PM +0200, Peter Zijlstra wrote: > > > > > > Something like teh below.. > > > > > > Another thing to ponder; the dow

Re: [PATCH RESEND 2/5] extcon: arizona: Add support for new ADC value headphone detect

2015-09-11 Thread Chanwoo Choi
On 2015년 09월 09일 17:34, Charles Keepax wrote: > Newer devices give users the option to make the 3/4 pole jack > determination using a software comparison rather than a hardware one. > This patch adds support for this functionality. > > Signed-off-by: Charles Keepax > --- > drivers/extcon/extcon-

Re: [PATCH RESEND 4/5] extcon: arizona: Add support for general purpose switch

2015-09-11 Thread Chanwoo Choi
On 2015년 09월 09일 17:34, Charles Keepax wrote: > The switch is typically used in conjunction with the MICDET clamp in > order to suppress pops and clicks associated with jack insertion. > > Signed-off-by: Charles Keepax > --- > drivers/extcon/extcon-arizona.c |6 ++ > 1 files changed, 6 i

Re: [PATCH RESEND 5/5] mfd: arizona: Update DT doc for new mic detection bindings

2015-09-11 Thread Chanwoo Choi
On 2015년 09월 09일 17:34, Charles Keepax wrote: > Signed-off-by: Charles Keepax > --- > Documentation/devicetree/bindings/mfd/arizona.txt | 21 > + > include/dt-bindings/mfd/arizona.h |5 + > 2 files changed, 26 insertions(+), 0 deletions(-) > > diff

[PATCH] arm64: dma-mapping: check whether cma area is initialized or not

2015-09-11 Thread Jisheng Zhang
If CMA is turned on and CMA size is set to zero, kernel should behave as if CMA was not enabled at compile time. Every dma allocation should check existence of cma area before requesting memory. Arm has done this by commit e464ef16c4f0 ("arm: dma-mapping: add checking cma area initialized"), also

Re: [PATCH RESEND 1/5] mfd: arizona: Add registers for ADC microphone detection

2015-09-11 Thread Chanwoo Choi
Hi Lee, Charles, I make the temporary branch[1] and then apply patch1-patch4 without patch5 because of patch5 may need the ack message by DT maintainer. If Lee want to make the immutable branch and send the pull request, I'll make the immutable branch based on Linux-4.3-rcX and send it to MFD main

Re: [PATCH 3/6] extcon: arizona: Ignore jd_invert for MICD_CLAMP_STS

2015-09-11 Thread Chanwoo Choi
On 2015년 09월 10일 20:41, Charles Keepax wrote: > From: Nariman Poushin > > The polarity of MICD_CLAMP_STS does not change when different clamp > modes are used, this patch corrects this issue. > > Signed-off-by: Nariman Poushin > Signed-off-by: Charles Keepax > --- > drivers/extcon/extcon-ariz

Re: [PATCH 4/6] extcon: arizona: Add device binding for jack detect polarity inversion

2015-09-11 Thread Chanwoo Choi
On 2015년 09월 10일 20:41, Charles Keepax wrote: > Signed-off-by: Charles Keepax > --- > drivers/extcon/extcon-arizona.c |3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/drivers/extcon/extcon-arizona.c b/drivers/extcon/extcon-arizona.c > index 6d030a0..34b5a3b 100644

Re: [PATCH v2] cpufreq: imx: update the clock switch flow to support imx6ul

2015-09-11 Thread Viresh Kumar
On 11-09-15, 23:41, Bai Ping wrote: > + if (of_machine_is_compatible("fsl,imx6ul")) { > + pll2_bus_clk = clk_get(cpu_dev, "pll2_bus"); > + secondary_sel_clk = clk_get(cpu_dev, "secondary_sel"); > + if (IS_ERR(pll2_bus_clk) || IS_ERR(secondary_sel_clk)) { > +

Re: [PATCH 5/6] extcon: arizona: Add device binding for second jack detect pin on GPIO5

2015-09-11 Thread Chanwoo Choi
On 2015년 09월 10일 20:41, Charles Keepax wrote: > Signed-off-by: Charles Keepax > --- > drivers/extcon/extcon-arizona.c |5 + > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/drivers/extcon/extcon-arizona.c b/drivers/extcon/extcon-arizona.c > index 34b5a3b..5fbe893 10064

Re: [PATCH 6/6] mfd: arizona: Update DT binding documentation for jack detection

2015-09-11 Thread Chanwoo Choi
On 2015년 09월 10일 20:41, Charles Keepax wrote: > Add additional bindings for both inverting the polarity of the jack > detection pins and allowing the use of a second jack detection pin. Note > that the second jack detection pin is hard wired in the chip so can only > be enabled through the binding,

[RFC PATCH 0/3] 1588 support for Zynq Ultrascale+ MPSoC

2015-09-11 Thread Harini Katakam
This series adds 1588 support in Cadence MACB driver for Zynq Ultrascale+ MPSoC This IP supports HW timestamping and this is accesible through extended BD. The first patch adds support for extended BD through a config option. Since this required the use two extra u32 variables in the macb_dma_desc

[RFC PATCH 1/3] net: macb: Add support for extended BD with a config option

2015-09-11 Thread Harini Katakam
Cadence GEM supports extended buffer descriptors. This patch adds a config option to enable use of extended BD. This adds two extra words to the TX BD and RX BD by configuring the necessary registers. Corresponding variables are added to the macb_dma_desc structure. Signed-off-by: Harini Katakam

Re: [PATCH 1/6] mfd: arizona: Add TST_CAP bits for headphone detection

2015-09-11 Thread Chanwoo Choi
Hi Charles, I recommend that you make the cover-letter patches on later. If you better to explain the patch description on cover-letter patch, we will understand what is this patch-set more easily. Thanks, Chanwoo Choi On 2015년 09월 10일 20:41, Charles Keepax wrote: > On Florida some additional se

[RFC PATCH 2/3] net: macb: Add support for 1588 for Zynq Ultrascale+ MPSoC

2015-09-11 Thread Harini Katakam
Cadence GEM in Zynq Ultrascale+ MPSoC supports 1588 and provides a 102 bit time counter with 48 bits for seconds, 30 bits for nsecs and 24 bits for sub-nsecs. The timestamp is made available to the SW through registers as well as (more precisely) through upper two words in an extended BD. This pat

Re: [RFC] asm-generic/pci_iomap.h: make custom PCI BAR requirements explicit

2015-09-11 Thread Martin Schwidefsky
On Tue, 08 Sep 2015 15:42:40 +0200 Arnd Bergmann wrote: > On Thursday 03 September 2015 03:44:15 Luis R. Rodriguez wrote: > > On Sun, Aug 30, 2015 at 09:30:26PM +0200, Arnd Bergmann wrote: > > > On Friday 28 August 2015 17:17:27 Luis R. Rodriguez wrote: > > > > While at it, as with the ioremap*()

[RFC PATCH 3/3] devicetree: macb: Add optional property tsu-clk

2015-09-11 Thread Harini Katakam
Add TSU clock frequency to be used for 1588 support in macb driver. Signed-off-by: Harini Katakam --- Documentation/devicetree/bindings/net/macb.txt |3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree/bindings/net/macb.txt b/Documentation/devicetree/bindings/net/m

Re: [PATCH V4 0/4] Fast MMIO eventfd fixes

2015-09-11 Thread Michael S. Tsirkin
On Fri, Sep 11, 2015 at 11:17:33AM +0800, Jason Wang wrote: > Hi: > > This series fixes two issues of fast mmio eventfd: > > 1) A single iodev instance were registerd on two buses: KVM_MMIO_BUS >and KVM_FAST_MMIO_BUS. This will cause double in >ioeventfd_destructor() > 2) A zero length io

cpufreq: mediatek: allow modular build

2015-09-11 Thread Arnd Bergmann
The newly merged cpufreq-mt8173 driver breaks the ARM allmodconfig build because of a dependency on the cpu-cooling infrastructure that may be built as a loadable module: drivers/built-in.o: In function `mtk_cpufreq_ready': binder.c:(.text+0x324c8c): undefined reference to `of_cpufreq_cooling_regi

Re: [PATCH 2/6] extcon: arizona: Additional settings to improve accuracy of HP detect

2015-09-11 Thread Chanwoo Choi
On 2015년 09월 10일 20:41, Charles Keepax wrote: > If the TST_CAP_SEL bits aren't set correctly on wm5110/8280 there will > be a 100k load along side the headphones, which will affect the accurary > towards the very top of the detection range. This patch sets those bits. > > Signed-off-by: Charles Ke

Re: [PATCH V4 1/4] kvm: factor out core eventfd assign/deassign logic

2015-09-11 Thread Paolo Bonzini
On 11/09/2015 09:39, Cornelia Huck wrote: > > +static int > > +kvm_deassign_ioeventfd_idx(struct kvm *kvm, enum kvm_bus bus_idx, > > + struct kvm_ioeventfd *args) > > While this file uses newline before function name quite often, putting > it on the same line seems more comm

Re: cpufreq: mediatek: allow modular build

2015-09-11 Thread Viresh Kumar
On 11-09-15, 10:15, Arnd Bergmann wrote: > The newly merged cpufreq-mt8173 driver breaks the ARM allmodconfig > build because of a dependency on the cpu-cooling infrastructure that > may be built as a loadable module: > > drivers/built-in.o: In function `mtk_cpufreq_ready': > binder.c:(.text+0x324

Re: [PATCH 5/6] sched/fair: Get rid of scaling utilization by capacity_orig

2015-09-11 Thread Yuyang Du
On Thu, Sep 10, 2015 at 12:07:27PM +0200, Peter Zijlstra wrote: > > > Still don't understand why it's a unit problem. IMHO LOAD/UTIL and > > > CAPACITY have no unit. > > > > To be more accurate, probably, LOAD can be thought of as having unit, > > but UTIL has no unit. > > But I'm thinking that i

[PATCH V2 1/3] arm64: dts: Add reset dts config for Hisilicon Hi6220 SoC

2015-09-11 Thread Chen Feng
Add reset controller for hi6220 hikey-board. Signed-off-by: Chen Feng --- arch/arm64/boot/dts/hisilicon/hi6220.dtsi | 7 +++ 1 file changed, 7 insertions(+) diff --git a/arch/arm64/boot/dts/hisilicon/hi6220.dtsi b/arch/arm64/boot/dts/hisilicon/hi6220.dtsi index 3f03380..3bbc846 100644 ---

[PATCH V2 3/3] reset: hi6220: Reset driver for hisilicon hi6220 SoC

2015-09-11 Thread Chen Feng
Add reset driver for hi6220-hikey board,this driver supply deassert of IP. on hi6220 SoC. Signed-off-by: Chen Feng --- drivers/reset/Kconfig | 1 + drivers/reset/Makefile | 1 + drivers/reset/hisilicon/Kconfig| 5 ++ drivers/reset/hisilicon/Makefile

[PATCH V2 2/3] reset: hisilicon: document hisi-hi6220 reset controllers bindings

2015-09-11 Thread Chen Feng
Add DT bindings documentation for hi6220 SoC reset controller. Signed-off-by: Chen Feng --- .../bindings/reset/hisilicon,hi6220-reset.txt | 97 ++ 1 file changed, 97 insertions(+) create mode 100644 Documentation/devicetree/bindings/reset/hisilicon,hi6220-reset.txt di

Re: cpufreq: mediatek: allow modular build

2015-09-11 Thread Arnd Bergmann
On Friday 11 September 2015 13:47:53 Viresh Kumar wrote: > On 11-09-15, 10:15, Arnd Bergmann wrote: > > The newly merged cpufreq-mt8173 driver breaks the ARM allmodconfig > > build because of a dependency on the cpu-cooling infrastructure that > > may be built as a loadable module: > > > > drivers

平时最多也就联系了三千家,全球还有十几万客户在哪里?

2015-09-11 Thread iSayor
您好: 您还在用ali平台开发外贸客户? 还在使用展会宣传企业和产品? 你out了!!! 当前外贸客户开发难,您是否也在寻找展会,B2B之外好的渠道? 行业全球十几万客户,平时最多也就联系了三千家,您是否想把剩下的也开发到? 加QQ2652697913给您演示下主动开发客户的方法,先用先受益,已经有近万家企业领先您使用!!。 广东省商业联合会推荐,主动开发客户第一品牌,近万家企业正在获益。您可以没有使用,但是不能没有了解。 -- To unsubscribe from this list: send the line "unsubs

Re: [PATCH] x86: Wire up 32-bit direct socket calls

2015-09-11 Thread Heiko Carstens
On Mon, Sep 07, 2015 at 02:53:12PM +0200, Arnd Bergmann wrote: > On Wednesday 02 September 2015 13:16:19 H. Peter Anvin wrote: > > On 09/02/2015 02:48 AM, Geert Uytterhoeven wrote: > > > > > > Should all other architectures follow suit? > > > Or should we follow the s390 approach: > > > > > > >

Re: cpufreq: mediatek: allow modular build

2015-09-11 Thread Viresh Kumar
On 11-09-15, 10:22, Arnd Bergmann wrote: > In my approach, I decided to allow the driver to be a module, as that > seems nicer for multi_v7_defconfig, but I now see that there are > several other drivers that can only be built-in, so if we decided to > make that the general strategy we should chang

Re: [PATCH V4 3/4] kvm: fix zero length mmio searching

2015-09-11 Thread Paolo Bonzini
On 11/09/2015 05:17, Jason Wang wrote: > + int len = r2->len ? r1->len : 0; > + > if (r1->addr < r2->addr) > return -1; > - if (r1->addr + r1->len > r2->addr + r2->len) > + if (r1->addr + len > r2->addr + r2->len) > return 1; Perhaps better:

Re: [PATCH 0/2] btrfs: fortification for GFP_NOFS allocations

2015-09-11 Thread Michal Hocko
On Wed 09-09-15 18:13:39, Vlastimil Babka wrote: > On 08/19/2015 08:17 PM, Chris Mason wrote: > >On Wed, Aug 19, 2015 at 02:17:39PM +0200, mho...@kernel.org wrote: > >>Hi, > >>these two patches were sent as a part of a larger RFC which aims at > >>allowing GFP_NOFS allocations to fail to help sort

Re: [PATCH man-pages v2] capabilities.7, prctl.2: Document ambient capabilities

2015-09-11 Thread Michael Kerrisk (man-pages)
Hi Andy, Not that this has hit mainline, would you be willing to refresh this man-pages patch? Thanks, Michael On 15 May 2015 at 08:43, Andy Lutomirski wrote: > Signed-off-by: Andy Lutomirski > --- > > There was no v1. I'm calling this v2 to keep it in sync with the kernel > patch versioni

Re: [PATCH V4 0/4] Fast MMIO eventfd fixes

2015-09-11 Thread Paolo Bonzini
On 11/09/2015 10:15, Michael S. Tsirkin wrote: > I think we should add a capability for fast mmio. > This way, userspace can avoid crashing buggy kernels. I agree. Paolo -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.

Re: [PATCH V4 3/4] kvm: fix zero length mmio searching

2015-09-11 Thread Cornelia Huck
On Fri, 11 Sep 2015 10:26:41 +0200 Paolo Bonzini wrote: > On 11/09/2015 05:17, Jason Wang wrote: > > + int len = r2->len ? r1->len : 0; > > + > > if (r1->addr < r2->addr) > > return -1; > > - if (r1->addr + r1->len > r2->addr + r2->len) > > + if (r1->addr + len > r2->addr +

Re: cpufreq: mediatek: allow modular build

2015-09-11 Thread Arnd Bergmann
On Friday 11 September 2015 13:55:36 Viresh Kumar wrote: > On 11-09-15, 10:22, Arnd Bergmann wrote: > > In my approach, I decided to allow the driver to be a module, as that > > seems nicer for multi_v7_defconfig, but I now see that there are > > several other drivers that can only be built-in, so

Re: cpufreq: mediatek: allow modular build

2015-09-11 Thread Viresh Kumar
On 11-09-15, 10:36, Arnd Bergmann wrote: > I don't consider that a bug: a module with just an init function and > no exit function can be loaded once and never unloaded, which is not > nice for debugging, but is otherwise fully functional. For me, there are two essential things that a module has t

Re: [PATCH v2] cpufreq: imx: update the clock switch flow to support imx6ul

2015-09-11 Thread Bai Ping
On 2015/9/11 16:07, Viresh Kumar wrote: On 11-09-15, 23:41, Bai Ping wrote: + if (of_machine_is_compatible("fsl,imx6ul")) { + pll2_bus_clk = clk_get(cpu_dev, "pll2_bus"); + secondary_sel_clk = clk_get(cpu_dev, "secondary_sel"); + if (IS_ERR(pll2_

Re: [PATCH 5/6] sched/fair: Get rid of scaling utilization by capacity_orig

2015-09-11 Thread Yuyang Du
On Thu, Sep 10, 2015 at 01:10:19PM +0100, Morten Rasmussen wrote: > > > so it appear to be intended to be using low resolution like load_avg > > > (weight is scaled down before it is passed into __update_load_avg()), > > > but util_avg is shifted up to high resolution. It should be: > > > > > >

Re: [PATCH V2 3/3] reset: hi6220: Reset driver for hisilicon hi6220 SoC

2015-09-11 Thread Arnd Bergmann
On Friday 11 September 2015 16:18:38 Chen Feng wrote: > +static int __init hi6220_reset_init(void) > +{ > + int ret; > + struct device_node *np; > + struct hi6220_reset_data *data; > + > + data = kzalloc(sizeof(*data), GFP_KERNEL); > + if (!data) > + return -ENOMEM;

Re: [Patch V1] x86, mce: CPU synchronization for broadcast MCE's is surprised by offline CPUs

2015-09-11 Thread Borislav Petkov
On Thu, Sep 10, 2015 at 08:26:38PM -0400, Ashok Raj wrote: > +#define OFFLINE_CPU_LOG_LEN 16 > + > +struct offline_cpu_mce { > + unsigned short head; > + unsigned short tail; > + struct mce mce_log[OFFLINE_CPU_LOG_LEN]; > +}; > + > +static struct offline_cpu_mce offline_mce; > +static

Re: [PATCH 01/23] userfaultfd: linux/Documentation/vm/userfaultfd.txt

2015-09-11 Thread Michael Kerrisk (man-pages)
On 05/14/2015 07:30 PM, Andrea Arcangeli wrote: > Add documentation. Hi Andrea, I do not recall... Did you write a man page also for this new system call? Thanks, Michael > Signed-off-by: Andrea Arcangeli > --- > Documentation/vm/userfaultfd.txt | 140 >

Re: [PATCH] x86: Wire up 32-bit direct socket calls

2015-09-11 Thread Arnd Bergmann
On Friday 11 September 2015 10:24:29 Heiko Carstens wrote: > > FWIW, the s390 approach (ignoring the "new" system calls) is only temporarily. > I'll enable the seperate calls later when I have time to test everything, > especially the glibc stuff. Ok, thanks for clarifying. > The same is true fo

Re: [PATCH v2 1/5] ACPI: add in a bad_madt_entry() function to eventually replace the macro

2015-09-11 Thread Sudeep Holla
On 10/09/15 21:43, Al Stone wrote: On 09/10/2015 10:20 AM, Sudeep Holla wrote: [...] From the code inspection, I can see we have 3 users of acpi_parse_entries not just MADT but also PCC and NUMA/SRAT Something like this solves this issue: - if (bad_madt_entry(table_header,

Re: [PATCH RESEND 1/5] mfd: arizona: Add registers for ADC microphone detection

2015-09-11 Thread Lee Jones
On Fri, 11 Sep 2015, Chanwoo Choi wrote: > I make the temporary branch[1] and then apply patch1-patch4 without patch5 > because of patch5 may need the ack message by DT maintainer. If Lee want to > make the immutable branch and send the pull request, I'll make the immutable > branch based on Linux-

[PATCH 1/2] mmc: sdhci-of-arasan: add phy support for sdhci-of-arasan

2015-09-11 Thread Shawn Lin
This patch adds Generic PHY access for sdhci-of-arasan. Driver can get PHY handler from dt-binding, and power-on/init the PHY. Also we add pm ops for PHY here if CONFIG_PM_SLEEP is enabled. Signed-off-by: Shawn Lin --- drivers/mmc/host/sdhci-of-arasan.c | 90

[PATCH 2/2] Documentation: bindings: add description of phy for sdhci-of-arasan

2015-09-11 Thread Shawn Lin
This patch adds phys and phy-names for sdhci-of-arasan as optional properties, and details the example as well. Signed-off-by: Shawn Lin --- Documentation/devicetree/bindings/mmc/arasan,sdhci.txt | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Documentation/device

Skrzynka Pocztowa Zostala Tymczasowo Zawieszona!!!

2015-09-11 Thread System Admin
Konto e-mail uzytkownika Drogi, Niedawno wykryto nietypowe dzialania z konta e-mail, wiec skrzynka pocztowa zostala tymczasowo zawieszona przez administratora systemu, nalezy odzyskac swoje konto, klikajac na ponizszy link lub skopiuj do przegladarki: http://systemadminpocztasecurep

Re: [PATCH] kernel/sysctl.c: If "count" including the terminating byte '\0' the write system call should retrun success.

2015-09-11 Thread Sean Fu
On Wed, Sep 9, 2015 at 12:36 AM, Steven Rostedt wrote: > On Tue, 08 Sep 2015 11:19:14 -0500 > ebied...@xmission.com (Eric W. Biederman) wrote: > > >> This patch does not implement the old behavior. >> >> The old code does use '\0' as a buffer terminator, and because it does >> not check things clo

[PATCH] debugfs: don't access 4 bytes for a boolean

2015-09-11 Thread Viresh Kumar
Long back 'bool' type used to be a typecast to 'int', but that changed in v2.6.19. And that is a typecast to _Bool now, which (mostly) takes just a byte. Anyway, the bool type in kernel is used to store true/false or 1/0 only. So, accessing a single byte should be enough. The problem with current

Re: [PATCH 2/2] [media] media-device: split media initialization and registration

2015-09-11 Thread Mauro Carvalho Chehab
Em Fri, 11 Sep 2015 09:31:36 +0200 Javier Martinez Canillas escreveu: > Hello Sakari, > > On 09/11/2015 07:51 AM, Sakari Ailus wrote: > > Hi Javier, > > > > Javier Martinez Canillas wrote: > >> Hello Sakari, > >> > >> On 09/10/2015 07:14 PM, Sakari Ailus wrote: > >>> Hi Javier, > >>> > >>> Than

Re: [PATCH V4 1/4] kvm: factor out core eventfd assign/deassign logic

2015-09-11 Thread Jason Wang
On 09/11/2015 03:39 PM, Cornelia Huck wrote: > On Fri, 11 Sep 2015 11:17:34 +0800 > Jason Wang wrote: > >> This patch factors out core eventfd assign/deassign logic and leave >> the argument checking and bus index selection to callers. >> >> Cc: Gleb Natapov >> Cc: Paolo Bonzini >> Signed-off-

[3.16.y-ckt stable] Linux 3.16.7-ckt17

2015-09-11 Thread Luis Henriques
I am announcing the release of the Linux 3.16.7-ckt17 kernel. The updated 3.16.y-ckt tree can be found at: git://kernel.ubuntu.com/ubuntu/linux.git linux-3.16.y and can be browsed at: http://kernel.ubuntu.com/git/ubuntu/linux.git/log/?h=linux-3.16.y The diff from v3.16.7-ckt16 is posted as

Re: [PATCH 5/5] virtgpu: mark as a render gpu

2015-09-11 Thread Gerd Hoffmann
On Fr, 2015-09-11 at 16:32 +1000, Dave Airlie wrote: > doh, yes we need to add DRM_RENDER_ALLOW to the ioctls, can you do > that? Done. cheers, Gerd -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo

Re: [PATCH v5 1/2] mfd: update Intel soc PMIC header file to support Broxton WC PMIC

2015-09-11 Thread Lee Jones
On Thu, 10 Sep 2015, Zha, Qipeng wrote: > >> > >> +#define INIT_REGMAP_IRQ(_irq, _off, _mask)\ > >> + [_irq] = { .reg_offset = (_off), .mask = (_mask) } > >> + > > >No, that's not what I asked. > > >Either this macro is going to be useful to *everyone*, or it's probably not >

[PATCH 0/2] pinctrl: uniphier: one fix, one addition

2015-09-11 Thread Masahiro Yamada
1/2 is a bug fix, but it is not very critical. I can wait until 4.4-rc1 if it is a hassle. 2/2 provides some more pin-mux settings. Masahiro Yamada (2): pinctrl: uniphier: fix input enable settings for PH1-sLD8 pinctrl: uniphier: add SD card pinmux settings drivers/pinctrl/uniphier/pinct

Re: [PATCH 15/17] thermal: st: allow compile test

2015-09-11 Thread Lee Jones
On Wed, 09 Sep 2015, Eduardo Valentin wrote: > Adding COMPILE_TEST flag to st driver to facilitate > maintenance. > > Cc: Zhang Rui > Cc: Nicolas Boichat > Cc: Mark Brown > Cc: Fabian Frederick > Cc: Wolfram Sang > Cc: Lee Jones > Cc: linux...@vger.kernel.org > Cc: linux-kernel@vger.kernel.

[PATCH 2/2] pinctrl: uniphier: add SD card pinmux settings

2015-09-11 Thread Masahiro Yamada
Add SD card pinmux settings for PH1-LD4, PH1-Pro4, PH1-sLD8, PH1-Pro5, ProXstream2, and PH1-LD6b SoCs. Signed-off-by: Masahiro Yamada --- drivers/pinctrl/uniphier/pinctrl-ph1-ld4.c | 5 + drivers/pinctrl/uniphier/pinctrl-ph1-ld6b.c| 5 + drivers/pinctrl/uniphier/pinctrl-ph1-pr

[PATCH 1/2] pinctrl: uniphier: fix input enable settings for PH1-sLD8

2015-09-11 Thread Masahiro Yamada
Currently, input enable settings are missing from the PH1-sLD8 pinctrl driver. (All the entries in the pin table are set to UNIPHIER_PIN_IECTRL_NONE). Fill the table with correct value. Fixes: 95372f9dc892 ("pinctrl: UniPhier: add UniPhier PH1-sLD8 pinctrl driver") Signed-off-by: Masahiro Yamada

Re: [PATCH V4 2/4] kvm: fix double free for fast mmio eventfd

2015-09-11 Thread Jason Wang
On 09/11/2015 03:46 PM, Cornelia Huck wrote: > On Fri, 11 Sep 2015 11:17:35 +0800 > Jason Wang wrote: > >> We register wildcard mmio eventfd on two buses, one for KVM_MMIO_BUS >> and another is KVM_FAST_MMIO_BUS but with a single iodev >> instance. This will lead an issue: kvm_io_bus_destroy() k

Re: [PATCH V4 3/4] kvm: fix zero length mmio searching

2015-09-11 Thread Jason Wang
On 09/11/2015 04:31 PM, Cornelia Huck wrote: > On Fri, 11 Sep 2015 10:26:41 +0200 > Paolo Bonzini wrote: > >> On 11/09/2015 05:17, Jason Wang wrote: >>> + int len = r2->len ? r1->len : 0; >>> + >>> if (r1->addr < r2->addr) >>> return -1; >>> - if (r1->addr + r1->len > r2->add

Re: [PATCH V4 0/4] Fast MMIO eventfd fixes

2015-09-11 Thread Jason Wang
On 09/11/2015 04:33 PM, Paolo Bonzini wrote: > > On 11/09/2015 10:15, Michael S. Tsirkin wrote: >> I think we should add a capability for fast mmio. >> This way, userspace can avoid crashing buggy kernels. > I agree. > > Paolo Right, then qemu will use datamatch eventfd if kenrel dost not have t

Re: [PATCH 2/2] [media] media-device: split media initialization and registration

2015-09-11 Thread Sakari Ailus
Hi Mauro, Mauro Carvalho Chehab wrote: > Em Fri, 11 Sep 2015 09:31:36 +0200 > Javier Martinez Canillas escreveu: > >> Hello Sakari, >> >> On 09/11/2015 07:51 AM, Sakari Ailus wrote: >>> Hi Javier, >>> >>> Javier Martinez Canillas wrote: Hello Sakari, On 09/10/2015 07:14 PM, Sakari

Re: [PATCH v4 7/8] mfd: 88pm860x: Move over to new I2C device .probe() call

2015-09-11 Thread Lee Jones
On Wed, 09 Sep 2015, Kieran Bingham wrote: > From: Lee Jones > > As part of an effort to rid the mostly unused second parameter for I2C > related .probe() functions and to conform to other existing frameworks > we're moving over to a temporary replacement .probe() call-back. > > Acked-by: Grant

Re: [PATCH v4 8/8] mfd: as3722: Rid driver of superfluous I2C device ID structure

2015-09-11 Thread Lee Jones
On Wed, 09 Sep 2015, Kieran Bingham wrote: > From: Lee Jones > > Also remove unused second probe() parameter 'i2c_device_id'. > > Acked-by: Grant Likely > Signed-off-by: Lee Jones SoB? > --- > drivers/mfd/as3722.c | 12 ++-- > 1 file changed, 2 insertions(+), 10 deletions(-) > > d

[PATCH] drm/nouveau: fix memory leak

2015-09-11 Thread Sudip Mukherjee
If pm_runtime_get_sync() we were going to "out" but we missed freeing vma. Signed-off-by: Sudip Mukherjee --- drivers/gpu/drm/nouveau/nouveau_gem.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_gem.c b/drivers/gpu/drm/nouveau/nouveau_gem.

Re: [PATCH v4 4/8] i2c: Make I2C ID tables non-mandatory for DT'ed devices

2015-09-11 Thread Lee Jones
On Wed, 09 Sep 2015, Kieran Bingham wrote: > From: Lee Jones > > Currently the I2C framework insists on devices supplying an I2C ID > table. Many of the devices which do so unnecessarily adding quite a > few wasted lines to kernel code. This patch allows drivers a means > to 'not' supply the a

Re: [PATCH v4 5/8] i2c: Export i2c_match_id() for direct use by device drivers

2015-09-11 Thread Lee Jones
On Wed, 09 Sep 2015, Kieran Bingham wrote: > From: Lee Jones > > When there was no other way to match a I2C device to driver i2c_match_id() > was exclusively used. However, now there are other types of tables which > are commonly supplied, matching on an i2c_device_id table is used less > frequ

Re: [PATCH v4 3/8] i2c: Match using traditional OF methods, then by vendor-less compatible strings

2015-09-11 Thread Lee Jones
On Wed, 09 Sep 2015, Kieran Bingham wrote: > From: Lee Jones > > This function provides a single call for all I2C devices which need to > match firstly using traditional OF means i.e by of_node, then if that > fails we attempt to match using the supplied I2C client name with a > list of supplied

Re: [PATCH v4 1/8] i2c: Add pointer dereference protection to i2c_match_id()

2015-09-11 Thread Lee Jones
On Wed, 09 Sep 2015, Kieran Bingham wrote: > From: Lee Jones > > Here we're providing dereference protection for i2c_match_id(), which > saves us having to do it each time it's called. We're also stripping > out the (now) needless checks in i2c_device_match(). This patch paves > the way for ot

[PATCH] bnx2x: use ktime_get_seconds() for timestamp

2015-09-11 Thread Arnd Bergmann
commit c48f350ff5e7 "bnx2x: Add MFW dump support" added the bnx2x_update_mfw_dump() function that reads the current time and stores it in a 32-bit field that gets passed into a buffer in a fixed format. This is potentially broken when the epoch overflows in 2038, and otherwise overflows in 2106. A

  1   2   3   4   5   6   7   8   >