Netdev List
 help / color / mirror / Atom feed
* Re: [GIT] Networking
From: Linus Torvalds @ 2011-03-15 15:43 UTC (permalink / raw)
  To: david
  Cc: Steven Rostedt, J. Bruce Fields, Ben Hutchings, David Miller,
	akpm, netdev, linux-kernel
In-Reply-To: <alpine.DEB.2.00.1103150019060.5340@asgard.lang.hm>

On Tue, Mar 15, 2011 at 12:20 AM,  <david@lang.hm> wrote:
>
> what effect would this have on bisecting? if this helped people avoid
> bisecting in between the bad commit and the fix for it, it may be worth it.

The biggest impact on bisecting would be to just make it slower due to
extra merge commits. It's probably not a hugely noticeable thing,
though - we have merges for lots of other reasons.

Merges make bisecting a bit less efficient not only because they are
an extra commit, but because merges - by not being linear - end up
making it harder to find the "perfect" half-way point. IOW, the
bisection algorithm may not be able to pick a commit exactly midway,
because if it picks a merge it will obviously include both branches
(which may be "too much"), but if it picks the last commit of either
branch it may be too little.

And not picking a good half-way point makes bisection less efficient
(it's no longer "log2()", but maybe "log1.7()").

In practice, though, I suspect it's not really a big issue.

The other issue with bisecting merges is obviously that it can be
really nasty to figure out a bug that is introduced by the merge
itself (which is usually due to some interaction between the things
being merged, rather than any real mis-merge itself, although
mis-merges can obviously happen).

Again, that's pretty rare, although it does happen (and is often quite
"interesting" when it happens).

But in practice, I think the biggest argument against trying to fix
things as patches on top of the original bug and then merging it in is
that it's just extra work for fairly small gain. In particular:

 - not all bugs get bisected. In fact, it's the minority - most
bug-fixes are "obvious", and no-one even bothers bisecting them

 - not all bugs are as clearly the result of a single commit. Many are
a commit series. Sure, you'd just make it the last one in the series,
but it would kind of defeat the "parent introduced the bug" point of
it all.

 - putting the "commit xyz caused this problem" in the changelog (and
then just follow the chain that way) isn't really all that much worse.
The reason I talked about doing this for _merges_ is that I think
developers should think a lot more about merging, but I don't think
people need to think a lot about "let's fix this obvious bug".

 - bugfixes are often sent out as emails etc. Just applying the
bug-fix would be a _lot_ more work if it involved "create new branch
at original bug, apply, merge" than just "apply". That's especially
true for series of patches, like the ones I get from Andrew and Al.

In particular, that last thing is a killer for me personally. It
(together with the first point) would mean that it would be done only
for a very small subset of bugs, which really defeats the whole
purpose, and then makes that "merge it on top of its parent" thing be
the unusual case rather than some general rule.

And merges do end up being more complicated than plain patches. Not
just in the "extra commit" sense, but also simply in the sense of
making the history more complex.

They do have advantages too. We could just merge the same branch into
multiple branches, for example (-stable comes to mind). That said,
once more, it would really complicate things for everybody (no longer
can the stable people just apply a series of patches), so...

So on the whole, I don't think it would be worth it. I don't think
it's _wrong_, mind you, I just think that the way we work, it's more
pain than gain.

For doing a backwards merge, I think the "more pain" is a _good_ thing
(it really shouldn't _ever_ be a mindless "let's merge whatever
upstream is today" and I definitely made that mindless action too easy
to do in git). For most bug-fixes, more pain is just that - more pain.

                            Linus

^ permalink raw reply

* Re: Multicast Fails Over Multipoint GRE Tunnel
From: Eric Dumazet @ 2011-03-15 15:34 UTC (permalink / raw)
  To: Doug Kehn; +Cc: netdev, Timo Teras
In-Reply-To: <998769.91206.qm@web39301.mail.mud.yahoo.com>

Le lundi 14 mars 2011 à 16:34 -0700, Doug Kehn a écrit :
> Hi All,
> 
> I'm running kernel version 2.6.36 on ARM XSCALE (big-endian) and multicast over a multipoint GRE tunnel isn't working.  For my architecture, this worked on 2.6.26.8.  For x86, multicast over a multipoint GRE tunnel worked with kernel version 2.6.31 but failed with version 2.6.35.  Multicast over a multipoint GRE tunnel fails because ipgre_header() fails the 'if (iph->daddr)' check and reutrns -t->hlen.  ipgre_header() is being called, from neigh_connected_output(), with a non-null daddr; the contents of daddr is zero.
> 
> Reverting the ip_gre.c patch posted in http://marc.info/?l=linux-netdev&m=126762491525281&w=2 resolves the problem.  (Reviewing the HEAD of net-next-2.6 it appears that ipgre_header() remains unchanged from 2.6.36.)
> 
> The configuration used to discover/diagnose the problem:
> 
> ip tunnel add tun1 mode gre key 11223344 ttl 64 csum remote any
> ip link set dev tun1 up
> ip link set dev tun1 multicast on
> ip addr flush dev tun1
> ip addr add 10.40.92.114/24 broadcast 10.40.92.255 dev tun1
> 
> 12: tun1: <MULTICAST,NOARP,UP,10000> mtu 1468 qdisc noqueue
>     link/gre 0.0.0.0 brd 0.0.0.0
>     inet 10.40.92.114/24 brd 10.40.92.255 scope global tun1
> 
> Then attempt:
> ping -I tun1 224.0.0.9
> 
> Are additional configuration steps now required for multicast over multipoint GRE tunnel or is ipgre_header() in error?

Hi Doug

CC Timo Teras <timo.teras@iki.fi>

I would do a partial revert of Timo patch, but this means initial
concern should be addressed ?

(Timo mentioned : 
	If the NOARP packets are not dropped, ipgre_tunnel_xmit() will
	take rt->rt_gateway (= NBMA IP) and use that for route
	look up (and may lead to bogus xfrm acquires).)


Is the following works for you ?

diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c
index da5941f..47844fa2 100644
--- a/net/ipv4/ip_gre.c
+++ b/net/ipv4/ip_gre.c
@@ -1170,8 +1170,10 @@ static int ipgre_header(struct sk_buff *skb, struct net_device *dev,
 
 	if (saddr)
 		memcpy(&iph->saddr, saddr, 4);
-	if (daddr)
+	if (daddr) {
 		memcpy(&iph->daddr, daddr, 4);
+		return t->hlen;
+	}
 	if (iph->daddr)
 		return t->hlen;
 



^ permalink raw reply related

* Re: [PATCH] Fix overflow of name in struct net_device, replaced str* and sprintf with strn* and snprintf respectivly.
From: Ben Hutchings @ 2011-03-15 15:32 UTC (permalink / raw)
  To: Sasikanth V; +Cc: davem, netdev
In-Reply-To: <AANLkTi=g2rczjMAyz788np+frUvWCBuRWDt1Px+ZAM6D@mail.gmail.com>

On Tue, 2011-03-15 at 20:30 +0530, Sasikanth V wrote:
> On Tue, Mar 15, 2011 at 1:59 AM, Ben Hutchings
> <bhutchings@solarflare.com> wrote:
>         On Tue, 2011-03-15 at 01:37 +0530, Sasikanth V wrote:
>         > Signed-off-by: Sasikanth V <sasikanth.v19@gmail.com>
>         > ---
>         >  net/core/dev.c |   14 +++++++-------
>         >  1 files changed, 7 insertions(+), 7 deletions(-)
>         >
>         > diff --git a/net/core/dev.c b/net/core/dev.c
>         > index 6561021..9d06c1e 100644
>         > --- a/net/core/dev.c
>         > +++ b/net/core/dev.c
>         > @@ -510,7 +510,7 @@ int netdev_boot_setup_check(struct
>         net_device *dev)
>         >
>         >       for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
>         >               if (s[i].name[0] != '\0' && s[i].name[0] != '
>         ' &&
>         > -                 !strcmp(dev->name, s[i].name)) {
>         > +                 !strncmp(dev->name, s[i].name, IFNAMSIZ))
>         {
>         
>         
>         If s[i].name is too long, so what?  No change is required
>         here.
>         
>         >                       dev->irq        = s[i].map.irq;
>         >                       dev->base_addr  = s[i].map.base_addr;
>         >                       dev->mem_start  = s[i].map.mem_start;
>         > @@ -539,7 +539,7 @@ unsigned long netdev_boot_base(const
>         char *prefix, int unit)
>         >       char name[IFNAMSIZ];
>         >       int i;
>         >
>         > -     sprintf(name, "%s%d", prefix, unit);
>         > +     snprintf(name, IFNAMSIZ, "%s%d", prefix, unit);
>         
>         
>         This looks reasonable.
>         
>         >       /*
>         >        * If device already registered then return base of 1
>         > @@ -549,7 +549,7 @@ unsigned long netdev_boot_base(const
>         char *prefix, int unit)
>         >               return 1;
>         >
>         >       for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
>         > -             if (!strcmp(name, s[i].name))
>         > +             if (!strncmp(name, s[i].name, IFNAMSIZ))
>         
>         
>         Not required.
> 
>        So,  Do we have to remove already existing strncmp (to compare
> the device name)  in dev.c?
[...]

I don't know what you mean.

Ben.

-- 
Ben Hutchings, Senior Software Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.


^ permalink raw reply

* Re: Bug inkvm_set_irq
From: Jean-Philippe Menil @ 2011-03-15 14:58 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: netdev, kvm, virtualization
In-Reply-To: <20110315143230.GA6911@redhat.com>

Le 15/03/2011 15:32, Michael S. Tsirkin a écrit :
> On Thu, Mar 10, 2011 at 09:42:28AM +0100, Jean-Philippe Menil wrote:
>> Le 09/03/2011 14:59, Michael S. Tsirkin a écrit :
>>> On Wed, Mar 09, 2011 at 02:12:58PM +0100, Jean-Philippe Menil wrote:
>>>> Le 09/03/2011 14:00, Michael S. Tsirkin a écrit :
>>>>> On Wed, Mar 09, 2011 at 01:28:43PM +0100, Jean-Philippe Menil wrote:
>>>>>> Le 08/03/2011 12:13, Michael S. Tsirkin a écrit :
>>>>>>> On Fri, Mar 04, 2011 at 10:39:05AM +0100, Jean-Philippe Menil wrote:
>>>>>>>> Yes, it's a 2.6.37.2 kernel.
>>>>>>> OK, here's a debugging patch.
>>>>>>> Please run with slab debugging as previously until you see
>>>>>>> 'eventfd bug detected!' in dmesg or until there is a crash.
>>>>>>> It might be also useful to enable timestampts on printk with
>>>>>>>   Symbol: PRINTK_TIME [=y]
>>>>>>>    │ Type  : boolean
>>>>>>>    │ Prompt: Show timing information on printks
>>>>>>>
>>>>>>> once you see the error, please upload the
>>>>>>> full dmesg output somewhere to we can track what
>>>>>>> goes on.
>>>>>>>
>>>>>>> Hopefully there won't be an oops this time which
>>>>>>> should make it easier for you to test (no need to
>>>>>>> reboot).
>>>>>>>
>>>>>>>
>>>>>>> diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c
>>>>>>> index c1f1e3c..3cb679b 100644
>>>>>>> --- a/virt/kvm/eventfd.c
>>>>>>> +++ b/virt/kvm/eventfd.c
>>>>>>> @@ -32,6 +32,7 @@
>>>>>>>   #include<linux/eventfd.h>
>>>>>>>   #include<linux/kernel.h>
>>>>>>>   #include<linux/slab.h>
>>>>>>> +#include<linux/nmi.h>
>>>>>>>
>>>>>>>   #include "iodev.h"
>>>>>>>
>>>>>>> @@ -43,6 +44,8 @@
>>>>>>>    * --------------------------------------------------------------------
>>>>>>>    */
>>>>>>>
>>>>>>> +#define KVM_BAD_PTR ((void*)(long)(0x6b6b6b6b6b6b6b6bull))
>>>>>>> +
>>>>>>>   struct _irqfd {
>>>>>>>   	struct kvm               *kvm;
>>>>>>>   	struct eventfd_ctx       *eventfd;
>>>>>>> @@ -61,6 +64,13 @@ irqfd_inject(struct work_struct *work)
>>>>>>>   {
>>>>>>>   	struct _irqfd *irqfd = container_of(work, struct _irqfd, inject);
>>>>>>>   	struct kvm *kvm = irqfd->kvm;
>>>>>>> +	if (kvm == KVM_BAD_PTR) {
>>>>>>> +		printk(KERN_ERR "Eventfd bug detected!\n");
>>>>>>> +		printk(KERN_ERR "%s(work=%p,irqfd=%p,kvm=%p,gsi=%d)\n", __func__,
>>>>>>> +			work, irqfd, kvm, irqfd->gsi);
>>>>>>> +		trigger_all_cpu_backtrace();
>>>>>>> +		return;
>>>>>>> +	}
>>>>>>>
>>>>>>>   	kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 1);
>>>>>>>   	kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 0);
>>>>>>> @@ -75,6 +85,8 @@ irqfd_shutdown(struct work_struct *work)
>>>>>>>   	struct _irqfd *irqfd = container_of(work, struct _irqfd, shutdown);
>>>>>>>   	u64 cnt;
>>>>>>>
>>>>>>> +	printk(KERN_ERR "%s(work=%p,irqfd=%p,kvm=%p, gsi=%d)\n", __func__,
>>>>>>> +	       work, irqfd, irqfd->kvm, irqfd->gsi);
>>>>>>>   	/*
>>>>>>>   	 * Synchronize with the wait-queue and unhook ourselves to prevent
>>>>>>>   	 * further events.
>>>>>>> @@ -91,6 +103,8 @@ irqfd_shutdown(struct work_struct *work)
>>>>>>>   	 * It is now safe to release the object's resources
>>>>>>>   	 */
>>>>>>>   	eventfd_ctx_put(irqfd->eventfd);
>>>>>>> +	printk(KERN_ERR "kfree at %s(work=%p,irqfd=%p)\n", __func__,
>>>>>>> +	       work, irqfd);
>>>>>>>   	kfree(irqfd);
>>>>>>>   }
>>>>>>>
>>>>>>> @@ -111,6 +125,8 @@ static void
>>>>>>>   irqfd_deactivate(struct _irqfd *irqfd)
>>>>>>>   {
>>>>>>>   	BUG_ON(!irqfd_is_active(irqfd));
>>>>>>> +	printk(KERN_ERR "%s(irqfd=%p,kvm=%p, gsi=%d)\n", __func__,
>>>>>>> +	       irqfd, irqfd->kvm, irqfd->gsi);
>>>>>>>
>>>>>>>   	list_del_init(&irqfd->list);
>>>>>>>
>>>>>>> @@ -178,6 +194,8 @@ kvm_irqfd_assign(struct kvm *kvm, int fd, int gsi)
>>>>>>>
>>>>>>>   	irqfd->kvm = kvm;
>>>>>>>   	irqfd->gsi = gsi;
>>>>>>> +	printk(KERN_ERR "%s(irqfd=%p,kvm=%p, gsi=%d)\n", __func__,
>>>>>>> +	       irqfd, kvm, gsi);
>>>>>>>   	INIT_LIST_HEAD(&irqfd->list);
>>>>>>>   	INIT_WORK(&irqfd->inject, irqfd_inject);
>>>>>>>   	INIT_WORK(&irqfd->shutdown, irqfd_shutdown);
>>>>>>> @@ -264,6 +282,8 @@ kvm_irqfd_deassign(struct kvm *kvm, int fd, int gsi)
>>>>>>>   	struct _irqfd *irqfd, *tmp;
>>>>>>>   	struct eventfd_ctx *eventfd;
>>>>>>>
>>>>>>> +	printk(KERN_ERR "%s(kvm=%p, gsi=%d)\n", __func__,
>>>>>>> +	       kvm, gsi);
>>>>>>>   	eventfd = eventfd_ctx_fdget(fd);
>>>>>>>   	if (IS_ERR(eventfd))
>>>>>>>   		return PTR_ERR(eventfd);
>>>>>>> @@ -305,6 +325,7 @@ void
>>>>>>>   kvm_irqfd_release(struct kvm *kvm)
>>>>>>>   {
>>>>>>>   	struct _irqfd *irqfd, *tmp;
>>>>>>> +	printk(KERN_ERR "%s(kvm=%p)\n", __func__, kvm);
>>>>>>>
>>>>>>>   	spin_lock_irq(&kvm->irqfds.lock);
>>>>>>>
>>>>>>> --
>>>>>>> To unsubscribe from this list: send the line "unsubscribe netdev" in
>>>>>>> the body of a message to majordomo@vger.kernel.org
>>>>>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>>>>> Hi,
>>>>>>
>>>>>> I boot the host with the patched kernel yesterday.
>>>>>> No crach until now, but two "Eventfd bug detected!" in the log at
>>>>>> "Mar  9 02:04:31" and "Mar  9 02:15:17"
>>>>>> You can find part of the log at the following adress:
>>>>>> http://filex.univ-nantes.fr/get?k=jL4Fe7yfSMN57toAH7V
>>>>>>
>>>>>> It a split file of the kern.log (1,4G), so if you need another part
>>>>>> of the log, let me know.
>>>>>>
>>>>>> Thanks for all.
>>>>>>
>>>>>> Regards.
>>>>> Downloading, it's big :)
>>>>> What about some 1000 lines before and after Eventfd bug detected! line?
>>>>> --
>>>>> To unsubscribe from this list: send the line "unsubscribe kvm" in
>>>>> the body of a message to majordomo@vger.kernel.org
>>>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>>> Yes, sorry about that.
>>>> I could have split my log into a smaller file.
>>>>
>>>> I was a little afraid of not transmit enough informations, and i was
>>>> a bit wide.
>>>> I hope you can find usefull trace anyway.
>>>>
>>>> Regards.
>>> OK, use after free.
>>>
>>>
>>> Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.593681]
>>> kvm_irqfd_assign(irqfd=ffff88045e8d6230,kvm=ffff88085151c000, gsi=26)
>>> Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.605359]
>>> kvm_irqfd_deassign(kvm=ffff88085151c000, gsi=26)
>>> Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.605388]
>>> irqfd_deactivate(irqfd=ffff88045e8d6230,kvm=ffff88085151c000, gsi=26)
>>> Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.605461]
>>> irqfd_shutdown(work=ffff88045e8d62b0,irqfd=ffff88045e8d6230,kvm=ffff88085151c000,
>>> gsi=26)
>>> Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.605509]
>>> kfree at irqfd_shutdown(work=ffff88045e8d62b0,irqfd=ffff88045e8d6230)
>>> Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.605588]
>>> Eventfd bug detected!
>>> Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.605612]
>>> irqfd_inject(work=ffff88045e8d6290,irqfd=ffff88045e8d6230,kvm=6b6b6b6b6b6b6b6b,gsi=1802201963)
>>>
>>>
>>> and 1802201963 is also 6b6b6b6b.
>>>
>>>
>>> I suspect that somehow, we get an event from eventfd even
>>> though we did eventfd_ctx_remove_wait_queue.
>>> Could you please try the following patch on top?
>>> When you see Eventfd bug or Wakeup bug, paste some
>>> last lines.
>>> For the full log file - better compress with xz.
>>>
>>>
>>> diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c
>>> index 3cb679b..63aeba5 100644
>>> --- a/virt/kvm/eventfd.c
>>> +++ b/virt/kvm/eventfd.c
>>> @@ -92,6 +92,8 @@ irqfd_shutdown(struct work_struct *work)
>>>   	 * further events.
>>>   	 */
>>>   	eventfd_ctx_remove_wait_queue(irqfd->eventfd,&irqfd->wait,&cnt);
>>> +	printk(KERN_ERR "remove wq at %s(work=%p,irqfd=%p)\n", __func__,
>>> +	       work, irqfd);
>>>
>>>   	/*
>>>   	 * We know no new events will be scheduled at this point, so block
>>> @@ -142,6 +144,13 @@ irqfd_wakeup(wait_queue_t *wait, unsigned mode, int sync, void *key)
>>>   	struct _irqfd *irqfd = container_of(wait, struct _irqfd, wait);
>>>   	unsigned long flags = (unsigned long)key;
>>>
>>> +	if (irqfd->kvm == KVM_BAD_PTR) {
>>> +		printk(KERN_ERR "Wakeup bug detected! flags 0x%lx\n", flags);
>>> +		printk(KERN_ERR "%s(work=%p,irqfd=%p,kvm=%p,gsi=%d)\n", __func__,
>>> +			&irqfd->inject, irqfd, irqfd->kvm, irqfd->gsi);
>>> +		trigger_all_cpu_backtrace();
>>> +		return 0;
>>> +	}
>>>   	if (flags&   POLLIN)
>>>   		/* An event has been signaled, inject an interrupt */
>>>   		schedule_work(&irqfd->inject);
>>> @@ -153,6 +162,9 @@ irqfd_wakeup(wait_queue_t *wait, unsigned mode, int sync, void *key)
>>>
>>>   		spin_lock_irqsave(&kvm->irqfds.lock, flags);
>>>
>>> +		printk(KERN_ERR "%s(work=%p,irqfd=%p,kvm=%p,gsi=%d,active=%d)\n", __func__,
>>> +			&irqfd->inject, irqfd, irqfd->kvm, irqfd->gsi,
>>> +			irqfd_is_active(irqfd));
>>>   		/*
>>>   		 * We must check if someone deactivated the irqfd before
>>>   		 * we could acquire the irqfds.lock since the item is
>>>
>> Hi,
>>
>> I noted seven "Eventfd bug detected" events during the night, and
>> only one Wakeup event:
>>
>> fifth.ah:Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.105868] Eventfd bug detected!
>> first.ad:Mar 10 01:08:15 ayrshire.u06.univ-nantes.prive kernel:
>> [34729.771260] Eventfd bug detected!
>> fourth.ad:Mar 10 02:54:41 ayrshire.u06.univ-nantes.prive kernel:
>> [41115.140873] Eventfd bug detected!
>> second.ab:Mar 10 02:41:55 ayrshire.u06.univ-nantes.prive kernel:
>> [40348.967192] Eventfd bug detected!
>> seventh.ab:Mar 10 07:52:29 ayrshire.u06.univ-nantes.prive kernel:
>> [58983.145646] Eventfd bug detected!
>> sixth.ab:Mar 10 05:19:54 ayrshire.u06.univ-nantes.prive kernel:
>> [49828.785558] Eventfd bug detected!
>> third.ae:Mar 10 02:54:07 ayrshire.u06.univ-nantes.prive kernel:
>> [41081.638633] Eventfd bug detected!
>>
>> grep -i wakeup *
>> seventh.ab:Mar 10 07:52:29 ayrshire.u06.univ-nantes.prive kernel:
>> [58983.154161]  [<ffffffffa02cbf96>] vhost_poll_wakeup+0x16/0x20
>> [vhost_net
>>
>>
>> Here is a trace, for the thirst event:
>>
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.101747]
>> irqfd_deactivate(irqfd=ffff88042e0b5e00,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.101873] irqfd_shutdown(work=ffff88042e0b5e80,irqfd=ffff88042e0b5e00,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.101928] remove wq at
>> irqfd_shutdown(work=ffff88042e0b5e80,irqfd=ffff88042e0b5e00)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.101990] kfree at
>> irqfd_shutdown(work=ffff88042e0b5e80,irqfd=ffff88042e0b5e00)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.102381]
>> kvm_irqfd_assign(irqfd=ffff88080f7aa818,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.103796] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.103833]
>> irqfd_deactivate(irqfd=ffff88080f7aa818,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.103904] irqfd_shutdown(work=ffff88080f7aa898,irqfd=ffff88080f7aa818,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.103958] remove wq at
>> irqfd_shutdown(work=ffff88080f7aa898,irqfd=ffff88080f7aa818)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.104023] kfree at
>> irqfd_shutdown(work=ffff88080f7aa898,irqfd=ffff88080f7aa818)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.104311]
>> kvm_irqfd_assign(irqfd=ffff88081a190b78,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.104511] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.104549]
>> irqfd_deactivate(irqfd=ffff88081a190b78,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.104614] irqfd_shutdown(work=ffff88081a190bf8,irqfd=ffff88081a190b78,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.104667] remove wq at
>> irqfd_shutdown(work=ffff88081a190bf8,irqfd=ffff88081a190b78)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.104715] kfree at
>> irqfd_shutdown(work=ffff88081a190bf8,irqfd=ffff88081a190b78)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.104911]
>> kvm_irqfd_assign(irqfd=ffff880853b8caa0,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.105868] Eventfd bug detected!
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.105901] irqfd_inject(work=ffff88042e0b5e60,irqfd=ffff88042e0b5e00,kvm=6b6b6b6b6b6b6b6b,gsi=1802201963)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.105951] sending NMI to all CPUs:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.105961] NMI backtrace for cpu 0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.105986] CPU 0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.105992] Modules linked in: btrfs zlib_deflate crc32c
>> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
>> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
>> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
>> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
>> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
>> xt_tcpudp xt_state iptable_filter ip_tables x_tables
>> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
>> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
>> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
>> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
>> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
>> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
>> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
>> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
>> ehci_hcd [last unloaded: scsi_wait_sca
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.106557]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.106581] Pid: 10, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.106644] RIP: 0010:[<ffffffff8105fa4b>]  [<ffffffff8105fa4b>]
>> default_send_IPI_mask_sequence_phys+0xbb/0xe0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.106706] RSP: 0018:ffff88045fcb1d50  EFLAGS: 00000046
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.106735] RAX: ffff88087fc00000 RBX: 0000000000000002 RCX:
>> 0000000000000008
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.106767] RDX: 0000000000000001 RSI: 0000000000000020 RDI:
>> 0000000000000020
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.106799] RBP: ffff88045fcb1d90 R08: ffffffff8159faf0 R09:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.106831] R10: 0000000000000000 R11: 0000000000000006 R12:
>> 000000000000c620
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.106863] R13: ffffffff8159faf0 R14: 0000000000000400 R15:
>> 0000000000000286
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.106896] FS:  00007f66f7754720(0000) GS:ffff88007f800000(0000)
>> knlGS:0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.106944] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.106973] CR2: 0000000000e64048 CR3: 000000045ea45000 CR4:
>> 00000000000006f0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.107005] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.107037] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
>> 0000000000000400
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.107070] Process kworker/0:1 (pid: 10, threadinfo
>> ffff88045fcb0000, task ffff88045fcaae70)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.107117] Stack:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.107138]  ffffffff00000000 0000000000000000 ffff88045fcb1d70
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  6b6b6b6b6b6b6b6b ffff88007f814e00 ffffffff81008ba0
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  ffff88045fcb1da0 ffffffff81062c12 ffff88045fcb1dc0
>> ffffffff8105fb3c
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81008ba0>] ? irqfd_inject+0x0/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81062c12>] physflat_send_IPI_all+0x12/0x20
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff8105fb3c>]
>> arch_trigger_all_cpu_backtrace+0x3c/0x70
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81008c2f>] irqfd_inject+0x8f/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810a971b>] process_one_work+0x11b/0x450
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810a9e97>] worker_thread+0x157/0x410
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81078519>] ? __wake_up_common+0x59/0x90
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810a9d40>] ? worker_thread+0x0/0x410
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810ad8f6>] kthread+0x96/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81041c64>] kernel_thread_helper+0x4/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810ad860>] ? kthread+0x0/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81041c60>] ? kernel_thread_helper+0x0/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011] Code: 83 fb 02 44 89 f0 0f 45 c3 89 04 25 00 c3 5f ff
>> eb 9e 4c 89 ff 57 9d 66 66 90 66 90 48 83 c4 18 5b 41 5c 41 5d 41 5e
>> 41 5f c9 c3<48>  8b 05 4e fb 53 00 48 89 55 c8 89 4d c0 ff 90 58 01
>> 00 00 48
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81008ba0>] ? irqfd_inject+0x0/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81062c12>] physflat_send_IPI_all+0x12/0x20
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff8105fb3c>]
>> arch_trigger_all_cpu_backtrace+0x3c/0x70
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81008c2f>] irqfd_inject+0x8f/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810a971b>] process_one_work+0x11b/0x450
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810a9e97>] worker_thread+0x157/0x410
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81078519>] ? __wake_up_common+0x59/0x90
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810a9d40>] ? worker_thread+0x0/0x410
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810ad8f6>] kthread+0x96/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81041c64>] kernel_thread_helper+0x4/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810ad860>] ? kthread+0x0/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81041c60>] ? kernel_thread_helper+0x0/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011] Pid: 10, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]<NMI>   [<ffffffff8104a786>] ? show_regs+0x26/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff813be5f0>] nmi+0x20/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff8105fa4b>] ?
>> default_send_IPI_mask_sequence_phys+0xbb/0xe0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]<<EOE>>   [<ffffffff81008ba0>] ? irqfd_inject+0x0/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81062c12>] physflat_send_IPI_all+0x12/0x20
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff8105fb3c>]
>> arch_trigger_all_cpu_backtrace+0x3c/0x70
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81008c2f>] irqfd_inject+0x8f/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810a971b>] process_one_work+0x11b/0x450
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810a9e97>] worker_thread+0x157/0x410
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81078519>] ? __wake_up_common+0x59/0x90
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810a9d40>] ? worker_thread+0x0/0x410
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810ad8f6>] kthread+0x96/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81041c64>] kernel_thread_helper+0x4/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff810ad860>] ? kthread+0x0/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108011]  [<ffffffff81041c60>] ? kernel_thread_helper+0x0/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110243] NMI backtrace for cpu 3
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.110272] CPU 3
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110280] Modules linked in: btrfs zlib_deflate crc32c
>> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
>> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
>> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
>> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
>> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
>> xt_tcpudp xt_state iptable_filter ip_tables x_tables
>> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
>> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
>> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
>> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
>> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
>> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
>> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
>> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
>> ehci_hcd [last unloaded: scsi_wait_sca
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.110882]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110906] Pid: 0, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110970] RIP: 0010:[<ffffffff81066716>]  [<ffffffff81066716>]
>> native_safe_halt+0x6/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111030] RSP: 0018:ffff88045fcd3ea8  EFLAGS: 00000246
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111059] RAX: 0000000000000000 RBX: 0000000000000003 RCX:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111091] RDX: 0000000000000000 RSI: ffff88045fcd3ee4 RDI:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111123] RBP: ffff88045fcd3ea8 R08: 0000000000000000 R09:
>> 0000000000000001
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111155] R10: 0000000000000000 R11: 0000000000000001 R12:
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111186] R13: 0000000000000003 R14: 0000000000000000 R15:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111220] FS:  00007fb1eafc6740(0000) GS:ffff88087fc40000(0000)
>> knlGS:0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111268] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111297] CR2: 00007ff12a981de0 CR3: 000000045569f000 CR4:
>> 00000000000006e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111329] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111362] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
>> 0000000000000400
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111395] Process kworker/0:1 (pid: 0, threadinfo
>> ffff88045fcd2000, task ffff88045fcca820)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.111442] Stack:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111463]  ffff88045fcd3ec8 ffffffff8104a016 ffff88045fcd3ee4
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111515]  ffff88045fcd3ef8 ffffffff8104a168 ffff88045fcd3ee8
>> 00000000810b3255
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111566]  ffff88045fcd2010 ffffffff8159faf0 ffff88045fcd3f28
>> ffffffff8104003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111618] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111648]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111680]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111712]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111745]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111774] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
>> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
>> 89 e5 fb f4<c9>  c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 f4 c9 c3 66
>> 0f 1f 84
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111982] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112007]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112038]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112069]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112099]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112131] Pid: 0, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112176] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112198]<NMI>   [<ffffffff8104a786>] ? show_regs+0x26/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112238]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112272]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112303]  [<ffffffff813be5f0>] nmi+0x20/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112332]  [<ffffffff81066716>] ? native_safe_halt+0x6/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112361]<<EOE>>   [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112399]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112430]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112460]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112024] NMI backtrace for cpu 2
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112024] CPU 2
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112024] Modules linked in: btrfs zlib_deflate crc32c
>> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
>> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
>> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
>> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
>> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
>> xt_tcpudp xt_state iptable_filter ip_tables x_tables
>> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
>> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
>> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
>> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
>> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
>> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
>> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
>> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
>> ehci_hcd [last unloaded: scsi_wait_sca
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112616]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] Pid: 0, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] RIP: 0010:[<ffffffff81066716>]  [<ffffffff81066716>]
>> native_safe_halt+0x6/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] RSP: 0018:ffff88045fcc5ea8  EFLAGS: 00000246
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] RAX: 0000000000000000 RBX: 0000000000000002 RCX:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] RDX: 0000000000000000 RSI: ffff88045fcc5ee4 RDI:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] RBP: ffff88045fcc5ea8 R08: 0000000000000000 R09:
>> 0000000000000001
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] R10: 0000000000000000 R11: 0000000000000000 R12:
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] R13: 0000000000000002 R14: 0000000000000000 R15:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] FS:  00007f66f7754720(0000) GS:ffff88007f840000(0000)
>> knlGS:0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] CR2: 00007f241ad1f0b8 CR3: 000000045ea45000 CR4:
>> 00000000000006f0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
>> 0000000000000400
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] Process kworker/0:1 (pid: 0, threadinfo
>> ffff88045fcc4000, task ffff88045fcb87e0)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112616] Stack:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  ffff88045fcc5ec8 ffffffff8104a016 ffff88045fcc5ee4
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  ffff88045fcc5ef8 ffffffff8104a168 ffff88045fcc5ee8
>> 00000000810b3255
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  ffff88045fcc4010 ffffffff8159faf0 ffff88045fcc5f28
>> ffffffff8104003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
>> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
>> 89 e5 fb f4<c9>  c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 f4 c9 c3 66
>> 0f 1f 84
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] Pid: 0, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]<NMI>   [<ffffffff8104a786>] ? show_regs+0x26/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff813be5f0>] nmi+0x20/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff81066716>] ? native_safe_halt+0x6/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]<<EOE>>   [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112616]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] NMI backtrace for cpu 1
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112285] CPU 1
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] Modules linked in: btrfs zlib_deflate crc32c
>> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
>> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
>> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
>> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
>> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
>> xt_tcpudp xt_state iptable_filter ip_tables x_tables
>> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
>> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
>> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
>> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
>> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
>> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
>> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
>> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
>> ehci_hcd [last unloaded: scsi_wait_sca
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112285]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] Pid: 0, comm: kworker/0:0 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] RIP: 0010:[<ffffffff81066716>]  [<ffffffff81066716>]
>> native_safe_halt+0x6/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] RSP: 0018:ffff88045fcb3ea8  EFLAGS: 00000246
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] RAX: 0000000000000000 RBX: 0000000000000001 RCX:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] RDX: 0000000000000000 RSI: ffff88045fcb3ee4 RDI:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] RBP: ffff88045fcb3ea8 R08: 0000000000000000 R09:
>> ffff88087fc0e408
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] R10: 000028ce70db0d2f R11: 0000000000000001 R12:
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] R13: 0000000000000001 R14: 0000000000000000 R15:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] FS:  00007fb8e1893710(0000) GS:ffff88087fc00000(0000)
>> knlGS:0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] CR2: 00007f241aca71a0 CR3: 000000045ed50000 CR4:
>> 00000000000006e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
>> 0000000000000400
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] Process kworker/0:0 (pid: 0, threadinfo
>> ffff88045fcb2000, task ffff88045fcaa7a0)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112285] Stack:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]  ffff88045fcb3ec8 ffffffff8104a016 ffff88045fcb3ee4
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]  ffff88045fcb3ef8 ffffffff8104a168 ffff88045fcb3ee8
>> 00000000810b3255
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]  ffff88045fcb2010 ffffffff8159faf0 ffff88045fcb3f28
>> ffffffff8104003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
>> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
>> 89 e5 fb f4<c9>  c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 f4 c9 c3 66
>> 0f 1f 84
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]<NMI>   [<ffffffff8104a786>] ? show_regs+0x26/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]  [<ffffffff813be5f0>] nmi+0x20/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]<<EOE>>   [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112285]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110896] Modules linked in: btrfs zlib_deflate crc32c
>> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
>> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
>> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
>> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
>> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
>> xt_tcpudp xt_state iptable_filter ip_tables x_tables
>> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
>> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
>> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
>> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
>> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
>> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
>> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
>> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
>> ehci_hcd [last unloaded: scsi_wait_sca
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110896] RAX: 0000000000000000 RBX: 0000000000000005 RCX:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110896] RDX: 0000000000000000 RSI: ffff88045fd11ee4 RDI:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110896]  ffff88045fd11ef8 ffffffff8104a168 ffff88045fd11ee8
>> 00000000810b3255
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110896]  ffff88045fd10010 ffffffff8159faf0 ffff88045fd11f28
>> ffffffff8104003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110896] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110896]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110896]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110896]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110896]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.110896] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
>> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
>> 89 e5 fb f4<c9>  c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 f4 c9 c3 66
>> 0f 1f 84
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.119695] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.119695]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.119695]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.119695]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.119985]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.119985] Pid: 0, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.119985] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.119985]<NMI>   [<ffffffff8104a786>] ? show_regs+0x26/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120119]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120164]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018] CR2: 00007f241ad1f0b8 CR3: 000000045ed50000 CR4:
>> 00000000000006e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
>> 0000000000000400
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018] Process kworker/0:1 (pid: 0, threadinfo
>> ffff88045fd00000, task ffff88045fcd8860)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112018] Stack:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018]  ffff88045fd01ec8 ffffffff8104a016 ffff88045fd01ee4
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018]  ffff88045fd01ef8 ffffffff8104a168 ffff88045fd01ee8
>> 00000000810b3255
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018]  ffff88045fd00010 ffffffff8159faf0 ffff88045fd01f28
>> ffffffff8104003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018]  [<ffffffff813be5f0>] nmi+0x20/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.112018]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.123585] NMI backtrace for cpu 7
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.124502] RAX: 0000000000000000 RBX: 0000000000000007 RCX:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.125007] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.125206] Stack:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015] Modules linked in: btrfs zlib_deflate crc32c
>> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
>> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
>> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
>> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
>> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
>> xt_tcpudp xt_state iptable_filter ip_tables x_tables
>> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
>> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
>> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
>> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
>> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
>> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
>> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
>> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
>> ehci_hcd [last unloaded: scsi_wait_sca
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.108015]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015] Pid: 0, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015] RIP: 0010:[<ffffffff81066716>]  [<ffffffff81066716>]
>> native_safe_halt+0x6/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015] RSP: 0018:ffff88045fd23ea8  EFLAGS: 00000246
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015] RAX: 0000000000000000 RBX: 0000000000000006 RCX:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015] RDX: 0000000000000000 RSI: ffff88045fd23ee4 RDI:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015] RBP: ffff88045fd23ea8 R08: 0000000000000000 R09:
>> ffff88007f8ce408
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015] R10: 0000000000000000 R11: 0000000000000001 R12:
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.108015] Stack:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015]  ffff88045fd23ec8 ffffffff8104a016 ffff88045fd23ee4
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015]  [<ffffffff813be5f0>] nmi+0x20/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108015]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] Modules linked in: btrfs zlib_deflate crc32c
>> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
>> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
>> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
>> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
>> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
>> xt_tcpudp xt_state iptable_filter ip_tables x_tables
>> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
>> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
>> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
>> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
>> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
>> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
>> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
>> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
>> ehci_hcd [last unloaded: scsi_wait_sca
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] R10: 000028ce766a74a3 R11: 0000000000000001 R12:
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] R13: 0000000000000009 R14: 0000000000000000 R15:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] FS:  00007fa0cb316710(0000) GS:ffff88087fd00000(0000)
>> knlGS:0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] CR2: 0000000000e64048 CR3: 000000045ea45000 CR4:
>> 00000000000006e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
>> 0000000000000400
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] Process kworker/0:1 (pid: 0, threadinfo
>> ffff88045fd6e000, task ffff88045fd669a0)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.126621] Stack:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  ffff88045fd6fec8 ffffffff8104a016 ffff88045fd6fee4
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  ffff88045fd6fef8 ffffffff8104a168 ffff88045fd6fee8
>> 00000000810b3255
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  ffff88045fd6e010 ffffffff8159faf0 ffff88045fd6ff28
>> ffffffff8104003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
>> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
>> 89 e5 fb f4<c9>  c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 f4 c9 c3 66
>> 0f 1f 84
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] Pid: 0, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]<NMI>   [<ffffffff8104a786>] ? show_regs+0x26/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff813be5f0>] nmi+0x20/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff81066716>] ? native_safe_halt+0x6/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]<<EOE>>   [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.126621]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] NMI backtrace for cpu 11
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] CPU 11
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] Modules linked in: btrfs zlib_deflate crc32c
>> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
>> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
>> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
>> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
>> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
>> xt_tcpudp xt_state iptable_filter ip_tables x_tables
>> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
>> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
>> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
>> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
>> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
>> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
>> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
>> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
>> ehci_hcd [last unloaded: scsi_wait_sca
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.111333]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] Pid: 0, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] RIP: 0010:[<ffffffff81066716>]  [<ffffffff81066716>]
>> native_safe_halt+0x6/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] RSP: 0018:ffff88045fd8fea8  EFLAGS: 00000246
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] RAX: 0000000000000000 RBX: 000000000000000b RCX:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] RDX: 0000000000000000 RSI: ffff88045fd8fee4 RDI:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] RBP: ffff88045fd8fea8 R08: 0000000000000000 R09:
>> ffff88087fd4e408
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] R10: 000028ce71c3578e R11: 0000000000000001 R12:
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] R13: 000000000000000b R14: 0000000000000000 R15:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] FS:  00007fa0ce156740(0000) GS:ffff88087fd40000(0000)
>> knlGS:0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] CR2: 00007f2421c3eae0 CR3: 000000045ea45000 CR4:
>> 00000000000006e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
>> 0000000000000400
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] Process kworker/0:1 (pid: 0, threadinfo
>> ffff88045fd8e000, task ffff88045fd86a20)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.111333] Stack:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  ffff88045fd8fec8 ffffffff8104a016 ffff88045fd8fee4
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  ffff88045fd8fef8 ffffffff8104a168 ffff88045fd8fee8
>> 00000000810b3255
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  ffff88045fd8e010 ffffffff8159faf0 ffff88045fd8ff28
>> ffffffff8104003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
>> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
>> 89 e5 fb f4<c9>  c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 f4 c9 c3 66
>> 0f 1f 84
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] Pid: 0, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]<NMI>   [<ffffffff8104a786>] ? show_regs+0x26/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff813be5f0>] nmi+0x20/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff81066716>] ? native_safe_halt+0x6/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]<<EOE>>   [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.111333]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] NMI backtrace for cpu 8
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.108010] CPU 8
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] Modules linked in: btrfs zlib_deflate crc32c
>> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
>> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
>> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
>> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
>> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
>> xt_tcpudp xt_state iptable_filter ip_tables x_tables
>> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
>> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
>> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
>> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
>> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
>> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
>> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
>> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
>> ehci_hcd [last unloaded: scsi_wait_sca
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.108010]
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] Pid: 0, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] RIP: 0010:[<ffffffff81066716>]  [<ffffffff81066716>]
>> native_safe_halt+0x6/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] RSP: 0018:ffff88045fd63ea8  EFLAGS: 00000246
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] RAX: 0000000000000000 RBX: 0000000000000008 RCX:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] RDX: 0000000000000000 RSI: ffff88045fd63ee4 RDI:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] RBP: ffff88045fd63ea8 R08: 0000000000000000 R09:
>> ffff88007f90e408
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] R10: 0000000000000000 R11: 0000000000000001 R12:
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] R13: 0000000000000008 R14: 0000000000000000 R15:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] FS:  00007fb8e0891710(0000) GS:ffff88007f900000(0000)
>> knlGS:0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] CR2: 0000000000e63f28 CR3: 000000045ed50000 CR4:
>> 00000000000006e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
>> 0000000000000400
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] Process kworker/0:1 (pid: 0, threadinfo
>> ffff88045fd62000, task ffff88045fd34960)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.108010] Stack:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010]  ffff88045fd63ec8 ffffffff8104a016 ffff88045fd63ee4
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010]  ffff88045fd63ef8 ffffffff8104a168 ffff88045fd63ee8
>> 00000000810b3255
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010]  ffff88045fd62010 ffffffff8159faf0 ffff88045fd63f28
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136088] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136098]
>> irqfd_deactivate(irqfd=ffff880853b8caa0,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
>> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
>> 89 e5 fb f4<c9>  c3 0f
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136661] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136665]
>> irqfd_deactivate(irqfd=ffff880810a21e00,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136702] irqfd_shutdown(work=ffff880810a21e80,irqfd=ffff880810a21e00,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136709] remove wq at
>> irqfd_shutdown(work=ffff880810a21e80,irqfd=ffff880810a21e00)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136715] kfree at
>> irqfd_shutdown(work=ffff880810a21e80,irqfd=ffff880810a21e00)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] 1f 84 00 00 00
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136910]
>> kvm_irqfd_assign(irqfd=ffff880853b8caa0,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] 00 00 55 48 89 e5 f4 c9 c3 66 0f 1f 84
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.108010]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136975] Pid: 0, comm: kworker/0:1 Not tainted
>> 2.6.37.2-patchjp-110308-c+ #17
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136975] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136975]<NMI>   [<ffffffff8104a786>] ? show_regs+0x26/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136975]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136975]  [<ffffffff813be5f0>] nmi+0x20/0x30
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.136975]  [<ffffffff81066716>] ? native_safe_halt+0x6/0x10
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004] FS:  00007f2787814700(0000) GS:ffff88007f940000(0000)
>> knlGS:0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004] CR2: 0000000000e63f28 CR3: 000000045ea45000 CR4:
>> 00000000000006e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
>> 0000000000000000
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
>> 0000000000000400
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004] Process kworker/0:1 (pid: 0, threadinfo
>> ffff88045fd80000, task ffff88045fd769e0)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.120004] Stack:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004]  ffff88045fd81ec8 ffffffff8104a016 ffff88045fd81ee4
>> ffffffff8159faf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004]  ffff88045fd81ef8 ffffffff8104a168 ffff88045fd81ee8
>> 00000000810b3255
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004]  ffff88045fd80010 ffffffff8159faf0 ffff88045fd81f28
>> ffffffff8104003b
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004] Call Trace:
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004]  [<ffffffff8104a016>] default_idle+0x46/0xa0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.120004]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.148658] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.148687]
>> irqfd_deactivate(irqfd=ffff880853b8caa0,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.148759] irqfd_shutdown(work=ffff880853b8cb20,irqfd=ffff880853b8caa0,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.148814] remove wq at
>> irqfd_shutdown(work=ffff880853b8cb20,irqfd=ffff880853b8caa0)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.148862] kfree at
>> irqfd_shutdown(work=ffff880853b8cb20,irqfd=ffff880853b8caa0)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.149086]
>> kvm_irqfd_assign(irqfd=ffff88081a190b78,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.149379] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=48)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.149416]
>> irqfd_deactivate(irqfd=ffff88045efd3740,kvm=ffff8804542d0000,
>> gsi=48)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.149540] irqfd_shutdown(work=ffff88045efd37c0,irqfd=ffff88045efd3740,kvm=ffff8804542d0000,
>> gsi=48)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.149594] remove wq at
>> irqfd_shutdown(work=ffff88045efd37c0,irqfd=ffff88045efd3740)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.149643] kfree at
>> irqfd_shutdown(work=ffff88045efd37c0,irqfd=ffff88045efd3740)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.149922]
>> kvm_irqfd_assign(irqfd=ffff88080f7aa818,kvm=ffff8804542d0000,
>> gsi=48)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.171869] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.171907]
>> irqfd_deactivate(irqfd=ffff88081a190b78,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.171989] irqfd_shutdown(work=ffff88081a190bf8,irqfd=ffff88081a190b78,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.172111] remove wq at
>> irqfd_shutdown(work=ffff88081a190bf8,irqfd=ffff88081a190b78)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.172160] kfree at
>> irqfd_shutdown(work=ffff88081a190bf8,irqfd=ffff88081a190b78)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.172493]
>> kvm_irqfd_assign(irqfd=ffff88083b062308,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.172672] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.172710]
>> irqfd_deactivate(irqfd=ffff88083b062308,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.172782] irqfd_shutdown(work=ffff88083b062388,irqfd=ffff88083b062308,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.172836] remove wq at
>> irqfd_shutdown(work=ffff88083b062388,irqfd=ffff88083b062308)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.172884] kfree at
>> irqfd_shutdown(work=ffff88083b062388,irqfd=ffff88083b062308)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.173074]
>> kvm_irqfd_assign(irqfd=ffff88081a190230,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.175303] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.175339]
>> irqfd_deactivate(irqfd=ffff88081a190230,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.175466] irqfd_shutdown(work=ffff88081a1902b0,irqfd=ffff88081a190230,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.175521] remove wq at
>> irqfd_shutdown(work=ffff88081a1902b0,irqfd=ffff88081a190230)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.175569] kfree at
>> irqfd_shutdown(work=ffff88081a1902b0,irqfd=ffff88081a190230)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.175769]
>> kvm_irqfd_assign(irqfd=ffff88045eabb668,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.176002] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.176058]
>> irqfd_deactivate(irqfd=ffff88045eabb668,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.176122] irqfd_shutdown(work=ffff88045eabb6e8,irqfd=ffff88045eabb668,kvm=ffff8804542d0000,
>> gsi=24)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.176177] remove wq at
>> irqfd_shutdown(work=ffff88045eabb6e8,irqfd=ffff88045eabb668)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.176225] kfree at
>> irqfd_shutdown(work=ffff88045eabb6e8,irqfd=ffff88045eabb668)
>> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
>> [44867.176427]
>> kvm_irqfd_assign(irqfd=ffff88045ed96c50,kvm=ffff8804542d0000, gsi=24
>>
>>
>> You can find all the trace at the following adress:
>> http://filex.univ-nantes.fr/get?k=R94kna5sckVmdvCoKsn
>>
>> It's a tar.gz of seven file, from 100k to 200k each ;)
>>
>> Again, thanks a lot for the time you spent on this.
>>
>> Regards.
> Are you running a preemptible kernel?
> Does the following help at all?
>
> diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c
> index 2ca4535..cdf51c9 100644
> --- a/virt/kvm/eventfd.c
> +++ b/virt/kvm/eventfd.c
> @@ -90,7 +90,7 @@ irqfd_shutdown(struct work_struct *work)
>   	 * We know no new events will be scheduled at this point, so block
>   	 * until all previously outstanding events have completed
>   	 */
> -	flush_work(&irqfd->inject);
> +	flush_work_sync(&irqfd->inject);
>
>   	/*
>   	 * It is now safe to release the object's resources
>
Hi,

thanks for the response.

root@ayrshire:~# zcat /proc/config.gz | grep -i preempt
# CONFIG_PREEMPT_RCU is not set
CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_PREEMPT_NONE=y
# CONFIG_PREEMPT_VOLUNTARY is not set
# CONFIG_PREEMPT is not set

It does not seem to be a preemptible kernel.

I will test tour patch, and report the result.

Regards.

-- 
Jean-Philippe Menil - Pôle réseau Service IRTS
DSI Université de Nantes
jean-philippe.menil@univ-nantes.fr
Tel : 02.53.48.49.27 - Fax : 02.53.48.49.09


^ permalink raw reply

* Re: [GIT] Networking
From: J. Bruce Fields @ 2011-03-15 14:37 UTC (permalink / raw)
  To: Steven Rostedt
  Cc: david, Ben Hutchings, David Miller, torvalds, akpm, netdev,
	linux-kernel
In-Reply-To: <1300193560.9910.265.camel@gandalf.stny.rr.com>

On Tue, Mar 15, 2011 at 08:52:40AM -0400, Steven Rostedt wrote:
> But it wont, as the fix will still be brought in at a later time. It has
> nothing to do with being based off of the broken commit.
> 
>          A  +
>             +   merged in fix
>          B  + \
>             |  |
>             |  |
>             |  |
> Lots of     |  |
>   stuff     |  |
>             |  |
>             |  |
>             |  + - fix for bug
>             | /
>  Bug commit +
>             |
> 
> A bisect will still be testing lots of stuff without that fix. And if it
> goes into the branch with the fix, we just brought the kernel way back
> in time from point A. Then if it goes back to point B, then we zoom back
> to the future and bounce the kernel all over the place.
> 
> I see no gain for having a fixed based off of the bug that it fixes.

I suppose you'd test the intermediate ("bad") area by merging in "fix
for bug" instead of cherry-picking it.  In theory perhaps that would
give the bisect algorithm a little more information.  (Since it's seeing
the same "fix for bug" commit each time.)

> Pros of doing this:
> 
> 1) documents the point that things broke (can be done by commenting it
> in the change log too)
> 
> 2) probably good for back porting (but Con 3 may out weigh this)
> 
> Cons:
> 
> 1) Adds many more branches and merges for no real good reason
> 
> 2) Makes bisects even less linear than it already is
> 
> 3) May cause more conflicts at the merge point as the broken code may
> have changed.
> 
> 
> 
> Who will be doing the conflict resolutions? Linus? I doubt he would be
> happy with that, but he can speak for himself.

No real change there: you still won't want to send in a pull request
every time you fix a bug, so you'd pull a bunch together, merge them
(and maybe a test merge with upstream to make sure it's reasonable),
then send a pull request for the result.

I dunno, I have no strong opinions here, just curiosity.

--b.

^ permalink raw reply

* Re: Bug inkvm_set_irq
From: Michael S. Tsirkin @ 2011-03-15 14:32 UTC (permalink / raw)
  To: Jean-Philippe Menil; +Cc: netdev, kvm, virtualization
In-Reply-To: <4D788EF4.7040807@univ-nantes.fr>

On Thu, Mar 10, 2011 at 09:42:28AM +0100, Jean-Philippe Menil wrote:
> Le 09/03/2011 14:59, Michael S. Tsirkin a écrit :
> >On Wed, Mar 09, 2011 at 02:12:58PM +0100, Jean-Philippe Menil wrote:
> >>Le 09/03/2011 14:00, Michael S. Tsirkin a écrit :
> >>>On Wed, Mar 09, 2011 at 01:28:43PM +0100, Jean-Philippe Menil wrote:
> >>>>Le 08/03/2011 12:13, Michael S. Tsirkin a écrit :
> >>>>>On Fri, Mar 04, 2011 at 10:39:05AM +0100, Jean-Philippe Menil wrote:
> >>>>>>Yes, it's a 2.6.37.2 kernel.
> >>>>>OK, here's a debugging patch.
> >>>>>Please run with slab debugging as previously until you see
> >>>>>'eventfd bug detected!' in dmesg or until there is a crash.
> >>>>>It might be also useful to enable timestampts on printk with
> >>>>>  Symbol: PRINTK_TIME [=y]
> >>>>>   │ Type  : boolean
> >>>>>   │ Prompt: Show timing information on printks
> >>>>>
> >>>>>once you see the error, please upload the
> >>>>>full dmesg output somewhere to we can track what
> >>>>>goes on.
> >>>>>
> >>>>>Hopefully there won't be an oops this time which
> >>>>>should make it easier for you to test (no need to
> >>>>>reboot).
> >>>>>
> >>>>>
> >>>>>diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c
> >>>>>index c1f1e3c..3cb679b 100644
> >>>>>--- a/virt/kvm/eventfd.c
> >>>>>+++ b/virt/kvm/eventfd.c
> >>>>>@@ -32,6 +32,7 @@
> >>>>>  #include<linux/eventfd.h>
> >>>>>  #include<linux/kernel.h>
> >>>>>  #include<linux/slab.h>
> >>>>>+#include<linux/nmi.h>
> >>>>>
> >>>>>  #include "iodev.h"
> >>>>>
> >>>>>@@ -43,6 +44,8 @@
> >>>>>   * --------------------------------------------------------------------
> >>>>>   */
> >>>>>
> >>>>>+#define KVM_BAD_PTR ((void*)(long)(0x6b6b6b6b6b6b6b6bull))
> >>>>>+
> >>>>>  struct _irqfd {
> >>>>>  	struct kvm               *kvm;
> >>>>>  	struct eventfd_ctx       *eventfd;
> >>>>>@@ -61,6 +64,13 @@ irqfd_inject(struct work_struct *work)
> >>>>>  {
> >>>>>  	struct _irqfd *irqfd = container_of(work, struct _irqfd, inject);
> >>>>>  	struct kvm *kvm = irqfd->kvm;
> >>>>>+	if (kvm == KVM_BAD_PTR) {
> >>>>>+		printk(KERN_ERR "Eventfd bug detected!\n");
> >>>>>+		printk(KERN_ERR "%s(work=%p,irqfd=%p,kvm=%p,gsi=%d)\n", __func__,
> >>>>>+			work, irqfd, kvm, irqfd->gsi);
> >>>>>+		trigger_all_cpu_backtrace();
> >>>>>+		return;
> >>>>>+	}
> >>>>>
> >>>>>  	kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 1);
> >>>>>  	kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 0);
> >>>>>@@ -75,6 +85,8 @@ irqfd_shutdown(struct work_struct *work)
> >>>>>  	struct _irqfd *irqfd = container_of(work, struct _irqfd, shutdown);
> >>>>>  	u64 cnt;
> >>>>>
> >>>>>+	printk(KERN_ERR "%s(work=%p,irqfd=%p,kvm=%p, gsi=%d)\n", __func__,
> >>>>>+	       work, irqfd, irqfd->kvm, irqfd->gsi);
> >>>>>  	/*
> >>>>>  	 * Synchronize with the wait-queue and unhook ourselves to prevent
> >>>>>  	 * further events.
> >>>>>@@ -91,6 +103,8 @@ irqfd_shutdown(struct work_struct *work)
> >>>>>  	 * It is now safe to release the object's resources
> >>>>>  	 */
> >>>>>  	eventfd_ctx_put(irqfd->eventfd);
> >>>>>+	printk(KERN_ERR "kfree at %s(work=%p,irqfd=%p)\n", __func__,
> >>>>>+	       work, irqfd);
> >>>>>  	kfree(irqfd);
> >>>>>  }
> >>>>>
> >>>>>@@ -111,6 +125,8 @@ static void
> >>>>>  irqfd_deactivate(struct _irqfd *irqfd)
> >>>>>  {
> >>>>>  	BUG_ON(!irqfd_is_active(irqfd));
> >>>>>+	printk(KERN_ERR "%s(irqfd=%p,kvm=%p, gsi=%d)\n", __func__,
> >>>>>+	       irqfd, irqfd->kvm, irqfd->gsi);
> >>>>>
> >>>>>  	list_del_init(&irqfd->list);
> >>>>>
> >>>>>@@ -178,6 +194,8 @@ kvm_irqfd_assign(struct kvm *kvm, int fd, int gsi)
> >>>>>
> >>>>>  	irqfd->kvm = kvm;
> >>>>>  	irqfd->gsi = gsi;
> >>>>>+	printk(KERN_ERR "%s(irqfd=%p,kvm=%p, gsi=%d)\n", __func__,
> >>>>>+	       irqfd, kvm, gsi);
> >>>>>  	INIT_LIST_HEAD(&irqfd->list);
> >>>>>  	INIT_WORK(&irqfd->inject, irqfd_inject);
> >>>>>  	INIT_WORK(&irqfd->shutdown, irqfd_shutdown);
> >>>>>@@ -264,6 +282,8 @@ kvm_irqfd_deassign(struct kvm *kvm, int fd, int gsi)
> >>>>>  	struct _irqfd *irqfd, *tmp;
> >>>>>  	struct eventfd_ctx *eventfd;
> >>>>>
> >>>>>+	printk(KERN_ERR "%s(kvm=%p, gsi=%d)\n", __func__,
> >>>>>+	       kvm, gsi);
> >>>>>  	eventfd = eventfd_ctx_fdget(fd);
> >>>>>  	if (IS_ERR(eventfd))
> >>>>>  		return PTR_ERR(eventfd);
> >>>>>@@ -305,6 +325,7 @@ void
> >>>>>  kvm_irqfd_release(struct kvm *kvm)
> >>>>>  {
> >>>>>  	struct _irqfd *irqfd, *tmp;
> >>>>>+	printk(KERN_ERR "%s(kvm=%p)\n", __func__, kvm);
> >>>>>
> >>>>>  	spin_lock_irq(&kvm->irqfds.lock);
> >>>>>
> >>>>>--
> >>>>>To unsubscribe from this list: send the line "unsubscribe netdev" in
> >>>>>the body of a message to majordomo@vger.kernel.org
> >>>>>More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >>>>Hi,
> >>>>
> >>>>I boot the host with the patched kernel yesterday.
> >>>>No crach until now, but two "Eventfd bug detected!" in the log at
> >>>>"Mar  9 02:04:31" and "Mar  9 02:15:17"
> >>>>You can find part of the log at the following adress:
> >>>>http://filex.univ-nantes.fr/get?k=jL4Fe7yfSMN57toAH7V
> >>>>
> >>>>It a split file of the kern.log (1,4G), so if you need another part
> >>>>of the log, let me know.
> >>>>
> >>>>Thanks for all.
> >>>>
> >>>>Regards.
> >>>Downloading, it's big :)
> >>>What about some 1000 lines before and after Eventfd bug detected! line?
> >>>--
> >>>To unsubscribe from this list: send the line "unsubscribe kvm" in
> >>>the body of a message to majordomo@vger.kernel.org
> >>>More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >>Yes, sorry about that.
> >>I could have split my log into a smaller file.
> >>
> >>I was a little afraid of not transmit enough informations, and i was
> >>a bit wide.
> >>I hope you can find usefull trace anyway.
> >>
> >>Regards.
> >
> >OK, use after free.
> >
> >
> >Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.593681]
> >kvm_irqfd_assign(irqfd=ffff88045e8d6230,kvm=ffff88085151c000, gsi=26)
> >Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.605359]
> >kvm_irqfd_deassign(kvm=ffff88085151c000, gsi=26)
> >Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.605388]
> >irqfd_deactivate(irqfd=ffff88045e8d6230,kvm=ffff88085151c000, gsi=26)
> >Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.605461]
> >irqfd_shutdown(work=ffff88045e8d62b0,irqfd=ffff88045e8d6230,kvm=ffff88085151c000,
> >gsi=26)
> >Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.605509]
> >kfree at irqfd_shutdown(work=ffff88045e8d62b0,irqfd=ffff88045e8d6230)
> >Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.605588]
> >Eventfd bug detected!
> >Mar  9 02:15:17 ayrshire.u06.univ-nantes.prive kernel: [37461.605612]
> >irqfd_inject(work=ffff88045e8d6290,irqfd=ffff88045e8d6230,kvm=6b6b6b6b6b6b6b6b,gsi=1802201963)
> >
> >
> >and 1802201963 is also 6b6b6b6b.
> >
> >
> >I suspect that somehow, we get an event from eventfd even
> >though we did eventfd_ctx_remove_wait_queue.
> >Could you please try the following patch on top?
> >When you see Eventfd bug or Wakeup bug, paste some
> >last lines.
> >For the full log file - better compress with xz.
> >
> >
> >diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c
> >index 3cb679b..63aeba5 100644
> >--- a/virt/kvm/eventfd.c
> >+++ b/virt/kvm/eventfd.c
> >@@ -92,6 +92,8 @@ irqfd_shutdown(struct work_struct *work)
> >  	 * further events.
> >  	 */
> >  	eventfd_ctx_remove_wait_queue(irqfd->eventfd,&irqfd->wait,&cnt);
> >+	printk(KERN_ERR "remove wq at %s(work=%p,irqfd=%p)\n", __func__,
> >+	       work, irqfd);
> >
> >  	/*
> >  	 * We know no new events will be scheduled at this point, so block
> >@@ -142,6 +144,13 @@ irqfd_wakeup(wait_queue_t *wait, unsigned mode, int sync, void *key)
> >  	struct _irqfd *irqfd = container_of(wait, struct _irqfd, wait);
> >  	unsigned long flags = (unsigned long)key;
> >
> >+	if (irqfd->kvm == KVM_BAD_PTR) {
> >+		printk(KERN_ERR "Wakeup bug detected! flags 0x%lx\n", flags);
> >+		printk(KERN_ERR "%s(work=%p,irqfd=%p,kvm=%p,gsi=%d)\n", __func__,
> >+			&irqfd->inject, irqfd, irqfd->kvm, irqfd->gsi);
> >+		trigger_all_cpu_backtrace();
> >+		return 0;
> >+	}
> >  	if (flags&  POLLIN)
> >  		/* An event has been signaled, inject an interrupt */
> >  		schedule_work(&irqfd->inject);
> >@@ -153,6 +162,9 @@ irqfd_wakeup(wait_queue_t *wait, unsigned mode, int sync, void *key)
> >
> >  		spin_lock_irqsave(&kvm->irqfds.lock, flags);
> >
> >+		printk(KERN_ERR "%s(work=%p,irqfd=%p,kvm=%p,gsi=%d,active=%d)\n", __func__,
> >+			&irqfd->inject, irqfd, irqfd->kvm, irqfd->gsi,
> >+			irqfd_is_active(irqfd));
> >  		/*
> >  		 * We must check if someone deactivated the irqfd before
> >  		 * we could acquire the irqfds.lock since the item is
> >
> Hi,
> 
> I noted seven "Eventfd bug detected" events during the night, and
> only one Wakeup event:
> 
> fifth.ah:Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.105868] Eventfd bug detected!
> first.ad:Mar 10 01:08:15 ayrshire.u06.univ-nantes.prive kernel:
> [34729.771260] Eventfd bug detected!
> fourth.ad:Mar 10 02:54:41 ayrshire.u06.univ-nantes.prive kernel:
> [41115.140873] Eventfd bug detected!
> second.ab:Mar 10 02:41:55 ayrshire.u06.univ-nantes.prive kernel:
> [40348.967192] Eventfd bug detected!
> seventh.ab:Mar 10 07:52:29 ayrshire.u06.univ-nantes.prive kernel:
> [58983.145646] Eventfd bug detected!
> sixth.ab:Mar 10 05:19:54 ayrshire.u06.univ-nantes.prive kernel:
> [49828.785558] Eventfd bug detected!
> third.ae:Mar 10 02:54:07 ayrshire.u06.univ-nantes.prive kernel:
> [41081.638633] Eventfd bug detected!
> 
> grep -i wakeup *
> seventh.ab:Mar 10 07:52:29 ayrshire.u06.univ-nantes.prive kernel:
> [58983.154161]  [<ffffffffa02cbf96>] vhost_poll_wakeup+0x16/0x20
> [vhost_net
> 
> 
> Here is a trace, for the thirst event:
> 
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.101747]
> irqfd_deactivate(irqfd=ffff88042e0b5e00,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.101873] irqfd_shutdown(work=ffff88042e0b5e80,irqfd=ffff88042e0b5e00,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.101928] remove wq at
> irqfd_shutdown(work=ffff88042e0b5e80,irqfd=ffff88042e0b5e00)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.101990] kfree at
> irqfd_shutdown(work=ffff88042e0b5e80,irqfd=ffff88042e0b5e00)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.102381]
> kvm_irqfd_assign(irqfd=ffff88080f7aa818,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.103796] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.103833]
> irqfd_deactivate(irqfd=ffff88080f7aa818,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.103904] irqfd_shutdown(work=ffff88080f7aa898,irqfd=ffff88080f7aa818,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.103958] remove wq at
> irqfd_shutdown(work=ffff88080f7aa898,irqfd=ffff88080f7aa818)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.104023] kfree at
> irqfd_shutdown(work=ffff88080f7aa898,irqfd=ffff88080f7aa818)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.104311]
> kvm_irqfd_assign(irqfd=ffff88081a190b78,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.104511] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.104549]
> irqfd_deactivate(irqfd=ffff88081a190b78,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.104614] irqfd_shutdown(work=ffff88081a190bf8,irqfd=ffff88081a190b78,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.104667] remove wq at
> irqfd_shutdown(work=ffff88081a190bf8,irqfd=ffff88081a190b78)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.104715] kfree at
> irqfd_shutdown(work=ffff88081a190bf8,irqfd=ffff88081a190b78)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.104911]
> kvm_irqfd_assign(irqfd=ffff880853b8caa0,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.105868] Eventfd bug detected!
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.105901] irqfd_inject(work=ffff88042e0b5e60,irqfd=ffff88042e0b5e00,kvm=6b6b6b6b6b6b6b6b,gsi=1802201963)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.105951] sending NMI to all CPUs:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.105961] NMI backtrace for cpu 0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.105986] CPU 0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.105992] Modules linked in: btrfs zlib_deflate crc32c
> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
> xt_tcpudp xt_state iptable_filter ip_tables x_tables
> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
> ehci_hcd [last unloaded: scsi_wait_sca
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.106557]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.106581] Pid: 10, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.106644] RIP: 0010:[<ffffffff8105fa4b>]  [<ffffffff8105fa4b>]
> default_send_IPI_mask_sequence_phys+0xbb/0xe0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.106706] RSP: 0018:ffff88045fcb1d50  EFLAGS: 00000046
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.106735] RAX: ffff88087fc00000 RBX: 0000000000000002 RCX:
> 0000000000000008
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.106767] RDX: 0000000000000001 RSI: 0000000000000020 RDI:
> 0000000000000020
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.106799] RBP: ffff88045fcb1d90 R08: ffffffff8159faf0 R09:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.106831] R10: 0000000000000000 R11: 0000000000000006 R12:
> 000000000000c620
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.106863] R13: ffffffff8159faf0 R14: 0000000000000400 R15:
> 0000000000000286
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.106896] FS:  00007f66f7754720(0000) GS:ffff88007f800000(0000)
> knlGS:0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.106944] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.106973] CR2: 0000000000e64048 CR3: 000000045ea45000 CR4:
> 00000000000006f0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.107005] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.107037] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
> 0000000000000400
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.107070] Process kworker/0:1 (pid: 10, threadinfo
> ffff88045fcb0000, task ffff88045fcaae70)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.107117] Stack:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.107138]  ffffffff00000000 0000000000000000 ffff88045fcb1d70
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  6b6b6b6b6b6b6b6b ffff88007f814e00 ffffffff81008ba0
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  ffff88045fcb1da0 ffffffff81062c12 ffff88045fcb1dc0
> ffffffff8105fb3c
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81008ba0>] ? irqfd_inject+0x0/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81062c12>] physflat_send_IPI_all+0x12/0x20
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff8105fb3c>]
> arch_trigger_all_cpu_backtrace+0x3c/0x70
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81008c2f>] irqfd_inject+0x8f/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810a971b>] process_one_work+0x11b/0x450
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810a9e97>] worker_thread+0x157/0x410
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81078519>] ? __wake_up_common+0x59/0x90
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810a9d40>] ? worker_thread+0x0/0x410
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810ad8f6>] kthread+0x96/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81041c64>] kernel_thread_helper+0x4/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810ad860>] ? kthread+0x0/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81041c60>] ? kernel_thread_helper+0x0/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011] Code: 83 fb 02 44 89 f0 0f 45 c3 89 04 25 00 c3 5f ff
> eb 9e 4c 89 ff 57 9d 66 66 90 66 90 48 83 c4 18 5b 41 5c 41 5d 41 5e
> 41 5f c9 c3 <48> 8b 05 4e fb 53 00 48 89 55 c8 89 4d c0 ff 90 58 01
> 00 00 48
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81008ba0>] ? irqfd_inject+0x0/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81062c12>] physflat_send_IPI_all+0x12/0x20
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff8105fb3c>]
> arch_trigger_all_cpu_backtrace+0x3c/0x70
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81008c2f>] irqfd_inject+0x8f/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810a971b>] process_one_work+0x11b/0x450
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810a9e97>] worker_thread+0x157/0x410
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81078519>] ? __wake_up_common+0x59/0x90
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810a9d40>] ? worker_thread+0x0/0x410
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810ad8f6>] kthread+0x96/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81041c64>] kernel_thread_helper+0x4/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810ad860>] ? kthread+0x0/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81041c60>] ? kernel_thread_helper+0x0/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011] Pid: 10, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011] <NMI>  [<ffffffff8104a786>] ? show_regs+0x26/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff813be5f0>] nmi+0x20/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff8105fa4b>] ?
> default_send_IPI_mask_sequence_phys+0xbb/0xe0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011] <<EOE>>  [<ffffffff81008ba0>] ? irqfd_inject+0x0/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81062c12>] physflat_send_IPI_all+0x12/0x20
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff8105fb3c>]
> arch_trigger_all_cpu_backtrace+0x3c/0x70
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81008c2f>] irqfd_inject+0x8f/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810a971b>] process_one_work+0x11b/0x450
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810a9e97>] worker_thread+0x157/0x410
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81078519>] ? __wake_up_common+0x59/0x90
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810a9d40>] ? worker_thread+0x0/0x410
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810ad8f6>] kthread+0x96/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81041c64>] kernel_thread_helper+0x4/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff810ad860>] ? kthread+0x0/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108011]  [<ffffffff81041c60>] ? kernel_thread_helper+0x0/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110243] NMI backtrace for cpu 3
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.110272] CPU 3
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110280] Modules linked in: btrfs zlib_deflate crc32c
> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
> xt_tcpudp xt_state iptable_filter ip_tables x_tables
> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
> ehci_hcd [last unloaded: scsi_wait_sca
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.110882]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110906] Pid: 0, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110970] RIP: 0010:[<ffffffff81066716>]  [<ffffffff81066716>]
> native_safe_halt+0x6/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111030] RSP: 0018:ffff88045fcd3ea8  EFLAGS: 00000246
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111059] RAX: 0000000000000000 RBX: 0000000000000003 RCX:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111091] RDX: 0000000000000000 RSI: ffff88045fcd3ee4 RDI:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111123] RBP: ffff88045fcd3ea8 R08: 0000000000000000 R09:
> 0000000000000001
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111155] R10: 0000000000000000 R11: 0000000000000001 R12:
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111186] R13: 0000000000000003 R14: 0000000000000000 R15:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111220] FS:  00007fb1eafc6740(0000) GS:ffff88087fc40000(0000)
> knlGS:0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111268] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111297] CR2: 00007ff12a981de0 CR3: 000000045569f000 CR4:
> 00000000000006e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111329] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111362] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
> 0000000000000400
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111395] Process kworker/0:1 (pid: 0, threadinfo
> ffff88045fcd2000, task ffff88045fcca820)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.111442] Stack:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111463]  ffff88045fcd3ec8 ffffffff8104a016 ffff88045fcd3ee4
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111515]  ffff88045fcd3ef8 ffffffff8104a168 ffff88045fcd3ee8
> 00000000810b3255
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111566]  ffff88045fcd2010 ffffffff8159faf0 ffff88045fcd3f28
> ffffffff8104003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111618] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111648]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111680]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111712]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111745]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111774] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
> 89 e5 fb f4 <c9> c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 f4 c9 c3 66
> 0f 1f 84
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111982] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112007]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112038]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112069]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112099]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112131] Pid: 0, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112176] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112198] <NMI>  [<ffffffff8104a786>] ? show_regs+0x26/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112238]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112272]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112303]  [<ffffffff813be5f0>] nmi+0x20/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112332]  [<ffffffff81066716>] ? native_safe_halt+0x6/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112361] <<EOE>>  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112399]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112430]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112460]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112024] NMI backtrace for cpu 2
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112024] CPU 2
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112024] Modules linked in: btrfs zlib_deflate crc32c
> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
> xt_tcpudp xt_state iptable_filter ip_tables x_tables
> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
> ehci_hcd [last unloaded: scsi_wait_sca
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112616]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] Pid: 0, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] RIP: 0010:[<ffffffff81066716>]  [<ffffffff81066716>]
> native_safe_halt+0x6/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] RSP: 0018:ffff88045fcc5ea8  EFLAGS: 00000246
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] RAX: 0000000000000000 RBX: 0000000000000002 RCX:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] RDX: 0000000000000000 RSI: ffff88045fcc5ee4 RDI:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] RBP: ffff88045fcc5ea8 R08: 0000000000000000 R09:
> 0000000000000001
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] R10: 0000000000000000 R11: 0000000000000000 R12:
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] R13: 0000000000000002 R14: 0000000000000000 R15:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] FS:  00007f66f7754720(0000) GS:ffff88007f840000(0000)
> knlGS:0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] CR2: 00007f241ad1f0b8 CR3: 000000045ea45000 CR4:
> 00000000000006f0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
> 0000000000000400
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] Process kworker/0:1 (pid: 0, threadinfo
> ffff88045fcc4000, task ffff88045fcb87e0)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112616] Stack:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  ffff88045fcc5ec8 ffffffff8104a016 ffff88045fcc5ee4
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  ffff88045fcc5ef8 ffffffff8104a168 ffff88045fcc5ee8
> 00000000810b3255
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  ffff88045fcc4010 ffffffff8159faf0 ffff88045fcc5f28
> ffffffff8104003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
> 89 e5 fb f4 <c9> c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 f4 c9 c3 66
> 0f 1f 84
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] Pid: 0, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] <NMI>  [<ffffffff8104a786>] ? show_regs+0x26/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff813be5f0>] nmi+0x20/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff81066716>] ? native_safe_halt+0x6/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616] <<EOE>>  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112616]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] NMI backtrace for cpu 1
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112285] CPU 1
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] Modules linked in: btrfs zlib_deflate crc32c
> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
> xt_tcpudp xt_state iptable_filter ip_tables x_tables
> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
> ehci_hcd [last unloaded: scsi_wait_sca
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112285]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] Pid: 0, comm: kworker/0:0 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] RIP: 0010:[<ffffffff81066716>]  [<ffffffff81066716>]
> native_safe_halt+0x6/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] RSP: 0018:ffff88045fcb3ea8  EFLAGS: 00000246
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] RAX: 0000000000000000 RBX: 0000000000000001 RCX:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] RDX: 0000000000000000 RSI: ffff88045fcb3ee4 RDI:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] RBP: ffff88045fcb3ea8 R08: 0000000000000000 R09:
> ffff88087fc0e408
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] R10: 000028ce70db0d2f R11: 0000000000000001 R12:
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] R13: 0000000000000001 R14: 0000000000000000 R15:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] FS:  00007fb8e1893710(0000) GS:ffff88087fc00000(0000)
> knlGS:0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] CR2: 00007f241aca71a0 CR3: 000000045ed50000 CR4:
> 00000000000006e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
> 0000000000000400
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] Process kworker/0:0 (pid: 0, threadinfo
> ffff88045fcb2000, task ffff88045fcaa7a0)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112285] Stack:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285]  ffff88045fcb3ec8 ffffffff8104a016 ffff88045fcb3ee4
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285]  ffff88045fcb3ef8 ffffffff8104a168 ffff88045fcb3ee8
> 00000000810b3255
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285]  ffff88045fcb2010 ffffffff8159faf0 ffff88045fcb3f28
> ffffffff8104003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
> 89 e5 fb f4 <c9> c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 f4 c9 c3 66
> 0f 1f 84
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] <NMI>  [<ffffffff8104a786>] ? show_regs+0x26/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285]  [<ffffffff813be5f0>] nmi+0x20/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285] <<EOE>>  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112285]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110896] Modules linked in: btrfs zlib_deflate crc32c
> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
> xt_tcpudp xt_state iptable_filter ip_tables x_tables
> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
> ehci_hcd [last unloaded: scsi_wait_sca
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110896] RAX: 0000000000000000 RBX: 0000000000000005 RCX:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110896] RDX: 0000000000000000 RSI: ffff88045fd11ee4 RDI:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110896]  ffff88045fd11ef8 ffffffff8104a168 ffff88045fd11ee8
> 00000000810b3255
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110896]  ffff88045fd10010 ffffffff8159faf0 ffff88045fd11f28
> ffffffff8104003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110896] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110896]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110896]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110896]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110896]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.110896] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
> 89 e5 fb f4 <c9> c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 f4 c9 c3 66
> 0f 1f 84
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.119695] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.119695]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.119695]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.119695]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.119985]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.119985] Pid: 0, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.119985] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.119985] <NMI>  [<ffffffff8104a786>] ? show_regs+0x26/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120119]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120164]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018] CR2: 00007f241ad1f0b8 CR3: 000000045ed50000 CR4:
> 00000000000006e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
> 0000000000000400
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018] Process kworker/0:1 (pid: 0, threadinfo
> ffff88045fd00000, task ffff88045fcd8860)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.112018] Stack:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018]  ffff88045fd01ec8 ffffffff8104a016 ffff88045fd01ee4
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018]  ffff88045fd01ef8 ffffffff8104a168 ffff88045fd01ee8
> 00000000810b3255
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018]  ffff88045fd00010 ffffffff8159faf0 ffff88045fd01f28
> ffffffff8104003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018]  [<ffffffff813be5f0>] nmi+0x20/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.112018]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.123585] NMI backtrace for cpu 7
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.124502] RAX: 0000000000000000 RBX: 0000000000000007 RCX:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.125007] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.125206] Stack:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015] Modules linked in: btrfs zlib_deflate crc32c
> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
> xt_tcpudp xt_state iptable_filter ip_tables x_tables
> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
> ehci_hcd [last unloaded: scsi_wait_sca
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.108015]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015] Pid: 0, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015] RIP: 0010:[<ffffffff81066716>]  [<ffffffff81066716>]
> native_safe_halt+0x6/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015] RSP: 0018:ffff88045fd23ea8  EFLAGS: 00000246
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015] RAX: 0000000000000000 RBX: 0000000000000006 RCX:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015] RDX: 0000000000000000 RSI: ffff88045fd23ee4 RDI:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015] RBP: ffff88045fd23ea8 R08: 0000000000000000 R09:
> ffff88007f8ce408
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015] R10: 0000000000000000 R11: 0000000000000001 R12:
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.108015] Stack:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015]  ffff88045fd23ec8 ffffffff8104a016 ffff88045fd23ee4
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015]  [<ffffffff813be5f0>] nmi+0x20/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108015]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] Modules linked in: btrfs zlib_deflate crc32c
> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
> xt_tcpudp xt_state iptable_filter ip_tables x_tables
> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
> ehci_hcd [last unloaded: scsi_wait_sca
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] R10: 000028ce766a74a3 R11: 0000000000000001 R12:
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] R13: 0000000000000009 R14: 0000000000000000 R15:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] FS:  00007fa0cb316710(0000) GS:ffff88087fd00000(0000)
> knlGS:0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] CR2: 0000000000e64048 CR3: 000000045ea45000 CR4:
> 00000000000006e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
> 0000000000000400
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] Process kworker/0:1 (pid: 0, threadinfo
> ffff88045fd6e000, task ffff88045fd669a0)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.126621] Stack:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  ffff88045fd6fec8 ffffffff8104a016 ffff88045fd6fee4
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  ffff88045fd6fef8 ffffffff8104a168 ffff88045fd6fee8
> 00000000810b3255
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  ffff88045fd6e010 ffffffff8159faf0 ffff88045fd6ff28
> ffffffff8104003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
> 89 e5 fb f4 <c9> c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 f4 c9 c3 66
> 0f 1f 84
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] Pid: 0, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] <NMI>  [<ffffffff8104a786>] ? show_regs+0x26/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff813be5f0>] nmi+0x20/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff81066716>] ? native_safe_halt+0x6/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621] <<EOE>>  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.126621]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] NMI backtrace for cpu 11
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] CPU 11
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] Modules linked in: btrfs zlib_deflate crc32c
> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
> xt_tcpudp xt_state iptable_filter ip_tables x_tables
> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
> ehci_hcd [last unloaded: scsi_wait_sca
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.111333]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] Pid: 0, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] RIP: 0010:[<ffffffff81066716>]  [<ffffffff81066716>]
> native_safe_halt+0x6/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] RSP: 0018:ffff88045fd8fea8  EFLAGS: 00000246
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] RAX: 0000000000000000 RBX: 000000000000000b RCX:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] RDX: 0000000000000000 RSI: ffff88045fd8fee4 RDI:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] RBP: ffff88045fd8fea8 R08: 0000000000000000 R09:
> ffff88087fd4e408
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] R10: 000028ce71c3578e R11: 0000000000000001 R12:
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] R13: 000000000000000b R14: 0000000000000000 R15:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] FS:  00007fa0ce156740(0000) GS:ffff88087fd40000(0000)
> knlGS:0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] CR2: 00007f2421c3eae0 CR3: 000000045ea45000 CR4:
> 00000000000006e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
> 0000000000000400
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] Process kworker/0:1 (pid: 0, threadinfo
> ffff88045fd8e000, task ffff88045fd86a20)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.111333] Stack:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  ffff88045fd8fec8 ffffffff8104a016 ffff88045fd8fee4
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  ffff88045fd8fef8 ffffffff8104a168 ffff88045fd8fee8
> 00000000810b3255
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  ffff88045fd8e010 ffffffff8159faf0 ffff88045fd8ff28
> ffffffff8104003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
> 89 e5 fb f4 <c9> c3 0f 1f 84 00 00 00 00 00 55 48 89 e5 f4 c9 c3 66
> 0f 1f 84
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] Pid: 0, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] <NMI>  [<ffffffff8104a786>] ? show_regs+0x26/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff813be5f0>] nmi+0x20/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff81066716>] ? native_safe_halt+0x6/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333] <<EOE>>  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.111333]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] NMI backtrace for cpu 8
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.108010] CPU 8
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] Modules linked in: btrfs zlib_deflate crc32c
> libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs
> reiserfs ext4 jbd2 crc16 ext3 jbd vhost_net macvtap macvlan tun veth
> powernow_k8 mperf cpufreq_userspace cpufreq_stats cpufreq_powersave
> cpufreq_ondemand freq_table cpufreq_conservative fuse xt_physdev
> ip6t_LOG ip6table_filter ip6_tables ipt_LOG xt_multiport xt_limit
> xt_tcpudp xt_state iptable_filter ip_tables x_tables
> nf_conntrack_tftp nf_conntrack_ftp nf_conntrack_ipv4 nf_defrag_ipv4
> 8021q bridge stp ext2 mbcache dm_round_robin dm_multipath
> nf_conntrack_ipv6 nf_conntrack nf_defrag_ipv6 ipv6 snd_pcm snd_timer
> snd soundcore snd_page_alloc shpchp i2c_nforce2 tpm_tis tpm
> pci_hotplug psmouse evdev i2c_core tpm_bios dcdbas pcspkr joydev
> ghes serio_raw processor thermal_sys hed button xfs exportfs dm_mod
> sg sr_mod cdrom usbhid hid usb_storage ses sd_mod enclosure lpfc
> scsi_transport_fc ohci_hcd scsi_tgt megaraid_sas scsi_mod bnx2
> ehci_hcd [last unloaded: scsi_wait_sca
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: n]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.108010]
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] Pid: 0, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17 Dell Inc. PowerEdge M605/0K543T
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] RIP: 0010:[<ffffffff81066716>]  [<ffffffff81066716>]
> native_safe_halt+0x6/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] RSP: 0018:ffff88045fd63ea8  EFLAGS: 00000246
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] RAX: 0000000000000000 RBX: 0000000000000008 RCX:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] RDX: 0000000000000000 RSI: ffff88045fd63ee4 RDI:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] RBP: ffff88045fd63ea8 R08: 0000000000000000 R09:
> ffff88007f90e408
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] R10: 0000000000000000 R11: 0000000000000001 R12:
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] R13: 0000000000000008 R14: 0000000000000000 R15:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] FS:  00007fb8e0891710(0000) GS:ffff88007f900000(0000)
> knlGS:0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] CR2: 0000000000e63f28 CR3: 000000045ed50000 CR4:
> 00000000000006e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
> 0000000000000400
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] Process kworker/0:1 (pid: 0, threadinfo
> ffff88045fd62000, task ffff88045fd34960)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.108010] Stack:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010]  ffff88045fd63ec8 ffffffff8104a016 ffff88045fd63ee4
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010]  ffff88045fd63ef8 ffffffff8104a168 ffff88045fd63ee8
> 00000000810b3255
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010]  ffff88045fd62010 ffffffff8159faf0 ffff88045fd63f28
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136088] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136098]
> irqfd_deactivate(irqfd=ffff880853b8caa0,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] Code: 00 00 00 00 00 55 48 89 e5 fa c9 c3 66 0f 1f 84
> 00 00 00 00 00 55 48 89 e5 fb c9 c3 66 0f 1f 84 00 00 00 00 00 55 48
> 89 e5 fb f4 <c9> c3 0f
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136661] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136665]
> irqfd_deactivate(irqfd=ffff880810a21e00,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136702] irqfd_shutdown(work=ffff880810a21e80,irqfd=ffff880810a21e00,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136709] remove wq at
> irqfd_shutdown(work=ffff880810a21e80,irqfd=ffff880810a21e00)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136715] kfree at
> irqfd_shutdown(work=ffff880810a21e80,irqfd=ffff880810a21e00)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] 1f 84 00 00 00
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136910]
> kvm_irqfd_assign(irqfd=ffff880853b8caa0,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] 00 00 55 48 89 e5 f4 c9 c3 66 0f 1f 84
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010]  [<ffffffff8104a168>] c1e_idle+0x58/0x120
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.108010]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136975] Pid: 0, comm: kworker/0:1 Not tainted
> 2.6.37.2-patchjp-110308-c+ #17
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136975] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136975] <NMI>  [<ffffffff8104a786>] ? show_regs+0x26/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136975]  [<ffffffff8105fde1>] nmi_watchdog_tick+0x191/0x1b0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136975]  [<ffffffff813be5f0>] nmi+0x20/0x30
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.136975]  [<ffffffff81066716>] ? native_safe_halt+0x6/0x10
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004] FS:  00007f2787814700(0000) GS:ffff88007f940000(0000)
> knlGS:0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004] CR2: 0000000000e63f28 CR3: 000000045ea45000 CR4:
> 00000000000006e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
> 0000000000000000
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7:
> 0000000000000400
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004] Process kworker/0:1 (pid: 0, threadinfo
> ffff88045fd80000, task ffff88045fd769e0)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel: [44867.120004] Stack:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004]  ffff88045fd81ec8 ffffffff8104a016 ffff88045fd81ee4
> ffffffff8159faf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004]  ffff88045fd81ef8 ffffffff8104a168 ffff88045fd81ee8
> 00000000810b3255
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004]  ffff88045fd80010 ffffffff8159faf0 ffff88045fd81f28
> ffffffff8104003b
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004] Call Trace:
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004]  [<ffffffff8104a016>] default_idle+0x46/0xa0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004]  [<ffffffff8104003b>] cpu_idle+0x6b/0xf0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004]  [<ffffffff81042ef1>] do_nmi+0x1c1/0x2e0
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.120004]  [<ffffffff813b7247>] start_secondary+0x1b9/0x1be
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.148658] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.148687]
> irqfd_deactivate(irqfd=ffff880853b8caa0,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.148759] irqfd_shutdown(work=ffff880853b8cb20,irqfd=ffff880853b8caa0,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.148814] remove wq at
> irqfd_shutdown(work=ffff880853b8cb20,irqfd=ffff880853b8caa0)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.148862] kfree at
> irqfd_shutdown(work=ffff880853b8cb20,irqfd=ffff880853b8caa0)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.149086]
> kvm_irqfd_assign(irqfd=ffff88081a190b78,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.149379] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=48)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.149416]
> irqfd_deactivate(irqfd=ffff88045efd3740,kvm=ffff8804542d0000,
> gsi=48)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.149540] irqfd_shutdown(work=ffff88045efd37c0,irqfd=ffff88045efd3740,kvm=ffff8804542d0000,
> gsi=48)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.149594] remove wq at
> irqfd_shutdown(work=ffff88045efd37c0,irqfd=ffff88045efd3740)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.149643] kfree at
> irqfd_shutdown(work=ffff88045efd37c0,irqfd=ffff88045efd3740)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.149922]
> kvm_irqfd_assign(irqfd=ffff88080f7aa818,kvm=ffff8804542d0000,
> gsi=48)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.171869] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.171907]
> irqfd_deactivate(irqfd=ffff88081a190b78,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.171989] irqfd_shutdown(work=ffff88081a190bf8,irqfd=ffff88081a190b78,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.172111] remove wq at
> irqfd_shutdown(work=ffff88081a190bf8,irqfd=ffff88081a190b78)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.172160] kfree at
> irqfd_shutdown(work=ffff88081a190bf8,irqfd=ffff88081a190b78)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.172493]
> kvm_irqfd_assign(irqfd=ffff88083b062308,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.172672] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.172710]
> irqfd_deactivate(irqfd=ffff88083b062308,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.172782] irqfd_shutdown(work=ffff88083b062388,irqfd=ffff88083b062308,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.172836] remove wq at
> irqfd_shutdown(work=ffff88083b062388,irqfd=ffff88083b062308)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.172884] kfree at
> irqfd_shutdown(work=ffff88083b062388,irqfd=ffff88083b062308)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.173074]
> kvm_irqfd_assign(irqfd=ffff88081a190230,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.175303] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.175339]
> irqfd_deactivate(irqfd=ffff88081a190230,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.175466] irqfd_shutdown(work=ffff88081a1902b0,irqfd=ffff88081a190230,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.175521] remove wq at
> irqfd_shutdown(work=ffff88081a1902b0,irqfd=ffff88081a190230)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.175569] kfree at
> irqfd_shutdown(work=ffff88081a1902b0,irqfd=ffff88081a190230)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.175769]
> kvm_irqfd_assign(irqfd=ffff88045eabb668,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.176002] kvm_irqfd_deassign(kvm=ffff8804542d0000, gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.176058]
> irqfd_deactivate(irqfd=ffff88045eabb668,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.176122] irqfd_shutdown(work=ffff88045eabb6e8,irqfd=ffff88045eabb668,kvm=ffff8804542d0000,
> gsi=24)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.176177] remove wq at
> irqfd_shutdown(work=ffff88045eabb6e8,irqfd=ffff88045eabb668)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.176225] kfree at
> irqfd_shutdown(work=ffff88045eabb6e8,irqfd=ffff88045eabb668)
> Mar 10 03:57:13 ayrshire.u06.univ-nantes.prive kernel:
> [44867.176427]
> kvm_irqfd_assign(irqfd=ffff88045ed96c50,kvm=ffff8804542d0000, gsi=24
> 
> 
> You can find all the trace at the following adress:
> http://filex.univ-nantes.fr/get?k=R94kna5sckVmdvCoKsn
> 
> It's a tar.gz of seven file, from 100k to 200k each ;)
> 
> Again, thanks a lot for the time you spent on this.
> 
> Regards.

Are you running a preemptible kernel?
Does the following help at all?

diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c
index 2ca4535..cdf51c9 100644
--- a/virt/kvm/eventfd.c
+++ b/virt/kvm/eventfd.c
@@ -90,7 +90,7 @@ irqfd_shutdown(struct work_struct *work)
 	 * We know no new events will be scheduled at this point, so block
 	 * until all previously outstanding events have completed
 	 */
