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
* 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
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
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
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
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
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
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
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
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
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
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
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
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,
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
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
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
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
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
---
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 +++
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
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
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
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:
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
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:
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
--
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:
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
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
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
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:
>
> -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
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..
* 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
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
* 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,
> > >
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
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
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
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
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.
>
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
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
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
* 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
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
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
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.
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
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
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
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
>
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,
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
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 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
* 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
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
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
>
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
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
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/
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
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
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/*:
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
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 =
>
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
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
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/
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:
>
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
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
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
[ 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:
>
>
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
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
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
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
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
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
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
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 (
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
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,
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
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
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
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
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
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
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
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
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
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
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
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
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
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
401 - 500 of 670 matches
Mail list logo