[PATCH v2 04/10] net: smc911x: use io{read,write}*_rep accessors

2012-12-10 Thread Will Deacon
From: Matthew Leach The {read,write}s{b,w,l} operations are not defined by all architectures and are being removed from the asm-generic/io.h interface. This patch replaces the usage of these string functions in the smc911x accessors with io{read,write}{8,16,32}_rep calls instead. Cc: Arnd Bergm

Re: [PATCH 00/49] Automatic NUMA Balancing v10

2012-12-10 Thread Ingo Molnar
* Srikar Dronamraju wrote: > KernelVersion: 3.7.0-rc8-tip_master+(December 7th Snapshot) > Please do let me know if you have questions/suggestions. Do you still have the exact sha1 by any chance? By the date of the snapshot I'd say that this fix: f0c77b62ba9d sched: Fix NUMA_EXCLUDE_AFFINE

Re: [GIT TREE] Unified NUMA balancing tree, v3

2012-12-10 Thread Mel Gorman
On Mon, Dec 10, 2012 at 08:15:45PM +0100, Ingo Molnar wrote: > > * Rik van Riel wrote: > > > On 12/10/2012 01:22 PM, Thomas Gleixner wrote: > > > > > So autonuma and numacore are basically on the same page, > > > with a slight advantage for numacore in the THP enabled > > > case. balancenuma

Re: Missing tags in my local stable git repo

2012-12-10 Thread Linus Torvalds
On Mon, Dec 10, 2012 at 11:15 AM, Steven Rostedt wrote: > > That's a scary thought... git gc will just prune stuff you haven't used > in a while? I hope that's not the case. git gc should only prune stuff that is no longer *reachable*. If the alternate tree is entirely stable, that should be per

Re: [RFC] Capabilities still can't be inherited by normal programs

2012-12-10 Thread Andy Lutomirski
On Mon, Dec 10, 2012 at 11:13 AM, Casey Schaufler wrote: > On 12/10/2012 10:12 AM, Andy Lutomirski wrote: >> I think that the Windows approach is worth looking at. See here: >> >> http://msdn.microsoft.com/en-us/library/windows/desktop/aa375202%28v=vs.85%29.aspx >> >> In the Windows model, each c

Re: [GIT TREE] Unified NUMA balancing tree, v3

2012-12-10 Thread Mel Gorman
On Mon, Dec 10, 2012 at 07:22:37PM +0100, Thomas Gleixner wrote: > On Fri, 7 Dec 2012, Ingo Molnar wrote: > > The SPECjbb 4x JVM numbers are still very close to the > > hard-binding results: > > > > Fri Dec 7 02:08:42 CET 2012 > > spec1.txt: throughput = 188667.94 SPECjbb2005 bo

Re: [PATCH] tcp: Avoid infinite loop on recvmsg bug

2012-12-10 Thread Julius Werner
Hi Dave, Have you thought about picking up one of the patches to tcp_recvmsg I proposed in this thread? We consider the underlying bug in Chromium OS that led mere here to be fixed now, but I bet this will not be the last time someone hits this code path and has to deal with the bad error handling

Re: [PATCH] gpio: export 'debounce' attribute if supported by the gpio chip

2012-12-10 Thread anish singh
On Mon, Dec 10, 2012 at 10:48 AM, Guenter Roeck wrote: > On Mon, Dec 10, 2012 at 11:04:09AM +0100, Linus Walleij wrote: >> On Fri, Dec 7, 2012 at 5:49 PM, Alan Cox wrote: >> >> >> I could imagine declaring the activity request buttons to be "input", but >> >> for >> >> presence detects it is a b

[PATCH RFC 00/13] Common video input interfaces bindings and V4L2 OF helpers

2012-12-10 Thread Sylwester Nawrocki
Hi all, This series is an update of work on common bindings for video capture interfaces [1], [2] originally started by Guennadi. I took the liberty of resending the original patches and adding my changes on top of it. I just noticed there were some comments to the v5 of the bindings documentatio

[PATCH RFC 01/13] i2c: add dummy inline functions for when CONFIG_OF_I2C(_MODULE) isn't defined

2012-12-10 Thread Sylwester Nawrocki
From: Guennadi Liakhovetski If CONFIG_OF_I2C and CONFIG_OF_I2C_MODULE are undefined no declaration of of_find_i2c_device_by_node and of_find_i2c_adapter_by_node will be available. Add dummy inline functions to avoid compilation breakage. Signed-off-by: Guennadi Liakhovetski --- include/linux/o

[PATCH RFC 03/13] OF: define of_*_cmp() macros also if CONFIG_OF isn't set

2012-12-10 Thread Sylwester Nawrocki
From: Guennadi Liakhovetski of_*_cmp() macros do not depend on any OF functions and can be defined also if CONFIG_OF isn't set. Also include linux/string.h, required by those macros. Signed-off-by: Guennadi Liakhovetski --- include/linux/of.h | 15 --- 1 file changed, 8 insertion

[PATCH RFC 04/13] OF: make a function pointer argument const

2012-12-10 Thread Sylwester Nawrocki
From: Guennadi Liakhovetski The "struct device_node *" argument of of_parse_phandle_*() can be const. Signed-off-by: Guennadi Liakhovetski --- drivers/of/base.c |4 ++-- include/linux/of.h |6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/of/base.c b/dr