-	flush_work(&irqfd->inject);
+	flush_work_sync(&irqfd->inject);
 
 	/*
 	 * It is now safe to release the object's resources

-- 
MST

^ permalink raw reply related

* Re: [PATCH][v3] dev : fix mtu check when TSO is enabled
From: Daniel Lezcano @ 2011-03-15 13:57 UTC (permalink / raw)
  To: David Miller; +Cc: eric.dumazet, kaber, nightnord, netdev
In-Reply-To: <20110314.165929.232913682.davem@davemloft.net>

On 03/15/2011 12:59 AM, David Miller wrote:
> From: Daniel Lezcano<daniel.lezcano@free.fr>
> Date: Mon, 14 Mar 2011 21:39:50 +0100
>
>> +	len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
>> +	if (skb->len<  len)
>> +		return true;
> This is not a correct translation of the original test:
>
>> -		     (skb->len>  (dev->mtu + dev->hard_header_len + VLAN_HLEN)))) {
> You need to use "<=" in your version, which currently rejects all
> full sized frames. :-)

Right, thanks.

>> +
>> +	/* if TSO is enabled, we don't care about the length as the packet
>> +	 * could be forwarded without being segmented before
>> +	 */
>> +	if (skb->dev&&  skb->dev->features&  NETIF_F_TSO)
>> +		return true;
> I am trying to understand why you aren't simply checking also if this
> is a segmented frame?  Perhaps skb_is_gso()&&  device has NETIF_F_TSO
> set?

