Re: [PATCH 7/8] staging: unisys: stop device registration before visorbus registration

2015-08-26 Thread Sudip Mukherjee
On Tue, Aug 25, 2015 at 08:33:55AM -0400, Jes Sorensen wrote: > Sudip Mukherjee writes: > > On Tue, Aug 18, 2015 at 03:14:02PM -0400, Benjamin Romer wrote: > >> In cases where visorbus is compiled directly into the kernel, if > >> visorbus registration fails for any reason, it is still possible fo

Re: [PATCH 3/8] fix staging:android style issue:Alignment should match open parenthesis

2015-08-26 Thread Giedrius Statkevičius
On Wed, Aug 26, 2015 at 11:52:12AM +0800, Peng Sun wrote: > Signed-off-by: Peng Sun Please always add a changelog message. Also, you need to fix the subject. The convention is to use something like: "a: b: ..." So in this case it should be something like: "staging: android: ..." You can look at `

Re: [PATCH 7/8] staging: unisys: stop device registration before visorbus registration

2015-08-26 Thread Jes Sorensen
Sudip Mukherjee writes: > On Tue, Aug 25, 2015 at 08:33:55AM -0400, Jes Sorensen wrote: >> Sudip Mukherjee writes: >> > On Tue, Aug 18, 2015 at 03:14:02PM -0400, Benjamin Romer wrote: >> >> In cases where visorbus is compiled directly into the kernel, if >> >> visorbus registration fails for any

[PATCH] atomics,cmpxchg: Privatize the inclusion of asm/cmpxchg.h

2015-08-26 Thread Boqun Feng
After commit: atomics: add acquire/release/relaxed variants of some atomic operations Architectures may only provide {cmp,}xchg_relaxed definitions in asm/cmpxchg.h. Other variants, such as {cmp,}xchg, may be built in linux/atomic.h, which means simply including asm/cmpxchg.h may not get the defi

[PATCH 1/2] android, lmk: Protect task->comm with task_lock.

2015-08-26 Thread Tetsuo Handa
Hello. Next patch is mm-related but this patch is not. Via which tree should these patches go? >From 48c1b457eb32d7a029e9a078ee0a67974ada9261 Mon Sep 17 00:00:00 2001 From: Tetsuo Handa Date: Wed, 26 Aug 2015 20:49:17 +0900 Subject: [PATCH 1/2] android, lm

[PATCH 2/2] android, lmk: Reverse the order of setting TIF_MEMDIE and sending SIGKILL.

2015-08-26 Thread Tetsuo Handa
Hello. Should selected_tasksize be added to rem even when TIF_MEMDIE was not set? Please see a thread from http://www.spinics.net/lists/linux-mm/msg93246.html if you want to know why to reverse the order. >From 2d4cc11d8128e4c1397631b91fea78da3eaefb47 Mon

Re: [PATCH v7 10/44] [media] media: rename the function that create pad links

2015-08-26 Thread Mauro Carvalho Chehab
Em Tue, 25 Aug 2015 12:55:41 -0600 Shuah Khan escreveu: > On 08/23/2015 02:17 PM, Mauro Carvalho Chehab wrote: > > Now that a link can be either between two different graph > > objects, we'll need to add more functions to create links. > > Is this an incomplete sentence. Should it read: "either

Re: [PATCH v7 11/44] [media] media: use entity.graph_obj.mdev instead of .parent

2015-08-26 Thread Mauro Carvalho Chehab
Em Tue, 25 Aug 2015 13:25:15 -0600 Shuah Khan escreveu: > On Tue, Aug 25, 2015 at 12:36 AM, Hans Verkuil wrote: > > On 08/23/2015 10:17 PM, Mauro Carvalho Chehab wrote: > >> From: Javier Martinez Canillas > >> > >> The struct media_entity has a .parent field that stores a pointer > >> to the pa

Re: [PATCH 2/2] android, lmk: Reverse the order of setting TIF_MEMDIE and sending SIGKILL.

2015-08-26 Thread Tetsuo Handa
Reposting updated version as it turned out that we can call do_send_sig_info() with task_lock held. ;-) ( http://marc.info/?l=linux-mm&m=144059948628905&w=2 ) Tetsuo Handa wrote: > Should selected_tasksize be added to rem even when TIF_MEMDIE was not set? Commit e1099a69a624 "android, lmk: avoid s

Re: [PATCH RESEND V2 3/7] scsi: storvsc: Untangle the storage protocol negotiation from the vmbus protocol negotiation.

2015-08-26 Thread James Bottomley
On Thu, 2015-08-13 at 08:43 -0700, K. Y. Srinivasan wrote: > From: Keith Mange > > Currently we are making decisions based on vmbus protocol versions > that have been negotiated; use storage potocol versions instead. > > Tested-by: Alex Ng > Signed-off-by: Keith Mange > Signed-off-by: K. Y. Sr