[PATCH RFC 06/13] of: Add empty of_find_device_by_node() function definition

2012-12-10 Thread Sylwester Nawrocki
This allows users to be compiled without excluding this function call with preprocessor directives when CONFIG_OF_DEVICE is disabled. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- include/linux/of_platform.h |7 +++ 1 file changed, 7 insertions(+) diff --git a/incl

[PATCH RFC 07/13] of: Add empty of_get_next_child() function definition

2012-12-10 Thread Sylwester Nawrocki
Add an empty of_get_next_child() function definition so users can be build when CONFIG_OF is disabled and are not required to exclude OF specific parts explicitly with #ifdefs. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- include/linux/of.h |7 +++ 1 file changed,

[PATCH RFC 08/13] media: add V4L2 DT binding documentation

2012-12-10 Thread Sylwester Nawrocki
From: Guennadi Liakhovetski This patch adds a document, describing common V4L2 device tree bindings. Co-authored-by: Sylwester Nawrocki Signed-off-by: Guennadi Liakhovetski --- Documentation/devicetree/bindings/media/v4l2.txt | 162 ++ 1 file changed, 162 insertions(+) c

[PATCH RFC 12/13] v4l2-of: Corrected v4l2_of_parse_link() function declaration

2012-12-10 Thread Sylwester Nawrocki
v4l2_of_parse_link() return value type is int, not void. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- include/media/v4l2-of.h |7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/media/v4l2-of.h b/include/media/v4l2-of.h index 9b036e6..686d

[PATCH RFC 13/13] v4l2-of: Replace "remote" property with "remote-endpoint"