Maybe I am misunderstanding but the packet was forwarded by another device.
In our case from macvlan:

macvlan_start_xmit
     macvlan_queue_xmit
         dest->forward
             dev_skb_forward

When we reached dev_skb_forward, that means we passed through 
dev_hard_start_xmit where the packet was already segmented so we should 
exit at the first test (skb->len < len). I don't see the point of adding 
the skb_is_gso.
But maybe I am missing something, can you explain ?

Thanks
   -- Daniel

^ permalink raw reply

* Re: [GIT] Networking
From: Steven Rostedt @ 2011-03-15 12:52 UTC (permalink / raw)
  To: david
  Cc: J. Bruce Fields, Ben Hutchings, David Miller, torvalds, akpm,
	netdev, linux-kernel
In-Reply-To: <alpine.DEB.2.00.1103150019060.5340@asgard.lang.hm>

On Tue, 2011-03-15 at 00:20 -0700, david@lang.hm wrote:

> > It really is meaningless to do so, as all you are doing is documenting
> > what commit caused this bug, and producing more problems by branching
> > off of the broken commit. It wont matter till it is merged, but then if
> > there are a lot of simple bug fixes, then you will have a lot of single
> > merges of branches that fix those bugs.
> 
> what effect would this have on bisecting? if this helped people avoid 
> bisecting in between the bad commit and the fix for it, it may be worth 
> it.
> 

