Re: [PATCH 1/3] GPIO: gpio-dwapb: Enable platform driver binding to MFD driver

2014-09-02 Thread Linus Walleij
On Wed, Aug 27, 2014 at 7:46 PM, Weike Chen wrote: > The Synopsys DesignWare APB GPIO driver only supports open firmware devices. > But, like Intel Quark X1000 SOC, which has a single PCI function exporting > a GPIO and an I2C controller, it is a Multifunction device. This patch is > to enable th

Re: [PATCH] extcon: max77693: Fix a bug occured at changing ADC debounce time.

2014-09-02 Thread Chanwoo Choi
On 09/03/2014 03:39 PM, jonghwa3@samsung.com wrote: > On 2014년 09월 03일 14:55, Chanwoo Choi wrote: > >> On 09/03/2014 02:50 PM, Jonghwa Lee wrote: >>> When it writes some value other than 0 to BTLDset and JIGset, muic device >>> will be reset automatically. And it happens during updating ADC de

Re: [PATCH v3 3/4] Documentation/scheduler/sched-deadline.txt: improve and clarify AC bits

2014-09-02 Thread Luca Abeni
Hi, On 09/02/2014 11:45 PM, Henrik Austad wrote: [...] + On multiprocessor systems with global EDF scheduling (non partitioned + systems), a sufficient test for schedulability can not be based on the + utilisations (it can be shown that task sets with utilisations slightly + larger than 1 can mi

Re: [PATCH net-next 2/2] net: exit busy loop when another process is runnable

2014-09-02 Thread Eliezer Tamir
On 02/09/2014 11:31, Michael S. Tsirkin wrote: > On Tue, Sep 02, 2014 at 09:15:18AM +0300, Eliezer Tamir wrote: >> On 02/09/2014 06:29, Jason Wang wrote: >>> On 09/01/2014 02:39 PM, Eliezer Tamir wrote: On 29/08/2014 06:08, Jason Wang wrote: >> Yes, but rx busy polling only works in proces

[PATCH v2] extcon: max77693: Fix a bug occured at changing ADC debounce time.

2014-09-02 Thread Jonghwa Lee
When it writes some value other than 0 to BTLDset and JIGset, muic device will be reset automatically. And it happens during updating ADC debounce time, because it shares same register. To update ADC debounce time without reset, set value only to ADCDbset and 0 to BTLDset and JIGset. Signed-off-by

Re: [PATCH v3 2/2] dma: Add Xilinx AXI Direct Memory Access Engine driver support

2014-09-02 Thread Srikanth Thokala
Hi Vinod, Apologies for the delay. On Tue, Aug 19, 2014 at 10:33 PM, Vinod Koul wrote: > On Mon, Jul 28, 2014 at 05:47:49PM +0530, Srikanth Thokala wrote: >> +struct xilinx_dma_chan { >> + struct xilinx_dma_device *xdev; >> + u32 ctrl_offset; >> + spinlock_t lock; >> + struct lis

Re: [alsa-devel] [PATCHv2 1/4] ASoC: simple-card: add asoc_simple_card_fmt_master() to simplify the code.

2014-09-02 Thread Jean-Francois Moine
On Tue, 02 Sep 2014 21:13:52 -0700 (PDT) Kuninori Morimoto wrote: > OK, will do. > To avoid confusion/conflict, I will post it after Mark applied it. > Because many simple-card patches are posted in these days... Yes, I have one more awaiting, about multi-CODECs... -- Ken ar c'hentañ |

Re: [PATCH v3 1/4] Documentation/scheduler/sched-deadline.txt: fix terminology and improve clarity

2014-09-02 Thread Luca Abeni
Hi, On 09/02/2014 11:10 PM, Henrik Austad wrote: On Thu, Aug 28, 2014 at 11:00:26AM +0100, Juri Lelli wrote: From: Luca Abeni Several small changes regarding SCHED_DEADLINE documentation that fix terminology and improve clarity and readability: - "current runtime" becomes "remaining runtim

Re: early microcode: how to disable at runtime?

2014-09-02 Thread Borislav Petkov
On Tue, Sep 02, 2014 at 10:16:51AM -0300, Henrique de Moraes Holschuh wrote: > Things do go wrong in other ways, not just corrupt microcode data/initramfs > images. > > This stuff runs too early. It is easy to break, and annoying to debug. How is this stuff easy to break? Please stop with the co

Re: [PATCH] extcon: max77693: Fix a bug occured at changing ADC debounce time.

2014-09-02 Thread jonghwa3 . lee
On 2014년 09월 03일 14:55, Chanwoo Choi wrote: > On 09/03/2014 02:50 PM, Jonghwa Lee wrote: >> When it writes some value other than 0 to BTLDset and JIGset, muic device >> will be reset automatically. And it happens during updating ADC debounce >> time, >> because it shares same register. To update

RE: [PATCH] fec_main iMX6Q DMA-API: device driver tries to free DMA memory it has not allocated

2014-09-02 Thread fugang.d...@freescale.com
From: Anand Moon Sent: Tuesday, September 02, 2014 7:40 PM >To: David S. Miller; Duan Fugang-B38611; Russell King; Li Frank-B20596; >Estevam Fabio-R49496; Uwe Kleine-König >Cc: net...@vger.kernel.org; linux-kernel@vger.kernel.org; Anand Moon >Subject: [PATCH] fec_main iMX6Q DMA-API: device driver

RE: SEA& AIR & COURIER FREIGHT FORWARDER IN CHINA

2014-09-02 Thread RAIN
Dear Sir, Good day! I'm Rain from Shenzhen Topway International Forwarding Co.,ltd We are providing the Shipping service for Courier, Air and sea shipment from all cities of China Our competitive advantages : Full container shipment china ports to Russia,Central America and Africa ports DHL,

[PATCH] ftrace: The set_graph_function and set_graph_notrace file mode should be 0644 instead of 0444

2014-09-02 Thread Chen LinX
Signed-off-by: Chen LinX --- kernel/trace/ftrace.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index 5916a8e..00e7b9a 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c @@ -4406,10 +4406,10 @@ static __init int

[PATCH] usb: dwc3: gadget: Fix desc NULL pointer in dwc3_gadget_ep_queue()

2014-09-02 Thread Zhuang Jin Can
dep->endpoint.desc is checked at the beginning of dwc3_gadget_ep_queue(), but after that it may be set to NULL by another thread and then accessed again in dwc3_gadget_ep_queue(). This will lead to kernel oops. Expand spinlock protection area to aviod race condition. Signed-off-by: Zhuang Jin Can

Re: [PATCH net-next 2/2] net: exit busy loop when another process is runnable

2014-09-02 Thread Eliezer Tamir
On 02/09/2014 09:31, Jason Wang wrote: > On 09/02/2014 02:03 PM, Eliezer Tamir wrote: >> On 02/09/2014 06:35, Jason Wang wrote: >>> Not sure whether this method will scale considering thousands of sockets >>> and processes. >> There may be millions of sockets, but in most cases only a handful of >>

Re: [PATCH] ARM: at91/dt: at91sam9m10g45ek add rtc node

2014-09-02 Thread Erik van Luijk
Hi Boris, Nicolas, Boris BREZILLON schreef op 2-9-2014 om 18:33: Hi Erik, > > On Tue, 2 Sep 2014 12:52:12 +0200 > Erik van Luijk wrote: > >> Signed-off-by: Erik van Luijk > > Except for the nitpicks you'll find below, you have my > > Acked-by: Boris Brezillon > >> --- >> arch/arm/boot/dts

Re: [REGRESSION] "efi: efistub: Convert into static library" and preparation patches

2014-09-02 Thread Ard Biesheuvel
On 2 September 2014 21:29, Matt Fleming wrote: > On Tue, 02 Sep, at 05:25:58PM, Maarten Lankhorst wrote: >> Hey, >> >> My macbook pro 8.2 fails to do a efi stub boot with these patches. >> >> Commit f23cf8bd5c1f49 "efi/x86: efistub: Move shared dependencies to >> " >> causes the first break, but

Re: [PATCH v2] usb: renesas_usbhs: fix driver dependencies

2014-09-02 Thread Yoshihiro Shimoda
(2014/09/02 8:39), Simon Horman wrote: > On Mon, Sep 01, 2014 at 06:40:50PM +0200, Geert Uytterhoeven wrote: >> On Mon, Sep 1, 2014 at 4:24 PM, Bartlomiej Zolnierkiewicz >> wrote: >>> Renesas USBHS controller support should be available only on >>> Renesas ARM SoCs and SuperH architecture. >>> >>>

Re: [PATCH] usb: gadget: USB_RENESAS_USBHS_UDC should depend on HAS_DMA

2014-09-02 Thread Yoshihiro Shimoda
Hi Geert, (2014/08/30 4:31), Geert Uytterhoeven wrote: > If NO_DMA=y: > > drivers/built-in.o: In function `usbhsg_dma_map_ctrl': > mod_gadget.c:(.text+0x53b226): undefined reference to `usb_gadget_map_request' > mod_gadget.c:(.text+0x53b242): undefined reference to > `usb_gadget_unmap_request' >

Re: [PATCH] extcon: max77693: Fix a bug occured at changing ADC debounce time.

2014-09-02 Thread Chanwoo Choi
On 09/03/2014 02:50 PM, Jonghwa Lee wrote: > When it writes some value other than 0 to BTLDset and JIGset, muic device > will be reset automatically. And it happens during updating ADC debounce time, > because it shares same register. To update ADC debounce time without reset, > set value only to A

[PATCH] zbud: avoid accessing in last unused freelist

2014-09-02 Thread Chao Yu
For now, there are NCHUNKS of 64 freelists in zbud_pool, the last unbuddied[63] freelist linked with all zbud pages which have free chunks of 63. Calculating according to context of num_free_chunks(), our max chunk number of unbuddied zbud page is 62, so none of zbud pages will be added/removed in

[PATCH] mm: clear __GFP_FS when PF_MEMALLOC_NOIO is set

2014-09-02 Thread Junxiao Bi
commit 21caf2fc1931 ("mm: teach mm by current context info to not do I/O during memory allocation") introduces PF_MEMALLOC_NOIO flag to avoid doing I/O inside memory allocation, __GFP_IO is cleared when this flag is set, but __GFP_FS implies __GFP_IO, it should also be cleared. Or it may still r

Re: [PATCH v2] memfd_test: Make it work on 32-bit systems

2014-09-02 Thread David Herrmann
Hi On Mon, Sep 1, 2014 at 7:08 PM, Pranith Kumar wrote: > This test currently fails on 32-bit systems since we use u64 type to pass the > flags to fcntl. > > This commit changes this to use 'unsigned int' type for flags to fcntl making > it > work on 32-bit systems. > > Signed-off-by: Pranith Ku

[PATCH] extcon: max77693: Fix a bug occured at changing ADC debounce time.

2014-09-02 Thread Jonghwa Lee
When it writes some value other than 0 to BTLDset and JIGset, muic device will be reset automatically. And it happens during updating ADC debounce time, because it shares same register. To update ADC debounce time without reset, set value only to ADCDbset and 0 to BTLDset and JIGset. Signed-off-by

[PATCH v2] irqchip: exynos-combiner: Fix compilation error on ARM64

2014-09-02 Thread Naveen Krishna Chatradhi
The following compilation error occurs on 64-bit Exynos7 SoC: drivers/irqchip/exynos-combiner.c: In function ‘combiner_irq_domain_map’: drivers/irqchip/exynos-combiner.c:162:2: error: implicit declaration of function ‘set_irq_flags’ [-Werror=implicit-function-declaration] set_irq_flags(irq, IRQ

Re: Bogus error in checkpatch.pl

2014-09-02 Thread Joe Perches
On Wed, 2014-09-03 at 00:29 -0400, Pranith Kumar wrote: > Hi Joe, Hello Pranith. > On Wed, Sep 3, 2014 at 12:25 AM, Joe Perches wrote: > > You need to use parentheses around the description like: > > commit ("commit description") > > For your case: > > Commit 615cc2c9cf95 ("Documentatio

RE: [alsa-devel] [PATCHv2 1/4] ASoC: simple-card: add asoc_simple_card_fmt_master() to simplify the code.

2014-09-02 Thread li.xi...@freescale.com
> Subject: Re: [alsa-devel] [PATCHv2 1/4] ASoC: simple-card: add > asoc_simple_card_fmt_master() to simplify the code. > > > Hi Xiubo > > > Yes your patch has fixed the bug Jyri has pointed out. > > > > So I has discard my [PATCHv2 1/4] patch. > > > > Please send your patch out to replace this o

Re: [PATCH 0/3] fix bugs with stale or corrupt MMIO caches

2014-09-02 Thread Xiao Guangrong
On 09/02/2014 11:42 PM, Paolo Bonzini wrote: > Il 29/08/2014 12:31, Paolo Bonzini ha scritto: >> David and Xiao, here's my take on the MMIO generation patches. Now >> with documentation, too. :) Please review! >> >> David Matlack (2): >> kvm: fix potentially corrupt mmio cache >> kvm: x86: fi

Re: [RFC PATCH] netlink: Safer deletion of sk_bind_node

2014-09-02 Thread David Miller
From: Harish Jenny Kandiga Nagaraj Date: Wed, 3 Sep 2014 10:49:59 +0530 > If that is the case , then subscriptions of netlink_sock should have > been updated after netlink_remove or netlink_release. I don't see > that happening. Please do not top-post. First provide the quoted context, then pr

Re: [GIT PULL 0/5] PHY: Fixes for 3.17 -rc cycle

2014-09-02 Thread Kishon Vijay Abraham I
Hi Greg, On Thursday 28 August 2014 03:55 PM, Kishon Vijay Abraham I wrote: > Hi Greg, > > Please find the pull request for this -rc cycle. It consistes of a regression > fix to runtime PM on OMAP (cc'ed stable) and few other minor fixes. > > Please consider merging it in this -rc cycle. > Let m

Re: [RFC PATCH] netlink: Safer deletion of sk_bind_node

2014-09-02 Thread Harish Jenny Kandiga Nagaraj
If that is the case , then subscriptions of netlink_sock should have been updated after netlink_remove or netlink_release. I don't see that happening. On Wednesday 03 September 2014 12:22 AM, David Miller wrote: > From: Harish Jenny Kandiga Nagaraj > Date: Tue, 2 Sep 2014 14:14:38 +0530 > >> In

Re: [RFC PATCH] pm: prevent suspend until power supply events are processed

2014-09-02 Thread Viresh Kumar
On Wed, Sep 3, 2014 at 10:09 AM, Viresh Kumar wrote: > Don't have Zoran's new email address, but probably other might have > answers to my queries. Got Zoran's email id finally :) > I have just started with the power-supply framework a day or two back > and so my understanding might not be good

[PATCH 5/6] f2fs: handle bug cases by letting fsck.f2fs initiate

2014-09-02 Thread Jaegeuk Kim
This patch adds to handle corner buggy cases for fsck.f2fs. Signed-off-by: Jaegeuk Kim --- fs/f2fs/segment.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c index 46586d3..853c8f5 100644 --- a/fs/f2fs/segment.c +++ b/fs/f2fs/seg

[PATCH 1/6] f2fs: introduce F2FS_I_SB, F2FS_M_SB, and F2FS_P_SB

2014-09-02 Thread Jaegeuk Kim
This patch adds three inline functions to clean up dirty casting codes. Signed-off-by: Jaegeuk Kim --- fs/f2fs/checkpoint.c | 18 +++--- fs/f2fs/data.c | 31 ++- fs/f2fs/dir.c| 13 + fs/f2fs/f2fs.h | 23 +++--

[PATCH 3/6] f2fs: need fsck.f2fs when f2fs_bug_on is triggered

2014-09-02 Thread Jaegeuk Kim
If any f2fs_bug_on is triggered, fsck.f2fs is needed. Signed-off-by: Jaegeuk Kim --- fs/f2fs/checkpoint.c | 6 +++--- fs/f2fs/data.c | 4 ++-- fs/f2fs/dir.c| 4 ++-- fs/f2fs/f2fs.h | 26 ++- fs/f2fs/file.c | 2 +- fs/f2fs/inline.c | 4 ++--

[PATCH 6/6] f2fs: need fsck.f2fs if the recovery was failed

2014-09-02 Thread Jaegeuk Kim
If the roll-forward recovery was failed, we'd better conduct fsck.f2fs. Signed-off-by: Jaegeuk Kim --- fs/f2fs/super.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index a692304..3275e73 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -1083,6 +10

[PATCH 4/6] f2fs: add BUG cases to initiate fsck.f2fs

2014-09-02 Thread Jaegeuk Kim
This patch replaces BUG cases with f2fs_bug_on to remain fsck.f2fs information. And it implements some void functions to initiate fsck.f2fs too. Signed-off-by: Jaegeuk Kim --- fs/f2fs/segment.c | 4 ++-- fs/f2fs/segment.h | 38 +++--- 2 files changed, 37 insertio

Re: [PATCH] fs/super.c: do not shrink fs slab during direct memory reclaim

2014-09-02 Thread Dave Chinner
On Wed, Sep 03, 2014 at 12:21:24PM +0800, Junxiao Bi wrote: > On 09/03/2014 11:10 AM, Dave Chinner wrote: > > On Wed, Sep 03, 2014 at 09:38:31AM +0800, Junxiao Bi wrote: > >> Hi Jiufei, > >> > >> On 09/02/2014 05:03 PM, Xue jiufei wrote: > >>> Hi, Dave > >>> On 2014/9/2 7:51, Dave Chinner wrote: >

[PATCH 2/6] f2fs: remain inconsistency information to initiate fsck.f2fs

2014-09-02 Thread Jaegeuk Kim
This patch adds sbi->need_fsck to conduct fsck.f2fs later. This flag is only able to be removed by fsck.f2fs. Signed-off-by: Jaegeuk Kim --- fs/f2fs/checkpoint.c| 3 +++ fs/f2fs/f2fs.h | 1 + fs/f2fs/super.c | 1 + include/linux/f2fs_fs.h | 1 + 4 files changed, 6 insertions

Re: [PATCH 2/2] V4L: uvcvideo: Add support for pan/tilt speed controls

2014-09-02 Thread Pawel Osciak
On Wed, Jul 9, 2014 at 8:49 AM, Vincent Palatin wrote: > Map V4L2_CID_TILT_SPEED and V4L2_CID_PAN_SPEED to the standard UVC > CT_PANTILT_RELATIVE_CONTROL terminal control request. > > Tested by plugging a Logitech ConferenceCam C3000e USB camera > and controlling pan/tilt from the userspace using

Re: [PATCH v2 1/2] [media] V4L: Add camera pan/tilt speed controls

2014-09-02 Thread Pawel Osciak
On Sat, Aug 16, 2014 at 4:08 AM, Vincent Palatin wrote: > > The V4L2_CID_PAN_SPEED and V4L2_CID_TILT_SPEED controls allow to move the > camera by setting its rotation speed around its axis. > > Signed-off-by: Vincent Palatin Reviewed-by: Pawel Osciak > > --- > Changes from v1: > - update the d

Re: [RFC PATCH] pm: prevent suspend until power supply events are processed

2014-09-02 Thread Viresh Kumar
Don't have Zoran's new email address, but probably other might have answers to my queries. I have just started with the power-supply framework a day or two back and so my understanding might not be good enough :) On Sat, Aug 3, 2013 at 2:08 AM, Zoran Markovic wrote: > diff --git a/drivers/power/

[GIT PULL] f2fs bug fixes for v3.17-rc4

2014-09-02 Thread Jaegeuk Kim
Hi Linus, This is a pull request on the f2fs bug fixes for v3.17-rc4. Most of things are related to recovery and error handling routines. Please pull these patches. Thank you very much, The following changes since commit 63d871cb0b9e4207044ced0322aa34d859fa463d: Merge tag 'md/3.17-fixes' of g

Re: Bogus error in checkpatch.pl

2014-09-02 Thread Pranith Kumar
Hi Joe, On Wed, Sep 3, 2014 at 12:25 AM, Joe Perches wrote: > > You need to use parentheses around the description like: > commit ("commit description") > > For your case: > > Commit 615cc2c9cf95 ("Documentation/memory-barriers.txt: fix important > typo re memory barriers") > Ah, OK. Bu

Re: Bogus error in checkpatch.pl

2014-09-02 Thread Joe Perches
On Wed, 2014-09-03 at 00:03 -0400, Pranith Kumar wrote: > I receive an ERROR when running checkpatch.pl on a patch containing > the following line: > > Commit 615cc2c9cf95 "Documentation/memory-barriers.txt: fix important typo re > > saying that the commit ID should be 12 or more characters when

Re: [PATCH] fs/super.c: do not shrink fs slab during direct memory reclaim

2014-09-02 Thread Junxiao Bi
On 09/03/2014 11:10 AM, Dave Chinner wrote: > On Wed, Sep 03, 2014 at 09:38:31AM +0800, Junxiao Bi wrote: >> Hi Jiufei, >> >> On 09/02/2014 05:03 PM, Xue jiufei wrote: >>> Hi, Dave >>> On 2014/9/2 7:51, Dave Chinner wrote: On Fri, Aug 29, 2014 at 05:57:22PM +0800, Xue jiufei wrote: > The p

Re: [PATCH] blk-merge: fix blk_recount_segments

2014-09-02 Thread Ming Lei
On Tue, 02 Sep 2014 10:24:24 -0600 Jens Axboe wrote: > On 09/02/2014 10:21 AM, Christoph Hellwig wrote: > > Btw, one thing we should reconsider is where we set > > QUEUE_FLAG_NO_SG_MERGE. At least for virtio-blk it seems to me that > > doing the S/G merge should be a lot cheaper than fanning out

Re: [alsa-devel] [PATCHv2 1/4] ASoC: simple-card: add asoc_simple_card_fmt_master() to simplify the code.

2014-09-02 Thread Kuninori Morimoto
Hi Xiubo > Yes your patch has fixed the bug Jyri has pointed out. > > So I has discard my [PATCHv2 1/4] patch. > > Please send your patch out to replace this one. (snip) > Please send it out of your local patch. > > Please also consider the ideas about Jyri, Jean-Francios, Varka and > Takashi's

Re: [Xen-devel] [PATCH] Solved the Xen PV/KASLR riddle

2014-09-02 Thread Juergen Gross
On 09/02/2014 09:22 PM, Konrad Rzeszutek Wilk wrote: On Mon, Sep 01, 2014 at 06:03:06AM +0200, Juergen Gross wrote: On 08/29/2014 04:55 PM, Konrad Rzeszutek Wilk wrote: On Fri, Aug 29, 2014 at 03:44:06PM +0100, Jan Beulich wrote: On 29.08.14 at 16:27, wrote: Sure. Btw, someone also contacted

[PATCH] autofs4: use ACCESS_ONCE rather than rcu_dereference for dentry->d_inode

2014-09-02 Thread NeilBrown
As the kbuild test robot reports, rcu_dereference() isn't really appropriate here - we don't need a memory barrier, just a guard against accidentally dereferencing NULL. This can be merged into autofs4: d_manage() should return -EISDIR when appropriate in rcu-walk mode. in 'mm'. Signed-off-by:

Bogus error in checkpatch.pl

2014-09-02 Thread Pranith Kumar
I receive an ERROR when running checkpatch.pl on a patch containing the following line: Commit 615cc2c9cf95 "Documentation/memory-barriers.txt: fix important typo re saying that the commit ID should be 12 or more characters when the commit ID is indeed 12 characters. I tried fixing it, but my per

Re: [PATCH 5/5] phy: exynos5-usbdrd: Adding Kconfig dependency for Exynos7

2014-09-02 Thread Vivek Gautam
On Tue, Sep 2, 2014 at 8:07 PM, Felipe Balbi wrote: > On Mon, Sep 01, 2014 at 01:30:21PM +0530, Vivek Gautam wrote: >> On Thu, Aug 28, 2014 at 8:36 PM, Daniele Forsi wrote: >> > 2014-08-28 10:02 GMT+02:00 Vivek Gautam: >> > >> >> This USB 3.0 PHY controller is also present on Exynos7 >> >> platfo

[PATCH] net: treewide: Fix typo found in DocBook/networking.xml

2014-09-02 Thread Masanari Iida
This patch fix spelling typo found in DocBook/networking.xml. It is because the neworking.xml is generated from comments in the source, I have to fix typo in comments within the source. Signed-off-by: Masanari Iida --- include/linux/netdevice.h | 4 ++-- include/net/wimax.h| 2 +- inclu

Re: 回复: Re: 回复: Status of 'unicore32' architecture in Linux kernel

2014-09-02 Thread Guenter Roeck
On Wed, Sep 03, 2014 at 08:09:28AM +0800, Xuetao Guan wrote: > > [...] > > > > > > > > > > > unicore32: Add ocd console and qemu-defconfig to support qemu simulator > > > > This patch adds a primitive OCD console to communicate with > > > > qemu. > > > > The same code is alread

Re: [PATCH 4/5] usb: dwc3: Adding Kconfig dependency for Exynos7

2014-09-02 Thread Vivek Gautam
On Fri, Aug 29, 2014 at 12:58 AM, Felipe Balbi wrote: > On Thu, Aug 28, 2014 at 01:31:59PM +0530, Vivek Gautam wrote: >> The Exynos-DWC3 USB 3.0 DRD controller is also present on >> Exynos7 platform, so adding the dependency on ARCH_EXYNOS7 >> for this driver. >> >> Signed-off-by: Vivek Gautam >>

Re: [PATCH v7 3/5] RTC: RK808: add RTC driver for RK808

2014-09-02 Thread Doug Anderson
Hi, On Tue, Sep 2, 2014 at 8:52 PM, Doug Anderson wrote: > Chris, > > On Tue, Sep 2, 2014 at 7:01 PM, Chris Zhong wrote: >> >> On 09/02/2014 11:58 AM, Doug Anderson wrote: +static int rk808_rtc_probe(struct platform_device *pdev) >+{ >+ struct rk808 *rk808 = dev_get_drv

Re: [PATCH v7 3/5] RTC: RK808: add RTC driver for RK808

2014-09-02 Thread Doug Anderson
Chris, On Tue, Sep 2, 2014 at 7:01 PM, Chris Zhong wrote: > > On 09/02/2014 11:58 AM, Doug Anderson wrote: >>> >>> +static int rk808_rtc_probe(struct platform_device *pdev) >>> >+{ >>> >+ struct rk808 *rk808 = dev_get_drvdata(pdev->dev.parent); >>> >+ struct rk808_rtc *rk808_rtc; >>>

RE: [PATCH 0/5] Clocksource: Flextimer: Merged to LS1

2014-09-02 Thread li.xi...@freescale.com
Ping :) Thanks, BRs Xiubo > -Original Message- > From: Xiubo Li [mailto:li.xi...@freescale.com] > Sent: Tuesday, August 26, 2014 1:46 PM > To: daniel.lezc...@linaro.org; t...@linutronix.de > Cc: Wang Dongsheng-B40534; linux-kernel@vger.kernel.org; Xiubo Li-B47053 > Subject: [PATCH 0/5

[PATCH/v2] perf/documentation: Fix typo in perf/Documentation

2014-09-02 Thread Masanari Iida
This patch fix spelling typo found in tool/perf/Documentation. Signed-off-by: Masanari Iida --- tools/perf/Documentation/perf-diff.txt | 6 +++--- tools/perf/Documentation/perf-kvm.txt | 4 ++-- tools/perf/Documentation/perf-list.txt | 2 +- tools/perf/Documentation/p

Re: [PATCH v2] mfd: syscon: Decouple syscon interface from platform devices

2014-09-02 Thread Vivek Gautam
On Tue, Sep 2, 2014 at 8:12 PM, Pankaj Dubey wrote: > Currently a syscon entity can only be registered directly through a > platform device that binds to a dedicated syscon driver. However in > certain cases it is required to bind a device with it's dedicated > driver rather than binding with sysc

[GIT PULL rcu/urgent] Fix for 3.17

2014-09-02 Thread Paul E. McKenney
Hello, Ingo, This series contains a single commit fixing an initialization bug reported by Amit Shah and fixed by Pranith Kumar (and tested by Amit). This bug results in a boot-time hang in callback-offloaded configurations where callbacks were posted before the offloading ("rcuo") kthreads were c

RE: [alsa-devel] [PATCHv2 1/4] ASoC: simple-card: add asoc_simple_card_fmt_master() to simplify the code.

2014-09-02 Thread li.xi...@freescale.com
> Subject: Re: [alsa-devel] [PATCHv2 1/4] ASoC: simple-card: add > asoc_simple_card_fmt_master() to simplify the code. > > > Hi Xiubo > > > Yes, I think it make sense to set all fmt in one function, and will > > Be more readable. > > > > I agree with you, could you please just wait, because ther

Re: [alsa-devel] [PATCHv2 1/4] ASoC: simple-card: add asoc_simple_card_fmt_master() to simplify the code.

2014-09-02 Thread Kuninori Morimoto
Hi Xiubo > Yes, I think it make sense to set all fmt in one function, and will > Be more readable. > > I agree with you, could you please just wait, because there has many > Replications and good Ideas about this patch, and I will revise it. > Then you can improve it as your patch blow. Thank y

RE: [alsa-devel] [PATCHv2 1/4] ASoC: simple-card: add asoc_simple_card_fmt_master() to simplify the code.

2014-09-02 Thread li.xi...@freescale.com
Hi Kuninori-san, Yes your patch has fixed the bug Jyri has pointed out. So I has discard my [PATCHv2 1/4] patch. Please send your patch out to replace this one. Thanks, BRs Xiubo > -Original Message- > From: Xiubo Li-B47053 > Sent: Wednesday, September 03, 2014 10:22 AM > To: 'Kunin

[PATCH v2] doc: memory-barriers.txt: Correct example for reorderings

2014-09-02 Thread Pranith Kumar
Correct the example of memory orderings in memory-barriers.txt Commit 615cc2c9cf95 "Documentation/memory-barriers.txt: fix important typo re memory barriers" changed the assignment to x and y. Change the rest of the example to match this change. Reported-by: Ganesh Rapolu Signed-off-by: Pranith

Re: [PATCH] doc: memory-barriers.txt: Correct example for reorderings

2014-09-02 Thread Pranith Kumar
On Tue, Sep 2, 2014 at 12:08 PM, Paul E. McKenney wrote: > Could you please adjust in this way? Again, the point is to be the > first few items in a full set of permutations, not to illustrate selected > orderings/outcomes. > OK, if that is the case then replacing x with y is much easier. I wil

Re: [PATCH] fs/super.c: do not shrink fs slab during direct memory reclaim

2014-09-02 Thread Xue jiufei
Hi Junxiao On 2014/9/3 9:38, Junxiao Bi wrote: > Hi Jiufei, > > On 09/02/2014 05:03 PM, Xue jiufei wrote: >> Hi, Dave >> On 2014/9/2 7:51, Dave Chinner wrote: >>> On Fri, Aug 29, 2014 at 05:57:22PM +0800, Xue jiufei wrote: The patch trys to solve one deadlock problem caused by cluster fs

Re: [PATCH] mmc: sdhci-esdhc-imx: Enable boot partition access from DT

2014-09-02 Thread Dong Aisheng
On Tue, Sep 02, 2014 at 05:49:37PM +0200, Jean-Michel Hautbois wrote: > This property is useful when we don't want to access boot partitions on eMMC > Any special reason why not access boot partitions on eMMC? Not allow user to access it? > Signed-off-by: Jean-Michel Hautbois > --- > Documenta

[PATCH v9 net-next 2/4] net: filter: split filter.h and expose eBPF to user space

2014-09-02 Thread Alexei Starovoitov
allow user space to generate eBPF programs uapi/linux/bpf.h: eBPF instruction set definition linux/filter.h: the rest This patch only moves macro definitions, but practically it freezes existing eBPF instruction set, though new instructions can still be added in the future. These eBPF definitio

[PATCH RFC v9 net-next 3/4] net: filter: move eBPF instruction macros

2014-09-02 Thread Alexei Starovoitov
move instruction macros (like BPF_MOV64_REG or BPF_ALU32_IMM) from linux/filter.h into uapi/linux/bpf.h so that userspace programs can use them. verifier testsuite (in later patches) will be using them. Signed-off-by: Alexei Starovoitov --- include/linux/filter.h | 226 --

[PATCH RFC v9 net-next 4/4] net: filter: move common defines into bpf_common.h

2014-09-02 Thread Alexei Starovoitov
userspace programs that wish to use eBPF instruction macros (like BPF_MOV64_REG or BPF_ALU32_IMM) need to include two files: uapi/linux/filter.h and uapi/linux/bpf.h Move common macro definitions that are shared between classic BPF and eBPF into uapi/linux/bpf_common.h Signed-off-by: Alexei Starov

[PATCH v9 net-next 1/4] net: filter: add "load 64-bit immediate" eBPF instruction

2014-09-02 Thread Alexei Starovoitov
add BPF_LD_IMM64 instruction to load 64-bit immediate value into a register. All previous instructions were 8-byte. This is first 16-byte instruction. Two consecutive 'struct bpf_insn' blocks are interpreted as single instruction: insn[0].code = BPF_LD | BPF_DW | BPF_IMM insn[0].dst_reg = destinati

[PATCH v9 net-next 0/4] load imm64 insn and uapi/linux/bpf.h

2014-09-02 Thread Alexei Starovoitov
Hi, V8->V9 - rebase on top of Hannes's patch in the same area [1] - no changes to patches 1 and 2 - added patches 3 and 4 as RFC to address Daniel's concern. patch 3 moves eBPF instruction macros and patch 4 split macros which are shared between classic and eBPF into bpf_common.h 3 and 4 w

[PATCHv3 0/3] ASoC: simple-card: simplify the code.

2014-09-02 Thread Xiubo Li
Any comment and advice are welcome. Change in v3: - Fix binding from Jean's comment. - Remove 'ASoC: simple-card: add asoc_simple_card_fmt_master() to simplify the code.' and will send it separately later. Change in v2: - Maintian compatibility with the old DTs. Change in v1: - Add simple-car

[PATCHv3 2/3] ASoC: simple-card: Adjust the comments of simple card.

2014-09-02 Thread Xiubo Li
Signed-off-by: Xiubo Li --- sound/soc/generic/simple-card.c | 48 - 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c index 1597a24..07f7fb6 100644 --- a/sound/soc/generic/simpl

Re: regression caused by cgroups optimization in 3.17-rc2

2014-09-02 Thread Dave Hansen
On 09/02/2014 06:33 PM, Johannes Weiner wrote: > kfree isn't eating 56% of "all cpu time" here, and it wasn't clear to > me whether Dave filtered symbols from only memcontrol.o, memory.o, and > mmap.o in a similar way. I'm not arguing against the regression, I'm > just trying to make sense of the

[PATCHv3 1/3] ASoC: simple-card: Merge single and muti DAI link(s) code.

2014-09-02 Thread Xiubo Li
This patch will split the DT node into old style and new style: The new style will merge the single DAI link and muti DAI links code together, the new style will be easier to add muti DAI links from old single DAI link DTs. This patch will maintian compatibility with the old DTs. Signed-off-by: X

[PATCHv3 3/3] ASoC: simple-card: binding: update binding to support the new style.

2014-09-02 Thread Xiubo Li
This update patch will split the DT node into old style and new style: The new style will will be easier to add muti DAI links from old single DAI link DTs. This patch will maintian compatibility with the old DTs. Signed-off-by: Xiubo Li --- .../devicetree/bindings/sound/simple-card.txt |

Re: [RFC PATCH 0/5] module: Remove stop_machine from module unloading

2014-09-02 Thread Masami Hiramatsu
Ping? :) (2014/08/25 19:55), Masami Hiramatsu wrote: > Hi, > > Here is a series of patches which remove stop_machine() from > module unloading. > > Currently, each module unloading calls stop_machine()s 2 times. > One is for safely removing module from lists and one is to > check the reference c

Re: [PATCH] fs/super.c: do not shrink fs slab during direct memory reclaim

2014-09-02 Thread Dave Chinner
On Wed, Sep 03, 2014 at 09:38:31AM +0800, Junxiao Bi wrote: > Hi Jiufei, > > On 09/02/2014 05:03 PM, Xue jiufei wrote: > > Hi, Dave > > On 2014/9/2 7:51, Dave Chinner wrote: > >> On Fri, Aug 29, 2014 at 05:57:22PM +0800, Xue jiufei wrote: > >>> The patch trys to solve one deadlock problem caused b

[PATCHv6 1/2] thermal: exynos: Add support for many TRIMINFO_CTRL registers

2014-09-02 Thread Chanwoo Choi
This patch support many TRIMINFO_CTRL registers if specific Exynos SoC has one more TRIMINFO_CTRL registers. Also this patch uses proper 'RELOAD' shift/mask bit operation to set RELOAD feature instead of static value. Signed-off-by: Chanwoo Choi Acked-by: Kyungmin Park Cc: Zhang Rui Cc: Eduardo

[PATCHv6 0/2] thermal: exynos: Add support for TRIMINFO feature of Exynos3250

2014-09-02 Thread Chanwoo Choi
This patchset add the support of TRIMINFO_RELOAD feature for Exynos3250. But Exynos3250 has two TRIMINFO_CTRL register instead other Exynos has only one TRIMINFO_CTRL register. So, this patchset support the some Exynos SoC which has more than one TRIMINF_CTRL. Also, this patchset fix wrong value o

[PATCHv6 2/2] thermal: exynos: Add support for TRIM_RELOAD feature at Exynos3250

2014-09-02 Thread Chanwoo Choi
This patch add support for TRIM_RELOAD feature at Exynos3250. The TMu of Exynos3250 has two TRIMINFO_CON register and must need to set RELOAD bit before reading TRIMINFO register. Signed-off-by: Chanwoo Choi Acked-by: Kyungmin Park Cc: Zhang Rui Cc: Eduardo Valentin Cc: Amit Daniel Kachhap Re

[PATCH net-next v2 2/2] r8152: use eth_hw_addr_random

2014-09-02 Thread Hayes Wang
If the hw doesn't have a valid MAC address, give a random one and set it to the hw. Signed-off-by: Hayes Wang --- drivers/net/usb/r8152.c | 35 --- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c in

[PATCH net-next v2 0/2] r8152: random MAC address

2014-09-02 Thread Hayes Wang
If the interface has invalid MAC address, it couldn't be used. In order to let it work normally, give a random one. v2: Use "%pM" format specifier for printing a MAC address. Hayes Wang (2): r8152: change the location of rtl8152_set_mac_address r8152: use eth_hw_addr_random drivers/net/us

[PATCH net-next v2 1/2] r8152: change the location of rtl8152_set_mac_address

2014-09-02 Thread Hayes Wang
Exchange the location of rtl8152_set_mac_address() and set_ethernet_addr(). Then, the set_ethernet_addr() could set the MAC address by calling rtl8152_set_mac_address() later. Signed-off-by: Hayes Wang --- drivers/net/usb/r8152.c | 34 +- 1 file changed, 17 insert

[PATCH 1/1] i2c: designware: add support of platform data to set I2C mode

2014-09-02 Thread Raymond Tan
From: "Tan, Raymond" Use the platform data to set the clk_freq when there is no DT configuration available. The clk_freq in turn will determine the I2C speed mode. In Quark, there is currently no other configuration mechanism other than board files. Signed-off-by: Raymond Tan Reviewed-by: Mika

[PATCH 0/1] i2c: designware: Add support for Intel Quark X1000

2014-09-02 Thread Raymond Tan
From: "Tan, Raymond" Hi, This patch is for enabling support of Intel Quark X1000 i2c controller. The Quark designware i2c controller is registered as a MFD device, and Quark exports a single PCI device with both I2C and GPIO functions. In Quark, there is currently no other configuration mechanis

[PATCH v2] hwmon: ntc_thermistor: Add ntc thermistor to thermal subsystem as a sensor.

2014-09-02 Thread Jonghwa Lee
To get more comprehensive and integrated thermal management, it adds ntc thermistor to thermal framework as a thermal sensor. It's governed thermal susbsystem only if it is described in DT node. Otherwise, it just notifies temperature to userspace via sysfs as it used to be. Signed-off-by: Jonghwa

Re: [PATCH 0/3] clk: zynq: Clean up

2014-09-02 Thread Mike Turquette
Quoting Soren Brinkmann (2014-09-02 16:02:06) > Hi, > > triggered by that discussion whether checkpatch should be used to check > files, I ran checkpatch on Zynq's clock code. A few of the reported > issues I found worth fixing. Applied to clk-next. Regards, Mike > > Thanks, >

RE: [PATCHv2 1/4] ASoC: simple-card: add asoc_simple_card_fmt_master() to simplify the code.

2014-09-02 Thread li.xi...@freescale.com
> Subject: Re: [PATCHv2 1/4] ASoC: simple-card: add > asoc_simple_card_fmt_master() > to simplify the code. > > On 09/02/2014 12:26 PM, Xiubo Li wrote: > > Signed-off-by: Xiubo Li > > --- > > sound/soc/generic/simple-card.c | 61 - > > > 1 file changed

Re: [PATCHv10 2/2] arm: dts: Add Altera SDRAM EDAC bindings & devicetree entries.

2014-09-02 Thread Dinh Nguyen
Hi DTS maintainers, If possible, can I please get an Acked-by for this patch? Many thanks... Dinh On 8/11/14, 10:18 AM, ttha...@opensource.altera.com wrote: > From: Thor Thayer > > Add the Altera SDRAM EDAC bindings and device tree changes to the Altera SoC > project. > > Signed-off-by: Tho

RE: [alsa-devel] [PATCHv2 3/4] ASoC: simple-card: Adjust the comments of simple card.

2014-09-02 Thread li.xi...@freescale.com
> Subject: Re: [alsa-devel] [PATCHv2 3/4] ASoC: simple-card: Adjust the comments > of simple card. > > > Hi Xiubo > > > > > /* > > > > -* soc_bind_dai_link() will check cpu name > > > > -* after of_node matching if dai_link has cpu_dai_name. > > > > -* but, it wil

RE: [alsa-devel] [PATCHv2 1/4] ASoC: simple-card: add asoc_simple_card_fmt_master() to simplify the code.

2014-09-02 Thread li.xi...@freescale.com
Hi Kuninori-san, Yes, I think it make sense to set all fmt in one function, and will Be more readable. I agree with you, could you please just wait, because there has many Replications and good Ideas about this patch, and I will revise it. Then you can improve it as your patch blow. Thanks, BR

Re: [alsa-devel] [PATCHv2 3/4] ASoC: simple-card: Adjust the comments of simple card.

2014-09-02 Thread Kuninori Morimoto
Hi Xiubo > > > /* > > > - * soc_bind_dai_link() will check cpu name > > > - * after of_node matching if dai_link has cpu_dai_name. > > > - * but, it will never match if name was created by fmt_single_name() > > > - * remove cpu_dai_name to escape name matching. > > > - * see > > > + * In

Re: [PATCH] mmc: core: sdio: Fix unconditional wake_up_process() on sdio thread

2014-09-02 Thread Jaehoon Chung
Hi, On 09/03/2014 11:10 AM, Fu, Zhonghui wrote: > > Hi,Uffe > > Could you please tell me into which git repository this patch is merged now? I knew it was merged into Ulf's git repository. You can refer to below git. url = http://git.linaro.org/git/people/ulf.hansson/mmc.git Best Regards, Ja

Re: [RFC] dynticks: dynticks_idle is only modified locally use this_cpu ops

2014-09-02 Thread Paul E. McKenney
On Tue, Sep 02, 2014 at 06:22:52PM -0500, Christoph Lameter wrote: > On Tue, 2 Sep 2014, Paul E. McKenney wrote: > > > Yep, these two have been on my "when I am feeling insanely gutsy" list > > for quite some time. > > > > But I have to ask... On x86, is a pair of mfence instructions really > > c

[PATCH v4 3/4] ARM: dts: add main Thermal info to rk3288

2014-09-02 Thread Caesar Wang
Signed-off-by: Caesar Wang --- arch/arm/boot/dts/rk3288.dtsi | 18 ++ 1 file changed, 18 insertions(+) diff --git a/arch/arm/boot/dts/rk3288.dtsi b/arch/arm/boot/dts/rk3288.dtsi index 36be7bb..3d672e3 100644 --- a/arch/arm/boot/dts/rk3288.dtsi +++ b/arch/arm/boot/dts/rk3288.dtsi

[PATCH v4 1/4] thermal: rockchip: add driver for thermal

2014-09-02 Thread Caesar Wang
Thermal is TS-ADC Controller module supports user-defined mode and automatic mode. User-defined mode refers,TSADC all the control signals entirely by software writing to register for direct control. Automaic mode refers to the module automatically poll TSADC output, and the results were checked.I

[PATCH v4 4/4] ARM: dts: enable Thermal on rk3288-evb board

2014-09-02 Thread Caesar Wang
Signed-off-by: Caesar Wang --- arch/arm/boot/dts/rk3288-evb.dtsi | 7 +++ 1 file changed, 7 insertions(+) diff --git a/arch/arm/boot/dts/rk3288-evb.dtsi b/arch/arm/boot/dts/rk3288-evb.dtsi index 2964370..fe85dde 100644 --- a/arch/arm/boot/dts/rk3288-evb.dtsi +++ b/arch/arm/boot/dts/rk3288-e

  1   2   3   4   5   6   7   8   >