2012-12-10 Thread Sylwester Nawrocki
As agreed (I hope I'm not wrong) on the LMML use "remote-endpoint" property instead of "remote". Also add kerneldoc description for the function. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- drivers/media/v4l2-core/v4l2-of.c | 12 +--- 1 file changed, 9 insertion

[PATCH RFC 11/13] v4l2-of: Add v4l2_of_parse_data_lanes() function

2012-12-10 Thread Sylwester Nawrocki
Put the data-lanes property parsing code and make a separate function out of it, so it can be used in drivers that don't need all features packed in v4l2_of_parse_link(). Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- drivers/media/v4l2-core/v4l2-of.c | 48

[PATCH RFC 10/13] v4l2-of: Support variable length of data-lanes property

2012-12-10 Thread Sylwester Nawrocki
Based on code from Guennadi Liakhovetski . Add data_lanes property which relects the number of active data lanes, that is length of the data-lanes array. Previously we assumed the data-lanes array had fixed length which doesn't match the binding semantics. Signed-off-by: Sylwester Nawrocki ---

[PATCH RFC 09/13] media: add a V4L2 OF parser

2012-12-10 Thread Sylwester Nawrocki
From: Guennadi Liakhovetski Add a V4L2 OF parser, implementing bindings, documented in Documentation/devicetree/bindings/media/v4l2.txt. Signed-off-by: Guennadi Liakhovetski --- drivers/media/v4l2-core/Makefile |3 + drivers/media/v4l2-core/v4l2-of.c | 190 +++

[PATCH RFC 05/13] of: Add empty for_each_available_child_of_node() macro definition

2012-12-10 Thread Sylwester Nawrocki
Add this empty macro definition so users can be compiled without excluding this macro call with preprocessor directives when CONFIG_OF is disabled. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- include/linux/of.h |3 +++ 1 file changed, 3 insertions(+) diff --git a/inc

Re: [PATCH 3/3 v2] iio: add rtc-driver for HID sensors of type time

2012-12-10 Thread Alexander Holler
Am 10.12.2012 18:05, schrieb Lars-Peter Clausen: > Looks pretty good now. But there are still some IIO remnants which should be > removed as well. Also the driver should move to drivers/rtc/ since, well, > it's a rtc driver not a IIO driver. I think it still should be stick to iio, because that i

[PATCH RFC 02/13] of: add a dummy inline function for when CONFIG_OF is not defined

2012-12-10 Thread Sylwester Nawrocki
From: Guennadi Liakhovetski If CONFIG_OF isn't defined, no declaration of of_get_parent will be found and compilation can fail. This patch adds a dummy inline function definition to fix the problem. Signed-off-by: Guennadi Liakhovetski --- include/linux/of.h |5 + 1 file changed, 5 ins

Linux 3.6.10

2012-12-10 Thread Greg KH
I'm announcing the release of the 3.6.10 kernel. All users of the 3.6 kernel series must upgrade. The updated 3.6.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.6.y and can be browsed at the normal kernel.org git web browser:

Re: Linux 3.6.10

2012-12-10 Thread Greg KH
diff --git a/Makefile b/Makefile index 978af72..686b83c 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 6 -SUBLEVEL = 9 +SUBLEVEL = 10 EXTRAVERSION = NAME = Terrified Chipmunk diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 48c19d4..589bdba 100644 --- a/a

Linux 3.4.23

2012-12-10 Thread Greg KH
I'm announcing the release of the 3.4.23 kernel. All users of the 3.4 kernel series must upgrade. The updated 3.4.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.4.y and can be browsed at the normal kernel.org git web browser:

Re: Linux 3.4.23

2012-12-10 Thread Greg KH
diff --git a/Makefile b/Makefile index 320663d..bf1df55 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 4 -SUBLEVEL = 22 +SUBLEVEL = 23 EXTRAVERSION = NAME = Saber-toothed Squirrel diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index e14ae11..7fe19a3 100644 --

Linux 3.0.56

2012-12-10 Thread Greg KH
I'm announcing the release of the 3.0.56 kernel. All users of the 3.0 kernel series must upgrade. The updated 3.0.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.0.y and can be browsed at the normal kernel.org git web browser:

Re: Linux 3.0.56

2012-12-10 Thread Greg KH
diff --git a/Makefile b/Makefile index 06df950..b639af3 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 0 -SUBLEVEL = 55 +SUBLEVEL = 56 EXTRAVERSION = NAME = Sneaky Weasel diff --git a/arch/arm/mach-dove/include/mach/pm.h b/arch/arm/mach-dove/include/mach/pm.h

Re: [RFC] Capabilities still can't be inherited by normal programs

2012-12-10 Thread Casey Schaufler
On 12/10/2012 11:31 AM, Andy Lutomirski wrote: > On Mon, Dec 10, 2012 at 11:13 AM, Casey Schaufler > wrote: >> On 12/10/2012 10:12 AM, Andy Lutomirski wrote: >>> I think that the Windows approach is worth looking at. See here: >>> >>> http://msdn.microsoft.com/en-us/library/windows/desktop/aa3752

Re: [PATCH] applesmc: add sysfs file to report OSK

2012-12-10 Thread Henrik Rydberg
Hi Guenter, > On Mon, Dec 10, 2012 at 09:51:35AM -0500, Gabriel L. Somlo wrote: > > The AppleSMC contains two char[32] keys, OSK0 and OSK1, which are not > > reported in the key count and index by default. These keys are used by > > the OS X boot sequence, and normally don't matter when running Li

Re: [RFC] Capabilities still can't be inherited by normal programs

2012-12-10 Thread Andy Lutomirski
On Mon, Dec 10, 2012 at 11:51 AM, Casey Schaufler wrote: > On 12/10/2012 11:31 AM, Andy Lutomirski wrote: >> On Mon, Dec 10, 2012 at 11:13 AM, Casey Schaufler >> wrote: >>> On 12/10/2012 10:12 AM, Andy Lutomirski wrote: I think that the Windows approach is worth looking at. See here: >

RE: [PATCH v4 1/5] net: Add support for hardware-offloaded encapsulation

2012-12-10 Thread Dmitry Kravkov
> -Original Message- > From: saeed bishara [mailto:saeed.bish...@gmail.com] > Sent: Monday, December 10, 2012 12:04 PM > To: Joseph Gasparakis > Cc: da...@davemloft.net; shemmin...@vyatta.com; chr...@sous-sol.org; > go...@redhat.com; net...@vger.kernel.org; linux-kernel@vger.kernel.org; > D

[PATCH] Input: matrix-keymap - provide a proper module license

2012-12-10 Thread Florian Fainelli
The matrix-keymap module is currently lacking a proper module license, add one so we don't have this module tainting the entire kernel. This issue has been present since commit 1932811f (Input: matrix-keymap - uninline and prepare for device tree support) Signed-off-by: Florian Fainelli CC: sta..

Re: [GIT TREE] Unified NUMA balancing tree, v3

2012-12-10 Thread Ingo Molnar
* Mel Gorman wrote: > On Mon, Dec 10, 2012 at 08:15:45PM +0100, Ingo Molnar wrote: > > > > * Rik van Riel wrote: > > > > > On 12/10/2012 01:22 PM, Thomas Gleixner wrote: > > > > > > > So autonuma and numacore are basically on the same page, > > > > with a slight advantage for numacore in th

Re: [RFC v2] Add mempressure cgroup

2012-12-10 Thread Anton Vorontsov
On Mon, Dec 10, 2012 at 01:23:09PM +0100, Bartlomiej Zolnierkiewicz wrote: > On Monday 10 December 2012 10:58:38 Anton Vorontsov wrote: > > > +static void consume_memory(void) > > +{ > > + unsigned int i = 0; > > + unsigned int j = 0; > > + > > + puts("consuming memory..."); > > + > > + wh

Re: [GIT TREE] Unified NUMA balancing tree, v3

2012-12-10 Thread Ingo Molnar
* Ingo Molnar wrote: > > * Mel Gorman wrote: > > > On Mon, Dec 10, 2012 at 08:15:45PM +0100, Ingo Molnar wrote: > > > > > > * Rik van Riel wrote: > > > > > > > On 12/10/2012 01:22 PM, Thomas Gleixner wrote: > > > > > > > > > So autonuma and numacore are basically on the same page, > > >

Re: [RFC v2] Add mempressure cgroup

2012-12-10 Thread Anton Vorontsov
On Mon, Dec 10, 2012 at 01:50:28PM +0200, Kirill A. Shutemov wrote: [...] > I think the interface is broken. One eventfd can be registered to get > many different notifications. But anyone is free to do anything they like with a gun and their leg. :) They simply should not do this, since yes, they

Re: [RFC] Capabilities still can't be inherited by normal programs

2012-12-10 Thread Kees Cook
On Mon, Dec 10, 2012 at 11:55 AM, Andy Lutomirski wrote: > Write a daemon. Rig up wrappers for each setuid program to instead > call into that daemon and have that daemon invoke the privileged > program on behalf of the caller, with a sanitized environment. Be > annoyed by a few items on the "li

Re: [PATCH 0/8] nfsd: make service created per net

2012-12-10 Thread J. Bruce Fields
On Thu, Dec 06, 2012 at 02:22:57PM +0300, Stanislav Kinsbursky wrote: > This patch set prepares service control to be able to start separated > independent NFSd services in different network namespace environments. > Key changes are: > 1) Create independent instances of NFSd service (and thus threa

Re: [PATCH] applesmc: add sysfs file to report OSK

2012-12-10 Thread Alexander Graf
On 10.12.2012, at 20:54, Henrik Rydberg wrote: > Hi Guenter, > >> On Mon, Dec 10, 2012 at 09:51:35AM -0500, Gabriel L. Somlo wrote: >>> The AppleSMC contains two char[32] keys, OSK0 and OSK1, which are not >>> reported in the key count and index by default. These keys are used by >>> the OS X bo

Re: [PATCH 3/3 v2] iio: add rtc-driver for HID sensors of type time

2012-12-10 Thread Lars-Peter Clausen
On 12/10/2012 08:45 PM, Alexander Holler wrote: > Am 10.12.2012 18:05, schrieb Lars-Peter Clausen: > >> Looks pretty good now. But there are still some IIO remnants which should be >> removed as well. Also the driver should move to drivers/rtc/ since, well, >> it's a rtc driver not a IIO driver. >

Re: [PATCH] tcp: Avoid infinite loop on recvmsg bug

2012-12-10 Thread David Miller
I've tossed these two patches under the carpet, so you'll need to repost whichever one you want me to consider. Basically, discussing old patches is pretty useless without a resend to get it back into the fore-front of the patchwork queue. So please don't reference old stale patches without an a

[PATCH] Input: matrix-keymap - provide proper module license

2012-12-10 Thread Dmitry Torokhov
From: Florian Fainelli The matrix-keymap module is currently lacking a proper module license, add one so we don't have this module tainting the entire kernel. This issue has been present since commit 1932811f (Input: matrix-keymap - uninline and prepare for device tree support) Signed-off-by: Fl

Re: [PATCH 2/6] nfsd: swap fs root in NFSd kthreads

2012-12-10 Thread J. Bruce Fields
On Thu, Dec 06, 2012 at 06:34:47PM +0300, Stanislav Kinsbursky wrote: > NFSd does lookup. Lookup is done starting from current->fs->root. > NFSd is a kthread, cloned by kthreadd, and thus have global (but luckely > unshared) root. > So we have to swap root to those, which process, started NFSd, has

Re: NUMA performance comparison between three NUMA kernels and mainline. [Mid-size NUMA system edition.]

2012-12-10 Thread Ingo Molnar
* Mel Gorman wrote: > > NUMA convergence latency measurements > > - > > > > 'NUMA convergence' latency is the number of seconds a > > workload takes to reach 'perfectly NUMA balanced' state. > > This is measured on the CPU placement side: once it has > > c

Re: [PATCH 266/270] ARM: 7566/1: vfp: fix save and restore when running on pre-VFPv3 and CONFIG_VFPv3 set

2012-12-10 Thread Greg Kroah-Hartman
On Mon, Dec 10, 2012 at 12:28:54AM +, Ben Hutchings wrote: > On Mon, 2012-11-26 at 14:59 -0200, Herton Ronaldo Krzesinski wrote: > > 3.5.7u1 -stable review patch. If anyone has any objections, please let me > > know. > > > > -- > > > > From: Paul Walmsley > > > > commit 39

Re: [PATCH -stable 1/1] freezer: PF_FREEZER_NOSIG should be cleared along with PF_NOFREEZE

2012-12-10 Thread Greg Kroah-Hartman
On Fri, Dec 07, 2012 at 03:49:22PM +0100, Oleg Nesterov wrote: > This patch is only for pre-v3.3 stable trees which backported > b40a7959 "freezer: exec should clear PF_NOFREEZE along with PF_KTHREAD". > v3.3+ doesn't need this fix. > > b40a7959 is the trivial bugfix, but unfortunately I forgot th

Re: kswapd craziness in 3.7

2012-12-10 Thread Zlatko Calusic
On 10.12.2012 20:13, Linus Torvalds wrote: > > It's worth giving this as much testing as is at all possible, but at > the same time I really don't think I can delay 3.7 any more without > messing up the holiday season too much. So unless something obvious > pops up, I will do the release tonight.

Re: [PATCH] Input: matrix-keymap - provide proper module license

2012-12-10 Thread Florian Fainelli
On Monday 10 December 2012 12:25:32 Dmitry Torokhov wrote: > From: Florian Fainelli > > The matrix-keymap module is currently lacking a proper module license, > add one so we don't have this module tainting the entire kernel. This > issue has been present since commit 1932811f (Input: matrix-keym

Re: Missing tags in my local stable git repo

2012-12-10 Thread Steven Rostedt
On Mon, 2012-12-10 at 11:30 -0800, Linus Torvalds wrote: > Any tree that is an alternate and ever has *any* objects in it that > can become unreachable is a really really really bad idea. The only alternates that I use are my local copies of stable and your tree, which should always be safe. > A

[PATCH v7] Cypress PS/2 Trackpad driver

2012-12-10 Thread Kamal Mostafa
This driver, submitted on behalf of Cypress Semiconductor Corporation and additional contributors, provides support for the Cypress PS/2 Trackpad. Note that this patch "increase struct ps2dev cmdbuf[] to 8 bytes": http://www.spinics.net/lists/linux-input/msg24095.html ... is a PREREQUISITE for thi

Re: [PATCH v2 04/10] net: smc911x: use io{read,write}*_rep accessors

2012-12-10 Thread David Miller
From: Will Deacon Date: Mon, 10 Dec 2012 19:12:36 + > From: Matthew Leach > > The {read,write}s{b,w,l} operations are not defined by all > architectures and are being removed from the asm-generic/io.h > interface. > > This patch replaces the usage of these string functions in the smc911x >

Re: [PATCH v2 03/10] net: smc91x: use io{read,write}*_rep accessors instead of string functions

2012-12-10 Thread David Miller
From: Will Deacon Date: Mon, 10 Dec 2012 19:12:35 + > The {read,write}s{b,w,l} operations are not defined by all architectures > and are being removed from the asm-generic/io.h interface. > > This patch replaces the usage of these string functions in the default > SMC accessors with io{read,

Re: [PATCH v2 06/10] net: 8390: use io{read,write}*_rep accessors

2012-12-10 Thread David Miller
From: Will Deacon Date: Mon, 10 Dec 2012 19:12:38 + > From: Matthew Leach > > The {read,write}s{b,w,l} operations are not defined by all > architectures and are being removed from the asm-generic/io.h > interface. > > This patch replaces the usage of these string functions in the 8390 > ac

Re: [PATCH v2 05/10] net: dm9000: use io{read,write}*_rep accessors

2012-12-10 Thread David Miller
From: Will Deacon Date: Mon, 10 Dec 2012 19:12:37 + > From: Matthew Leach > > The {read,write}s{b,w,l} operations are not defined by all > architectures and are being removed from the asm-generic/io.h > interface. > > This patch replaces the usage of these string functions in the default >

problem: [PATCH] iptable_REJECT doesn't constructs the tcp reset packet cleanly

2012-12-10 Thread Mukund Jampala
problem description: The problem occurs when iptables constructs the tcp reset packet. It doesn't initialize the pointer to the tcp header within the skb. When the skb is passed to the ixgbe driver for transmit, the ixgbe driver attempts to access the tcp header and crashes. Currently, other driver

Re: [GIT TREE] Unified NUMA balancing tree, v3

2012-12-10 Thread Ingo Molnar
* Ingo Molnar wrote: > > If you had read that report, you would know that I didn't > > have results for specjbb with THP enabled due to the JVM > > crashing with null pointer exceptions. > > Hm, it's the unified tree where most of the mm/ bits are the > AutoNUMA bits from your tree. (It does

Re: Missing tags in my local stable git repo

2012-12-10 Thread Linus Torvalds
On Mon, Dec 10, 2012 at 12:44 PM, Steven Rostedt wrote: > > OK, this may be my issue, as my stable.git has my copy of your tree as > an alternate. Maybe I can merge the two trees. That should work. Of course, it would depend on there not being any clashes in the tag namespace, but we don't do tha

Re: Missing tags in my local stable git repo

2012-12-10 Thread Andreas Schwab
Steven Rostedt writes: > [remote "origin"] > fetch = +refs/*:refs/* > mirror = true > url = git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git > [remote "stable"] > url = > git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git >

Re: [RFC PATCH 01/10] s390/pci: base support

2012-12-10 Thread Bjorn Helgaas
On Wed, Nov 14, 2012 at 2:41 AM, Jan Glauber wrote: > Add PCI support for s390, (only 64 bit mode is supported by hardware): > - PCI facility tests > - PCI instructions: pcilg, pcistg, pcistb, stpcifc, mpcifc, rpcit > - map readb/w/l/q and writeb/w/l/q to pcilg and pcistg instructions > - pci_ioma

Re: [PATCH] applesmc: add sysfs file to report OSK

2012-12-10 Thread Rene Rebe
On 10.12.2012, at 21:19, Alexander Graf wrote: > > On 10.12.2012, at 20:54, Henrik Rydberg wrote: > >> Hi Guenter, >> >>> On Mon, Dec 10, 2012 at 09:51:35AM -0500, Gabriel L. Somlo wrote: The AppleSMC contains two char[32] keys, OSK0 and OSK1, which are not reported in the key count

Re: Missing tags in my local stable git repo

2012-12-10 Thread Geert Uytterhoeven
On Mon, Dec 10, 2012 at 9:44 PM, Steven Rostedt wrote: > Otherwise I don't get the updates from stable when I do a remote fetch > of my local copies. Would something like this work? > > [remote "origin"] > fetch = +refs/*:refs/* > mirror = true > url = git://git.kernel.org/

Re: [PATCH] kvm: Fix irqfd resampler list walk

2012-12-10 Thread Marcelo Tosatti
On Thu, Dec 06, 2012 at 02:44:59PM -0700, Alex Williamson wrote: > Typo for the next pointer means we're walking random data here. > > Signed-off-by: Alex Williamson > Cc: sta...@vger.kernel.org [3.7] > --- > > Not sure if this will make 3.7, so preemptively adding the stable flag > > virt/kvm

Re: [PATCH] x86/kexec: crash_vmclear_local_vmcss needs __rcu

2012-12-10 Thread Marcelo Tosatti
On Fri, Dec 07, 2012 at 01:40:56PM +0800, Zhang Yanfei wrote: > This removes the sparse warning: > arch/x86/kernel/crash.c:49:32: sparse: incompatible types in comparison > expression (different address spaces) > > Reported-by: kbuild test robot > Signed-off-by: Zhang Yanfei > --- > arch/x86/i

Re: Missing tags in my local stable git repo

2012-12-10 Thread Geert Uytterhoeven
On Mon, Dec 10, 2012 at 10:16 PM, Geert Uytterhoeven wrote: > On Mon, Dec 10, 2012 at 9:44 PM, Steven Rostedt wrote: >> Otherwise I don't get the updates from stable when I do a remote fetch >> of my local copies. Would something like this work? >> >> [remote "origin"] >> fetch = +refs/*:

Re: Missing tags in my local stable git repo

2012-12-10 Thread Greg Kroah-Hartman
On Mon, Dec 10, 2012 at 03:44:34PM -0500, Steven Rostedt wrote: > On Mon, 2012-12-10 at 11:30 -0800, Linus Torvalds wrote: > > > Any tree that is an alternate and ever has *any* objects in it that > > can become unreachable is a really really really bad idea. > > The only alternates that I use ar

Re: Missing tags in my local stable git repo

2012-12-10 Thread Steven Rostedt
On Mon, 2012-12-10 at 22:12 +0100, Andreas Schwab wrote: > Steven Rostedt writes: > > > [remote "origin"] > > fetch = +refs/*:refs/* > > mirror = true > > url = > > git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git > > [remote "stable"] > > url = >

Re: [PATCH] applesmc: add sysfs file to report OSK

2012-12-10 Thread Alexander Graf
On 10.12.2012, at 21:43, Rene Rebe wrote: > > On 10.12.2012, at 21:19, Alexander Graf wrote: > >> >> On 10.12.2012, at 20:54, Henrik Rydberg wrote: >> >>> Hi Guenter, >>> On Mon, Dec 10, 2012 at 09:51:35AM -0500, Gabriel L. Somlo wrote: > The AppleSMC contains two char[32] keys, O

Re: linux-next: build warning after merge of the pci tree

2012-12-10 Thread Bjorn Helgaas
On Mon, Dec 10, 2012 at 08:03:21PM +1100, Stephen Rothwell wrote: > Hi Bjorn, > > After merging the pci tree, today's linux-next build (powerpc > ppc44x_defconfig) produced this warning: > > drivers/pci/rom.c: In function 'pci_map_rom': > drivers/pci/rom.c:125:23: warning: cast from pointer to in

Re: [PATCH 3/3 v2] iio: add rtc-driver for HID sensors of type time

2012-12-10 Thread Alexander Holler
Am 10.12.2012 21:22, schrieb Lars-Peter Clausen: > On 12/10/2012 08:45 PM, Alexander Holler wrote: >> Am 10.12.2012 18:05, schrieb Lars-Peter Clausen: >> >>> Looks pretty good now. But there are still some IIO remnants which should be >>> removed as well. Also the driver should move to drivers/rtc/

Re: Missing tags in my local stable git repo

2012-12-10 Thread Steven Rostedt
On Mon, 2012-12-10 at 13:18 -0800, Greg Kroah-Hartman wrote: > > Am I making any sense? ;-) > > Kind of, I'm glad you understand it, because I sure don't ;-) > but would would be even easier is if you just have one > "origin", pointing at linux-stable.git, and then every so often just do: >

[PATCH] kvm/vmx: fix the return value of handle_vmcall()

2012-12-10 Thread Jesse Larrew
The return value of kvm_emulate_hypercall() is intended to inform callers whether or not we need to exit to userspace. However, handle_vmcall() currently ignores the return value. This patch simply propogates the return value from kvm_emulate_hypercall() to callers so that it can be acted upon ap

Re: [PATCH v3] Enable A20 using KBC for some MSI laptops to fix S3 resume

2012-12-10 Thread H. Peter Anvin
On 11/05/2012 12:35 PM, Ondrej Zary wrote: > On Friday 26 October 2012 10:56:44 Ondrej Zary wrote: >> Some MSI laptop BIOSes are broken - INT 15h code uses port 92h to enable >> A20 line but resume code assumes that KBC was used. >> The laptop will not resume from S3 otherwise but powers off after

Re: Missing tags in my local stable git repo

2012-12-10 Thread Stephen Rothwell
Hi Linus, On Mon, 10 Dec 2012 11:30:55 -0800 Linus Torvalds wrote: > > Moral of the story: be *very* careful when using alternates. Only ever > point the alternate file at a *real* repository (not another one with > alternates), and only one that never has references removed. Does that mean you

Re: kswapd craziness in 3.7

2012-12-10 Thread Linus Torvalds
[ Adding High Dickins because of the shmem oops. ] On Mon, Dec 10, 2012 at 12:35 PM, Zlatko Calusic wrote: > > And funny thing that you mention i915, because yesterday my daughter managed > to lock up our laptop hard (that was a first), and this is what I found in > kern.log after restart: > >

Re: [PATCH] applesmc: add sysfs file to report OSK

2012-12-10 Thread Rene Rebe
On 10.12.2012, at 22:24, Alexander Graf wrote: > On 10.12.2012, at 21:43, Rene Rebe wrote: > >> On 10.12.2012, at 21:19, Alexander Graf wrote: >>> >>> On 10.12.2012, at 20:54, Henrik Rydberg wrote: >>> Hi Guenter, > On Mon, Dec 10, 2012 at 09:51:35AM -0500, Gabriel L. Somlo wr

Re: Missing tags in my local stable git repo

2012-12-10 Thread Linus Torvalds
On Mon, Dec 10, 2012 at 1:28 PM, Stephen Rothwell wrote: > > Does that mean your tree could now be a problem, since you have recently > added and then removed a branch (some of whose commits were not eventually > committed to your master branch, I think)? All of them were committed before that br

[PATCH][TRIVIAL] kvm_para: fix typo in hypercall comments

2012-12-10 Thread Jesse Larrew
Correct a typo in the comment explaining hypercalls. Signed-off-by: Jesse Larrew --- arch/x86/include/asm/kvm_para.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/include/asm/kvm_para.h b/arch/x86/include/asm/kvm_para.h index eb3e9d8..f49c16d 100644 --- a/arch/x86

Re: [PATCH 3/3 v2] iio: add rtc-driver for HID sensors of type time

2012-12-10 Thread Lars-Peter Clausen
On 12/10/2012 10:26 PM, Alexander Holler wrote: > Am 10.12.2012 21:22, schrieb Lars-Peter Clausen: >> On 12/10/2012 08:45 PM, Alexander Holler wrote: >>> Am 10.12.2012 18:05, schrieb Lars-Peter Clausen: >>> Looks pretty good now. But there are still some IIO remnants which should be

Re: [PATCH 3/3 v2] iio: add rtc-driver for HID sensors of type time

2012-12-10 Thread Jonathan Cameron
On 12/10/2012 09:39 PM, Lars-Peter Clausen wrote: > On 12/10/2012 10:26 PM, Alexander Holler wrote: >> Am 10.12.2012 21:22, schrieb Lars-Peter Clausen: >>> On 12/10/2012 08:45 PM, Alexander Holler wrote: Am 10.12.2012 18:05, schrieb Lars-Peter Clausen: > Looks pretty good now. But the

Re: Missing tags in my local stable git repo

2012-12-10 Thread Steven Rostedt
On Mon, 2012-12-10 at 13:08 -0800, Linus Torvalds wrote: > I would almost suggest you make both my base tree and the stable tree > be remotes, instead of necessarily mirroring my tree and then putting > the stable tree on top of that. I think it's confusing to have a > mirror but than in that same

[PATCH] kgdb/kdb: A fix for kdb command table expansion

2012-12-10 Thread John Blackwood
When locally adding in some additional kdb commands, I stumbled across an issue with the dynamic expansion of the kdb command table. When the number of kdb commands exceeds the size of the statically allocated kdb_base_commands[] array, additional space is allocated in the kdb_register_repeat() r

Re: kswapd craziness in 3.7

2012-12-10 Thread Borislav Petkov
On Mon, Dec 10, 2012 at 01:28:54PM -0800, Linus Torvalds wrote: > [ Adding High Dickins because of the shmem oops. ] > > On Mon, Dec 10, 2012 at 12:35 PM, Zlatko Calusic > wrote: > > > > And funny thing that you mention i915, because yesterday my daughter > > managed to lock up our laptop hard (

Re: [PATCH v4 2/7] pl080.h: moved from arm/include/asm/hardware to include/linux/amba/

2012-12-10 Thread Linus Walleij
On Mon, Dec 10, 2012 at 2:42 PM, Davide Ciminaghi wrote: > From: Alessandro Rubini > > The header is used by drivers/dma/amba-pl08x.c, which can be compiled > under x86, where PL080 exists under a PCI-to-AMBA bridge. This patche > moves it where it can be accessed by other architectures, and fix

Re: kswapd craziness in 3.7

2012-12-10 Thread Linus Torvalds
On Mon, Dec 10, 2012 at 1:42 PM, Borislav Petkov wrote: > > Aren't we gonna consider the out-of-tree vbox modules being loaded and > causing some corruptions like maybe the single-bit error above? > > I'm also thinking of this here: https://lkml.org/lkml/2011/10/6/317 Yup, that looks more likely,

Re: [PATCH 1/1] gpio: add Lynxpoint chipset gpio driver.

2012-12-10 Thread Linus Walleij
On Mon, Dec 10, 2012 at 3:06 PM, Mathias Nyman wrote: >>> +static void lp_irq_enable(struct irq_data *d) >>> +{ >>> + struct lp_gpio *lg = irq_data_get_irq_chip_data(d); >>> + u32 gpio = irqd_to_hwirq(d); >> >> >> That variable is confusingly named. It's not a global gpio number, >> i

Re: Missing tags in my local stable git repo

2012-12-10 Thread Steven Rostedt
On Mon, 2012-12-10 at 16:42 -0500, Steven Rostedt wrote: > Perhaps this has nothing to do with chained alternates and git gc going > crazy. It could have just been my linus.git tree getting corrupted, and > then the git gc run on my stable.git tree shortly after, and corrupting > that too. I don't

Re: [PATCH 0/3] remove kvm's use of augmented rbtree

2012-12-10 Thread Michel Lespinasse
On Mon, Dec 10, 2012 at 8:22 AM, Sasha Levin wrote: > Ping? Hey Sasha, There seems to have been some confusion here. After your last message, I expected *you* to take the patches and push them towards kvm tree. But, I guess you were waiting for Pekka's reply first ? Or did you expect me to go pu

[PATCH] of: Support a PCI device that is compatible with 'simple-bus'

2012-12-10 Thread Jason Gunthorpe
The intended use for this feature is to let a PCI device declare itself a 'simple-bus' and then describe additional devices (such as GPIOs, I2C, etc) nested below itself. The devices nested below the PCI device will use 'reg' addressing with the 5 dw format used by PCI. This is for embedded cases

[PATCH v5] KSM: numa awareness sysfs knob

2012-12-10 Thread Petr Holasek
Introduces new sysfs boolean knob /sys/kernel/mm/ksm/merge_across_nodes which control merging pages across different numa nodes. When it is set to zero only pages from the same node are merged, otherwise pages from all nodes can be merged together (default behavior). Typical use-case could be a lo

Re: kswapd craziness in 3.7

2012-12-10 Thread Borislav Petkov
On Mon, Dec 10, 2012 at 01:47:23PM -0800, Linus Torvalds wrote: > On Mon, Dec 10, 2012 at 1:42 PM, Borislav Petkov wrote: > > > > Aren't we gonna consider the out-of-tree vbox modules being loaded and > > causing some corruptions like maybe the single-bit error above? > > > > I'm also thinking of

[PATCH] Documentation: ABI: /sys/devices/system/node/

2012-12-10 Thread Davidlohr Bueso
Describe NUMA node sysfs files/attributes. Signed-off-by: Davidlohr Bueso --- Note that for the specific dates and contacts I couldn't find, I left it as default for Oct 2002 and linux-mm. Documentation/ABI/stable/sysfs-devices-node | 96 - 1 file changed, 95 inserti

Re: [PATCH 0/3] remove kvm's use of augmented rbtree

2012-12-10 Thread Sasha Levin
On 12/10/2012 04:50 PM, Michel Lespinasse wrote: > On Mon, Dec 10, 2012 at 8:22 AM, Sasha Levin wrote: >> Ping? > > Hey Sasha, > > There seems to have been some confusion here. After your last message, > I expected *you* to take the patches and push them towards kvm tree. > But, I guess you were

Re: NUMA performance comparison between three NUMA kernels and mainline. [Mid-size NUMA system edition.]

2012-12-10 Thread Mel Gorman
On Mon, Dec 10, 2012 at 09:29:33PM +0100, Ingo Molnar wrote: > > * Mel Gorman wrote: > > > > NUMA convergence latency measurements > > > - > > > > > > 'NUMA convergence' latency is the number of seconds a > > > workload takes to reach 'perfectly NUMA balance

Re: [PATCH V3 2/3] dmaengine: dw_dmac: Enhance device tree support

2012-12-10 Thread Arnd Bergmann
On Tuesday 16 October 2012, Viresh Kumar wrote: > dw_dmac driver already supports device tree but it used to have its platform > data passed the non-DT way. > > This patch does following changes: > - pass platform data via DT, non-DT way still takes precedence if both are > used. > - create gener

Read starvation by sync writes

2012-12-10 Thread Jan Kara
Hi, I was looking into IO starvation problems where streaming sync writes (in my case from kjournald but DIO would look the same) starve reads. This is because reads happen in small chunks and until a request completes we don't start reading further (reader reads lots of small files) while wri

Re: [PATCH v4 0/7] enable support for AMBA drivers under x86

2012-12-10 Thread David Brown
On Mon, Dec 10, 2012 at 02:42:29PM +0100, Davide Ciminaghi wrote: > Acked-by/Reviewed-by situation: > > v1: > > "mmc: use the new " > Acked by David Brown (see https://lkml.org/lkml/2012/9/14/613) The change doesn't look substantially different, you can keep my Ack for it. David -- The Qualco

Re: kswapd craziness in 3.7

2012-12-10 Thread Zlatko Calusic
On 10.12.2012 22:54, Borislav Petkov wrote: On Mon, Dec 10, 2012 at 01:47:23PM -0800, Linus Torvalds wrote: On Mon, Dec 10, 2012 at 1:42 PM, Borislav Petkov wrote: Aren't we gonna consider the out-of-tree vbox modules being loaded and causing some corruptions like maybe the single-bit error a

[ANNOUNCE] Git v1.8.0.2

2012-12-10 Thread Junio C Hamano
The latest maintenance release Git v1.8.0.2 is now available at the usual places. The release tarballs are found at: http://code.google.com/p/git-core/downloads/list and their SHA-1 checksums are: 1e1640794596da40f35194c29a8cc4e41c6b4f6d git-1.8.0.2.tar.gz 6b9e14c5b19b2e27605014252febd61a7

<    1   2   3   4   5   6   7   >