But it wont, as the fix will still be brought in at a later time. It has
nothing to do with being based off of the broken commit.

         A  +
            +   merged in fix
         B  + \
            |  |
            |  |
            |  |
Lots of     |  |
  stuff     |  |
            |  |
            |  |
            |  + - fix for bug
            | /
 Bug commit +
            |

A bisect will still be testing lots of stuff without that fix. And if it
goes into the branch with the fix, we just brought the kernel way back
in time from point A. Then if it goes back to point B, then we zoom back
to the future and bounce the kernel all over the place.

I see no gain for having a fixed based off of the bug that it fixes.

Pros of doing this:

1) documents the point that things broke (can be done by commenting it
in the change log too)

2) probably good for back porting (but Con 3 may out weigh this)

Cons:

1) Adds many more branches and merges for no real good reason

2) Makes bisects even less linear than it already is

3) May cause more conflicts at the merge point as the broken code may
have changed.



Who will be doing the conflict resolutions? Linus? I doubt he would be
happy with that, but he can speak for himself.

-- Steve

^ permalink raw reply

* Re: [PATCHv2 1/9] at91: provide macb clks with "pclk" and "hclk" name
From: Jamie Iles @ 2011-03-15 12:44 UTC (permalink / raw)
  To: Jean-Christophe PLAGNIOL-VILLARD
  Cc: Jamie Iles, netdev, linux-arm-kernel, nicolas.ferre
In-Reply-To: <20110315123539.GD14548@game.jcrosoft.org>

On Tue, Mar 15, 2011 at 01:35:39PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> On 10:14 Tue 15 Mar     , Jamie Iles wrote:
> > The macb driver expects clocks with the names "pclk" and "hclk".  We
> > currently provide "macb_clk" but to fit in line with other
> > architectures (namely AVR32), provide "pclk" and a fake "hclk".
> > 
> > Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> > Signed-off-by: Jamie Iles <jamie@jamieiles.com>
> > ---
> >  arch/arm/mach-at91/at572d940hf.c |    8 +++++++-
> >  arch/arm/mach-at91/at91cap9.c    |    8 +++++++-
> >  arch/arm/mach-at91/at91sam9260.c |    8 +++++++-
> >  arch/arm/mach-at91/at91sam9263.c |    8 +++++++-
> >  arch/arm/mach-at91/at91sam9g45.c |    8 +++++++-
> >  5 files changed, 35 insertions(+), 5 deletions(-)
> > 
> > diff --git a/arch/arm/mach-at91/at572d940hf.c b/arch/arm/mach-at91/at572d940hf.c
> > index a6b9c68..9b3a37e 100644
> > --- a/arch/arm/mach-at91/at572d940hf.c
> > +++ b/arch/arm/mach-at91/at572d940hf.c
> > @@ -71,10 +71,15 @@ static struct clk pioC_clk = {
> >  	.type		= CLK_TYPE_PERIPHERAL,
> >  };
> >  static struct clk macb_clk = {
> > -	.name		= "macb_clk",
> > +	.name		= "pclk",
> >  	.pmc_mask	= 1 << AT572D940HF_ID_EMAC,
> >  	.type		= CLK_TYPE_PERIPHERAL,
> >  };
> > +static struct clk macb_hclk = {
> > +	.name		= "hclk",
> > +	.pmc_mask	= 0,
> > +	.type		= CLK_TYPE_PERIPHERAL,
> > +};
> for the fake clock you must specify the parent as macb_clk
> 
> take a look on the tcb1_clk for the 9g45

Ok, will do.  Thanks for the pointer!

Jamie

^ permalink raw reply

* Re: [PATCHv2 3/9] macb: unify at91 and avr32 platform data
From: Jean-Christophe PLAGNIOL-VILLARD @ 2011-03-15 12:36 UTC (permalink / raw)
  To: Peter Korsgaard; +Cc: Jamie Iles, netdev, linux-arm-kernel, nicolas.ferre
In-Reply-To: <87vczkmy94.fsf@macbook.be.48ers.dk>

On 12:14 Tue 15 Mar     , Peter Korsgaard wrote:
> >>>>> "Jamie" == Jamie Iles <jamie@jamieiles.com> writes:
> 
> Hi,
> 
>  Jamie> Both at91 and avr32 defines its own platform data structure for
>  Jamie> the macb driver and both share common structures though at91
>  Jamie> includes a currently unused phy_irq_pin.  Create a common
>  Jamie> eth_platform_data for macb that both at91 and avr32 can use.  In
>  Jamie> future we can use this to support other architectures that use the
>  Jamie> same IP block with the macb driver.
> 
> Nice!
> 
>  Jamie> Signed-off-by: Jamie Iles <jamie@jamieiles.com>
> 
>  Jamie> +++ b/include/linux/platform_data/macb.h
>  Jamie> @@ -0,0 +1,17 @@
>  Jamie> +/*
>  Jamie> + * Copyright (C) 2004-2006 Atmel Corporation
>  Jamie> + *
>  Jamie> + * This program is free software; you can redistribute it and/or modify
>  Jamie> + * it under the terms of the GNU General Public License version 2 as
>  Jamie> + * published by the Free Software Foundation.
>  Jamie> + */
>  Jamie> +#ifndef __MACB_PDATA_H__
>  Jamie> +#define __MACB_PDATA_H__
>  Jamie> +
>  Jamie> +struct eth_platform_data {
> 
> How about at the same time renaming it to something a bit less generic
> like macb_platform_data?
agreed

Best Regards,
J.
> 
> -- 
> Bye, Peter Korsgaard

^ permalink raw reply

* Re: [PATCH] ipv6: netfilter: ip6_tables: fix infoleak to userspace
From: Patrick McHardy @ 2011-03-15 12:37 UTC (permalink / raw)
  To: Vasiliy Kulikov
  Cc: linux-kernel, security, David S. Miller, Alexey Kuznetsov,
	James Morris, Hideaki YOSHIFUJI, netfilter-devel, netfilter,
	coreteam, netdev
In-Reply-To: <1299780827-344-1-git-send-email-segoon@openwall.com>

On 10.03.2011 19:13, Vasiliy Kulikov wrote:
> Structures ip6t_replace, compat_ip6t_replace, and xt_get_revision are
> copied from userspace.  Fields of these structs that are
> zero-terminated strings are not checked.  When they are used as argument
> to a format string containing "%s" in request_module(), some sensitive
> information is leaked to userspace via argument of spawned modprobe
> process.
> 
> The first bug was introduced before the git epoch;  the second was
> introduced in 3bc3fe5e (v2.6.25-rc1);  the third is introduced by
> 6b7d31fc (v2.6.15-rc1).  To trigger the bug one should have
> CAP_NET_ADMIN.

Also applied, thanks Vasiliy.

^ permalink raw reply

* Re: [PATCHv2 4/9] macb: convert printk to netdev_ and friends
From: Jean-Christophe PLAGNIOL-VILLARD @ 2011-03-15 12:36 UTC (permalink / raw)
  To: Jamie Iles; +Cc: netdev, nicolas.ferre, linux-arm-kernel
In-Reply-To: <1300184096-13937-5-git-send-email-jamie@jamieiles.com>

On 10:14 Tue 15 Mar     , Jamie Iles wrote:
> macb is already using the dev_dbg() and friends helpers so use netdev_()
> along with a pr_fmt() definition to make the printing a little cleaner.
> 
> Signed-off-by: Jamie Iles <jamie@jamieiles.com>
looks fine

Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

Best Regards,
J.

^ permalink raw reply

* Re: [PATCH] ipv4: netfilter: ip_tables: fix infoleak to userspace
From: Patrick McHardy @ 2011-03-15 12:36 UTC (permalink / raw)
  To: Vasiliy Kulikov
  Cc: linux-kernel, security, David S. Miller, Alexey Kuznetsov,
	James Morris, Hideaki YOSHIFUJI, netfilter-devel, netfilter,
	coreteam, netdev
In-Reply-To: <1299780735-32607-1-git-send-email-segoon@openwall.com>

On 10.03.2011 19:12, Vasiliy Kulikov wrote:
> Structures ipt_replace, compat_ipt_replace, and xt_get_revision are
> copied from userspace.  Fields of these structs that are
> zero-terminated strings are not checked.  When they are used as argument
> to a format string containing "%s" in request_module(), some sensitive
> information is leaked to userspace via argument of spawned modprobe
> process.
> 
> The first and the third bugs were introduced before the git epoch; the
> second was introduced in 2722971c (v2.6.17-rc1).  To trigger the bug
> one should have CAP_NET_ADMIN.

Applied, thanks.

^ permalink raw reply

* Re: [PATCH] ipv4: netfilter: arp_tables: fix infoleak to userspace
From: Patrick McHardy @ 2011-03-15 12:35 UTC (permalink / raw)
  To: Vasiliy Kulikov
  Cc: linux-kernel, security, David S. Miller, Alexey Kuznetsov,
	James Morris, Hideaki YOSHIFUJI, netfilter-devel, netfilter,
	coreteam, netdev
In-Reply-To: <1299780728-32565-1-git-send-email-segoon@openwall.com>

On 10.03.2011 19:12, Vasiliy Kulikov wrote:
> Structures ipt_replace, compat_ipt_replace, and xt_get_revision are
> copied from userspace.  Fields of these structs that are
> zero-terminated strings are not checked.  When they are used as argument
> to a format string containing "%s" in request_module(), some sensitive
> information is leaked to userspace via argument of spawned modprobe
> process.
> 
> The first bug was introduced before the git epoch;  the second is
> introduced by 6b7d31fc (v2.6.15-rc1);  the third is introduced by
> 6b7d31fc (v2.6.15-rc1).  To trigger the bug one should have
> CAP_NET_ADMIN.
> 

Applied, thanks.

^ permalink raw reply

* Re: [PATCHv2 1/9] at91: provide macb clks with "pclk" and "hclk" name
From: Jean-Christophe PLAGNIOL-VILLARD @ 2011-03-15 12:35 UTC (permalink / raw)
  To: Jamie Iles; +Cc: netdev, nicolas.ferre, linux-arm-kernel
In-Reply-To: <1300184096-13937-2-git-send-email-jamie@jamieiles.com>

On 10:14 Tue 15 Mar     , Jamie Iles wrote:
> The macb driver expects clocks with the names "pclk" and "hclk".  We
> currently provide "macb_clk" but to fit in line with other
> architectures (namely AVR32), provide "pclk" and a fake "hclk".
> 
> Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> Signed-off-by: Jamie Iles <jamie@jamieiles.com>
> ---
>  arch/arm/mach-at91/at572d940hf.c |    8 +++++++-
>  arch/arm/mach-at91/at91cap9.c    |    8 +++++++-
>  arch/arm/mach-at91/at91sam9260.c |    8 +++++++-
>  arch/arm/mach-at91/at91sam9263.c |    8 +++++++-
>  arch/arm/mach-at91/at91sam9g45.c |    8 +++++++-
>  5 files changed, 35 insertions(+), 5 deletions(-)
> 
> diff --git a/arch/arm/mach-at91/at572d940hf.c b/arch/arm/mach-at91/at572d940hf.c
> index a6b9c68..9b3a37e 100644
> --- a/arch/arm/mach-at91/at572d940hf.c
> +++ b/arch/arm/mach-at91/at572d940hf.c
> @@ -71,10 +71,15 @@ static struct clk pioC_clk = {
>  	.type		= CLK_TYPE_PERIPHERAL,
>  };
>  static struct clk macb_clk = {
> -	.name		= "macb_clk",
> +	.name		= "pclk",
>  	.pmc_mask	= 1 << AT572D940HF_ID_EMAC,
>  	.type		= CLK_TYPE_PERIPHERAL,
>  };
> +static struct clk macb_hclk = {
> +	.name		= "hclk",
> +	.pmc_mask	= 0,
> +	.type		= CLK_TYPE_PERIPHERAL,
> +};
for the fake clock you must specify the parent as macb_clk

take a look on the tcb1_clk for the 9g45

Best Regards,
J.

^ permalink raw reply

* Re: [PATCH] ipv4: netfilter: ipt_CLUSTERIP: fix buffer overflow
From: Patrick McHardy @ 2011-03-15 12:33 UTC (permalink / raw)
  To: Changli Gao
  Cc: Vasiliy Kulikov, linux-kernel, security, David S. Miller,
	Alexey Kuznetsov, James Morris, Hideaki YOSHIFUJI,
	netfilter-devel, netfilter, coreteam, netdev
In-Reply-To: <AANLkTimPZJoCzz386e-4m0Y4khWGZirZguGFmuFYCrry@mail.gmail.com>

On 13.03.2011 15:00, Changli Gao wrote:
> On Fri, Mar 11, 2011 at 2:12 AM, Vasiliy Kulikov <segoon@openwall.com> wrote:
>> buffer string is copied from userspace.  It is not checked whether it is
>> zero terminated.  This may lead to overflow inside of simple_strtoul().
>>
>> It was introduced before the git epoch.  Files "ipt_CLUSTERIP/*" are
>> root writable only by default, however, on some setups permissions might be
>> relaxed to e.g. network admin user.
>>
>> Signed-off-by: Vasiliy Kulikov <segoon@openwall.com>
>> ---
>>  Compile tested.
>>
>>  net/ipv4/netfilter/ipt_CLUSTERIP.c |    1 +
>>  1 files changed, 1 insertions(+), 0 deletions(-)
>>
>> diff --git a/net/ipv4/netfilter/ipt_CLUSTERIP.c b/net/ipv4/netfilter/ipt_CLUSTERIP.c
>> index 403ca57..7aabf9a 100644
>> --- a/net/ipv4/netfilter/ipt_CLUSTERIP.c
>> +++ b/net/ipv4/netfilter/ipt_CLUSTERIP.c
>> @@ -666,6 +666,7 @@ static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
>>
>>        if (copy_from_user(buffer, input, PROC_WRITELEN))
> 
> I think size should be used instead of PROC_WRITELEN.
> 
> if (size > PROC_WRITELEN)
>      return -EIO;
> if (copy_from_user(buffer, input, size))
>     return -EFAULT;
> buffer[size] = '\0';

I agree, otherwise we might have the situation that the userspace
copy is crossing page boundaries into unmapped memory.




^ permalink raw reply

* Re: [PATCH 4/4] netfilter: xt_connlimit: remove connlimit_rnd_inited
From: Patrick McHardy @ 2011-03-15 12:26 UTC (permalink / raw)
  To: Changli Gao; +Cc: David S. Miller, netfilter-devel, netdev
In-Reply-To: <1300085414-27275-4-git-send-email-xiaosuo@gmail.com>

On 14.03.2011 07:50, Changli Gao wrote:
> A potential race condition when generating connlimit_rnd is also fixed.

Also applied, thanks Changli.

^ permalink raw reply

* Re: [PATCH 3/4] netfilter: xt_connlimit: use hlist instead
From: Patrick McHardy @ 2011-03-15 12:26 UTC (permalink / raw)
  To: Changli Gao; +Cc: David S. Miller, netfilter-devel, netdev
In-Reply-To: <1300085414-27275-3-git-send-email-xiaosuo@gmail.com>

On 14.03.2011 07:50, Changli Gao wrote:
> The header of hlist is smaller than list.

Applied.

^ permalink raw reply

* Re: [PATCH 2/4] netfilter: xt_connlimit: use kmalloc() instead of kzalloc()
From: Patrick McHardy @ 2011-03-15 12:25 UTC (permalink / raw)
  To: Changli Gao; +Cc: David S. Miller, netfilter-devel, netdev
In-Reply-To: <1300085414-27275-2-git-send-email-xiaosuo@gmail.com>

On 14.03.2011 07:50, Changli Gao wrote:
> All the members are initialized after kzalloc().

Applied.

^ permalink raw reply

* Re: [PATCH 1/4] netfilter: xt_connlimit: fix daddr connlimit in SNAT scenario
From: Patrick McHardy @ 2011-03-15 12:24 UTC (permalink / raw)
  To: Changli Gao; +Cc: David S. Miller, netfilter-devel, netdev
In-Reply-To: <1300085414-27275-1-git-send-email-xiaosuo@gmail.com>

On 14.03.2011 07:50, Changli Gao wrote:
> We use the reply tuples when limiting the connections by the destination
> addresses, however, in SNAT scenario, the final reply tuples won't be
> ready until SNAT is done in POSTROUING or INPUT chain, and the following
> nf_conntrack_find_get() in count_tem() will get nothing, so connlimit
> can't work as expected.
> 
> In this patch, the original tuples are always used, and an additional
> member addr is appended to save the address in either end.

Applied, thanks.


^ permalink raw reply

* Re: [PATCH 1/4] netfilter: xt_connlimit: fix daddr connlimit in SNAT scenario
From: Patrick McHardy @ 2011-03-15 12:21 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: Changli Gao, David S. Miller, netfilter-devel, netdev
In-Reply-To: <alpine.LNX.2.01.1103150302310.27019@obet.zrqbmnf.qr>

On 15.03.2011 03:05, Jan Engelhardt wrote:
> On Tuesday 2011-03-15 02:30, Changli Gao wrote:
> 
>> On Tue, Mar 15, 2011 at 9:16 AM, Jan Engelhardt <jengelh@medozas.de> wrote:
>>>
>>>
>>> The original tuple may not be updated, but the reply tuple is.
>>> And we are taking the reply tuple in
>>>
>>>        tuple_ptr = &ct->tuplehash[IP_CT_DIR_REPLY].tuple;
>>>
>>> which is subsequently copied to conn->tuple on the first invocation.
>>>
>>> Afterwards, SNAT will update ct->tuplehash[reply].tuple, and so
>>> conn->tuple is outdated. Calling nf_conntrack_find_get(conn->tuple)
>>> in count_them would then fail, would it not?
>>>
>>
>> After my patch, tuple is only used to look up the corresponding
>> conntrack.
> 
> Ok, the patch may be applied. Somehow I was under the impression
> addr was extracted from tuple_ptr, but it is, in fact, not.
> 

OK, thanks, I'll apply patches 1-4.

^ permalink raw reply

* Re: [GIT PULL nf-next-2.6] IPVS
From: Patrick McHardy @ 2011-03-15 12:16 UTC (permalink / raw)
  To: Simon Horman
  Cc: netdev, netfilter-devel, netfilter, lvs-devel, Eric Dumazet,
	Julian Anastasov, Hans Schillstrom
In-Reply-To: <1300166852-725-1-git-send-email-horms@verge.net.au>

On 15.03.2011 06:27, Simon Horman wrote:
> Hi Patrick,
> 
> please consider pulling
> git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git for-patrick
> to get the changes listed below.

Pulled, thanks Simon.

> This replaces the pull requests that I sent yesterday, sorry for messing
> that up.
> 
> Also, sorry for letting the number of patches grow so much, Julian and I
> were working on patches that conflicted with each other. But regardless, I
> should have done something about getting a request to you earlier.

No problem, the individual patches are quite small after all.

^ permalink raw reply

* Re: [PATCHv2 3/9] macb: unify at91 and avr32 platform data
From: Jamie Iles @ 2011-03-15 11:34 UTC (permalink / raw)
  To: Peter Korsgaard
  Cc: Jamie Iles, netdev, linux-arm-kernel, nicolas.ferre, plagnioj
In-Reply-To: <87vczkmy94.fsf@macbook.be.48ers.dk>

Hi Peter,

On Tue, Mar 15, 2011 at 12:14:31PM +0100, Peter Korsgaard wrote:
> >>>>> "Jamie" == Jamie Iles <jamie@jamieiles.com> writes:
>  Jamie> +++ b/include/linux/platform_data/macb.h
>  Jamie> @@ -0,0 +1,17 @@
>  Jamie> +/*
>  Jamie> + * Copyright (C) 2004-2006 Atmel Corporation
>  Jamie> + *
>  Jamie> + * This program is free software; you can redistribute it and/or modify
>  Jamie> + * it under the terms of the GNU General Public License version 2 as
>  Jamie> + * published by the Free Software Foundation.
>  Jamie> + */
>  Jamie> +#ifndef __MACB_PDATA_H__
>  Jamie> +#define __MACB_PDATA_H__
>  Jamie> +
>  Jamie> +struct eth_platform_data {
> 
> How about at the same time renaming it to something a bit less generic
> like macb_platform_data?

Yes, that's a fair point.

Jamie

^ permalink raw reply

* Re: [PATCHv2 3/9] macb: unify at91 and avr32 platform data
From: Peter Korsgaard @ 2011-03-15 11:14 UTC (permalink / raw)
  To: Jamie Iles; +Cc: netdev, plagnioj, nicolas.ferre, linux-arm-kernel
In-Reply-To: <1300184096-13937-4-git-send-email-jamie@jamieiles.com>

>>>>> "Jamie" == Jamie Iles <jamie@jamieiles.com> writes:

Hi,

 Jamie> Both at91 and avr32 defines its own platform data structure for
 Jamie> the macb driver and both share common structures though at91
 Jamie> includes a currently unused phy_irq_pin.  Create a common
 Jamie> eth_platform_data for macb that both at91 and avr32 can use.  In
 Jamie> future we can use this to support other architectures that use the
 Jamie> same IP block with the macb driver.

Nice!

 Jamie> Signed-off-by: Jamie Iles <jamie@jamieiles.com>

 Jamie> +++ b/include/linux/platform_data/macb.h
 Jamie> @@ -0,0 +1,17 @@
 Jamie> +/*
 Jamie> + * Copyright (C) 2004-2006 Atmel Corporation
 Jamie> + *
 Jamie> + * This program is free software; you can redistribute it and/or modify
 Jamie> + * it under the terms of the GNU General Public License version 2 as
 Jamie> + * published by the Free Software Foundation.
 Jamie> + */
 Jamie> +#ifndef __MACB_PDATA_H__
 Jamie> +#define __MACB_PDATA_H__
 Jamie> +
 Jamie> +struct eth_platform_data {

How about at the same time renaming it to something a bit less generic
like macb_platform_data?

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* Re: [PATCH 17/17] net,act_police,rcu: remove rcu_barrier()
From: Eric Dumazet @ 2011-03-15 11:04 UTC (permalink / raw)
  To: Lai Jiangshan
  Cc: Randy Dunlap, linux-decnet-user-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	Trond Myklebust, linux-sctp-u79uwXL29TY76Z2rM5mHXA,
	Pavel Emelyanov, Pekka Savola (ipv6), Uwe Kleine-König,
	Alexey Kuznetsov, Ingo Molnar, Paul E. McKenney,
	Sridhar Samudrala, Vlad Yasevich, Hagen Paul Pfeifer,
	John W. Linville, Al Viro, Johannes Berg, Jens Axboe,
	linux-nfs-u79uwXL29TY76Z2rM5mHXA, Jiri Pirko
In-Reply-To: <4D7F3B62.6000005-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>

Le mardi 15 mars 2011 à 18:11 +0800, Lai Jiangshan a écrit :
> 
> There is no callback of this module maybe queued
> since we use kfree_rcu(), we can safely remove the rcu_barrier().
> 
> Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
> ---
>  net/sched/act_police.c |    1 -
>  1 files changed, 0 insertions(+), 1 deletions(-)
> 
> diff --git a/net/sched/act_police.c b/net/sched/act_police.c
> index 083b091..22e3f9b 100644
> --- a/net/sched/act_police.c
> +++ b/net/sched/act_police.c
> @@ -397,7 +397,6 @@ static void __exit
>  police_cleanup_module(void)
>  {
>  	tcf_unregister_action(&act_police_ops);
> -	rcu_barrier(); /* Wait for completion of call_rcu()'s (tcf_police_free_rcu) */
>  }
>  
>  module_init(police_init_module);


Why is it a separate patch, and not included in patch 5/17 ?





_______________________________________________
Containers mailing list
Containers@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/containers

^ permalink raw reply


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox