public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Frederik Deweerdt <deweerdt@free.fr>
To: Rusty Russell <rusty@rustcorp.com.au>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	linux-kernel@vger.kernel.org,
	Linus Torvalds <torvalds@linux-foundation.org>,
	lguest <lguest@ozlabs.org>
Subject: Re: [PATCH] Fix lguest page-pinning logic ("lguest: bad stack page 0xc057a000")
Date: Thu, 30 Aug 2007 18:38:12 +0200	[thread overview]
Message-ID: <20070830163812.GA22190@slug> (raw)
In-Reply-To: <1188230999.5531.15.camel@localhost.localdomain>

On Tue, Aug 28, 2007 at 02:09:59AM +1000, Rusty Russell wrote:
> If the stack pointer is 0xc057a000, then the first stack page is at
> 0xc0579000 (the stack pointer is decremented before use).  Not
> calculating this correctly caused guests with CONFIG_DEBUG_PAGEALLOC=y
> to be killed with a "bad stack page" message: the initial kernel stack
> was just preceeding the .smp_locks section which
> CONFIG_DEBUG_PAGEALLOC marks read-only when freeing.
> 
Hello Rusty,

I just could try the patch, sorry for the delay. Albeit it allows to
progress a little further in the boot process, lguest seems to like that
"section that was just freed" :)

Please note that:
- It could progress to "Freeing SMP alternatives: 13k freed", which is new.
  Indeed, your patch made the Host to pin 0xc04d3000, which is the
  good page.
- 0xc04d4000 is the __smp_locks section:
 $ objdump -h vmlinux
 [...]
 20 .data.init_task 00001000  c04d3000  004d3000  003d4000  2**2
                  CONTENTS, ALLOC, LOAD, DATA
 21 .smp_locks    000036c8  c04d4000  004d4000  003d5000  2**2
                  CONTENTS, ALLOC, LOAD, READONLY, DATA
 [...]

[    0.128503] SMP alternatives: switching to UP code
[    0.132846] Freeing SMP alternatives: 13k freed
[    0.135177] BUG: unable to handle kernel paging request at virtual address c04d4000
[    0.135417]  printing eip:
[    0.135505] c01051df
[    0.135564] *pde = 00005067
[    0.135645] *pte = 004d4000
[    0.135756] Oops: 0000 [#1]
[    0.135825] PREEMPT SMP DEBUG_PAGEALLOC
[    0.136039] Modules linked in:
[    0.136205] CPU:    0
[    0.136206] EIP:    0061:[<c01051df>]    Not tainted VLI
[    0.136207] EFLAGS: 00010097   (2.6.23-rc3 #5)
[    0.136665] EIP is at dump_trace+0x5f/0x97
[    0.136738] eax: c0614954   ebx: c04d3ffc   ecx: c0497b00   edx: c04ef641
[    0.136883] esi: c04d3000   edi: c04d3ffd   ebp: c04d3da0   esp: c04d3d90
[    0.137058] ds: 0069   es: 0069   fs: 00d8  gs: 0000  ss: 0069
[    0.137235] Process swapper (pid: 0, ti=c04d3000 task=c04953e0 task.ti=c04d3000)
[    0.137447] Stack: c0109d95 c0614954 c04953e0 00000000 c04d3db4 c010a1f1 c0497b00 c0614954
[    0.137831]        c0614954 c04d3dc4 c0140921 c0144252 c04959c8 c04d3dec c014272f c02eccf5
[    0.138119]        c04959c8 c0614938 c04d3dec 00000001 c04959c8 c0614938 c04953e0 c04d3e4c
[    0.138497] Call Trace:
[    0.138603]  [<c0105231>] show_trace_log_lvl+0x1a/0x2f
[    0.138798]  [<c01052e1>] show_stack_log_lvl+0x9b/0xa3
[    0.138942]  [<c01054c1>] show_registers+0x1d8/0x30d
[    0.139120]  [<c010571d>] die+0x127/0x20a
[    0.139272]  [<c011c470>] do_page_fault+0x512/0x5e6
[    0.139470]  [<c038ec02>] error_code+0x72/0x78
[    0.139678]  [<c010a1f1>] save_stack_trace+0x23/0x3e
[    0.139869]  [<c0140921>] save_trace+0x3a/0x8e
[    0.140049]  [<c014272f>] mark_lock+0x7b/0x471
[    0.140223]  [<c01436fc>] __lock_acquire+0x51a/0xc99
[    0.140374]  [<c0143f0c>] lock_acquire+0x91/0xb5
[    0.140546]  [<c038e491>] _spin_lock_irq+0x47/0x71
[    0.140693]  [<c01354c9>] alloc_pid+0x1ce/0x22f
[    0.140867]  [<c0125ce5>] do_fork+0x15/0x1bf
[    0.141011]  [<c0102339>] kernel_thread+0x88/0x90
[    0.141170]  [<c038b2b8>] rest_init+0x14/0x63
[    0.141345]  [<c04d895e>] start_kernel+0x317/0x31f
[    0.141565]  [<c04ef641>] lguest_init+0x2af/0x2d5
[    0.141736] BUG: unable to handle kernel paging request at virtual address c04d4000
[    0.142195]  printing eip:
[    0.142259] c01051df
[    0.142335] *pde = 00005067
[    0.142418] *pte = 004d4000
[    0.142501] Oops: 0000 [#2]
[    0.142581] PREEMPT SMP DEBUG_PAGEALLOC
[    0.142775] Modules linked in:
[    0.142929] CPU:    0
[    0.142930] EIP:    0061:[<c01051df>]    Not tainted VLI
[    0.142931] EFLAGS: 00010097   (2.6.23-rc3 #5)
[    0.143296] EIP is at dump_trace+0x5f/0x97
[    0.143409] eax: c0430e58   ebx: c04d3ffc   ecx: c0497058   edx: 00000000
[    0.143611] esi: c04d3000   edi: c04d3ffd   ebp: c04d3c1c   esp: c04d3c0c
[    0.143800] ds: 007b   es: 007b   fs: 00d8  gs: 0000  ss: 0069
[    0.143988] Process swapper (pid: 0, ti=c04d3000 task=c04953e0 task.ti=c04d3000)
[    0.144213] Stack: 34373331 c0430e58 00000018 00000000 c04d3c30 c0105231 c0497058 c0430e58
[    0.144634]        c04d3df3 c04d3c54 c01052e1 c0430e58 c0430e58 c04d3d58 c04d3d90 00000000
[    0.145055]        0000002b c04d3d58 c04d3cc0 c01054c1 c0430e58 00000010 c0495614 00000000
[    0.145439] Call Trace:
[    0.145511]  [<c0105231>] show_trace_log_lvl+0x1a/0x2f
[    0.145607]  [<c01052e1>] show_stack_log_lvl+0x9b/0xa3
[    0.145723]  [<c01054c1>] show_registers+0x1d8/0x30d
[    0.145849]  [<c010571d>] die+0x127/0x20a
[    0.145980]  [<c011c470>] do_page_fault+0x512/0x5e6
[    0.146125]  [<c038ec02>] error_code+0x72/0x78
[    0.146281]  [<c0105231>] show_trace_log_lvl+0x1a/0x2f
[    0.146423]  [<c01052e1>] show_stack_log_lvl+0x9b/0xa3
[    0.146587]  [<c01054c1>] show_registers+0x1d8/0x30d
[    0.146746]  [<c010571d>] die+0x127/0x20a
[    0.146895]  [<c011c470>] do_page_fault+0x512/0x5e6
[    0.147061]  [<c038ec02>] error_code+0x72/0x78
[    0.147213]  [<c010a1f1>] save_stack_trace+0x23/0x3e
[    0.147361]  [<c0140921>] save_trace+0x3a/0x8e
[    0.147531]  [<c014272f>] mark_lock+0x7b/0x471
[    0.147681]  [<c01436fc>] __lock_acquire+0x51a/0xc99
[    0.147839]  [<c0143f0c>] lock_acquire+0x91/0xb5
[    0.147987]  [<c038e491>] _spin_lock_irq+0x47/0x71
[    0.148136]  [<c01354c9>] alloc_pid+0x1ce/0x22f
[    0.148284]  [<c0125ce5>] do_fork+0x15/0x1bf
[    0.148458]  [<c0102339>] kernel_thread+0x88/0x90
[    0.148619]  [<c038b2b8>] rest_init+0x14/0x63
[    0.148766]  [<c04d895e>] start_kernel+0x317/0x31f
[    0.148923]  [<c04ef641>] lguest_init+0x2af/0x2d5
[    0.149076] BUG: unable to handle kernel paging request at virtual address c04d4000
[    0.149297]  printing eip:
[    0.149371] c01051df
[    0.149473] *pde = 00005067
[    0.149547] *pte = 004d4000
[    0.149623] Recursive die() failure, output suppressed
[    0.149807] Kernel panic - not syncing: Attempted to kill the idle task!



Regards,
Frederik

  reply	other threads:[~2007-08-30 16:42 UTC|newest]

Thread overview: 208+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-08-22  9:06 2.6.23-rc3-mm1 Andrew Morton
2007-08-22 10:11 ` [BUG] fs/xfs/xfs_bmap_btree.c:2312: error: 'b' undeclared (first use in this function) (Was Re: 2.6.23-rc3-mm1) Michal Piotrowski
2007-08-22 10:27   ` Michal Piotrowski
2007-08-23  5:27     ` Tim Shimmin
2007-08-22 13:02 ` [BUG] 2.6.23-rc3-mm1 - kernel BUG at net/core/skbuff.c:95! Kamalesh Babulal
2007-08-22 15:50   ` Andrew Morton
2007-08-22 17:58     ` Kay Sievers
2007-08-22 19:04       ` Balbir Singh
2007-08-22 20:55         ` Kay Sievers
2007-08-22 21:10           ` Balbir Singh
2007-08-23 18:59           ` Balbir Singh
2007-08-22 13:33 ` 2.6.23-rc3-mm1 Gabriel C
2007-08-22 16:09   ` 2.6.23-rc3-mm1 Andrew Morton
2007-08-22 17:01     ` 2.6.23-rc3-mm1 Gabriel C
2007-08-27 21:27   ` [-mm patch] make types.h usable for non-gcc C parsers Adrian Bunk
2007-08-27 21:34     ` Mike Frysinger
2007-08-27 21:36       ` Adrian Bunk
2007-08-27 21:42         ` Mike Frysinger
2007-08-28  7:37     ` Andrew Morton
2007-08-28  8:43       ` Sam Ravnborg
2007-08-28 14:19         ` Michael Matz
2007-08-28 14:40         ` Randy Dunlap
2007-08-28 14:42       ` Adrian Bunk
2007-08-28 17:06         ` Sam Ravnborg
2007-08-28 17:42           ` Mike Frysinger
2007-08-28 17:59           ` Adrian Bunk
2007-08-28 18:37             ` Sam Ravnborg
2007-08-22 14:19 ` 2.6.23-rc3-mm1 Michal Piotrowski
2007-08-22 16:17   ` 2.6.23-rc3-mm1 Andrew Morton
2007-08-22 15:30 ` net/ipv4/fib_trie.c - compile error (Re: 2.6.23-rc3-mm1) Gabriel C
2007-08-22 15:41   ` Adrian Bunk
2007-08-22 16:32     ` Gabriel C
2007-08-22 17:03     ` Paul E. McKenney
2007-08-27  6:36       ` Jarek Poplawski
2007-08-27 16:23         ` Paul E. McKenney
2007-08-22 16:15 ` drivers/scsi/advansys.c - ld error ( Re: 2.6.23-rc3-mm1 ) Gabriel C
2007-08-22 16:28   ` Matthew Wilcox
2007-08-22 16:57     ` Gabriel C
2007-08-22 16:33 ` 2.6.23-rc3-mm1: fix b43 compilation Rafael J. Wysocki
2007-08-22 21:56   ` Michael Buesch
2007-08-23  2:56     ` John W. Linville
2007-08-23  7:07       ` Andrew Morton
2007-08-22 17:10 ` drivers/net/ppp_generic - __modpost error ( Re: 2.6.23-rc3-mm1 ) Gabriel C
2007-08-22 17:17 ` 2.6.23-rc3-mm1 Mel Gorman
2007-08-22 18:10   ` 2.6.23-rc3-mm1 Andrew Morton
2007-08-23 11:39     ` 2.6.23-rc3-mm1 Mel Gorman
2007-08-23 12:03     ` 2.6.23-rc3-mm1 Andy Whitcroft
2007-08-23 12:22       ` 2.6.23-rc3-mm1 Andi Kleen
2007-08-23 12:34         ` 2.6.23-rc3-mm1 Andy Whitcroft
2007-08-23 12:28       ` 2.6.23-rc3-mm1 Sam Ravnborg
2007-08-23 14:24         ` 2.6.23-rc3-mm1 Sam Ravnborg
2007-08-23 12:07     ` 2.6.23-rc3-mm1 Andi Kleen
2007-08-23 16:25       ` 2.6.23-rc3-mm1 Mel Gorman
2007-08-22 17:24 ` 2.6.23-rc3-mm1 Torsten Kaiser
2007-08-22 18:14   ` 2.6.23-rc3-mm1 Andrew Morton
2007-08-22 17:26 ` 2.6.23-rc3-mm1: locking boot-time self-test failure Mariusz Kozlowski
2007-08-22 21:27   ` Frederik Deweerdt
2007-08-22 17:30 ` 2.6.23-rc3-mm1: WARNING: during resume from suspend on x86_64 Rafael J. Wysocki
2007-08-22 18:03 ` 2.6.23-rc3-mm1 Randy Dunlap
2007-08-22 18:32   ` 2.6.23-rc3-mm1 Andrew Morton
2007-08-22 19:38     ` 2.6.23-rc3-mm1 Andi Kleen
2007-08-22 19:17       ` 2.6.23-rc3-mm1 Randy Dunlap
2007-08-22 20:53         ` 2.6.23-rc3-mm1 Andi Kleen
2007-08-22 20:03           ` 2.6.23-rc3-mm1 Randy Dunlap
2007-08-22 21:14             ` 2.6.23-rc3-mm1 Andi Kleen
2007-08-22 20:37               ` 2.6.23-rc3-mm1 Randy Dunlap
2007-08-22 19:04 ` 2.6.23-rc3-mm1: kgdb build failure on powerpc Mariusz Kozlowski
2007-08-22 19:47   ` Andrew Morton
2007-08-22 22:44     ` [Kgdb-bugreport] " Jason Wessel
2007-08-22 23:53       ` Andrew Morton
2007-08-23  3:25         ` Jason Wessel
2007-08-29 23:43           ` Pete/Piet Delaney
2007-08-30  0:05             ` Pete/Piet Delaney
2007-08-30  1:19             ` Pete/Piet Delaney
2007-08-30  1:38               ` Randy Dunlap
2007-08-30  2:07               ` Jason Wessel
2007-08-30  2:13               ` Jason Wessel
2007-08-22 19:16 ` 2.6.23-rc3-mm1: net/wireless/rt2x00mac.c build failure Mariusz Kozlowski
2007-08-22 19:31   ` Ivo van Doorn
2007-08-22 19:54     ` Mariusz Kozlowski
2007-08-22 20:12       ` Ivo van Doorn
2007-08-22 20:22         ` Rafael J. Wysocki
2007-08-22 19:58     ` John W. Linville
2007-08-22 20:23 ` 2.6.23-rc3-mm1: inlining failures in sound/pci/hda/hda_codec.c Mariusz Kozlowski
2007-08-22 21:07   ` Takashi Iwai
2007-08-22 21:18     ` Mariusz Kozlowski
2007-08-22 21:44     ` Adrian Bunk
2007-08-22 20:25 ` [-mm patch] enforce noreplace-smp in alternative_instructions() Frederik Deweerdt
2007-08-23 21:50   ` Andrew Morton
2007-08-24  6:04     ` Frederik Deweerdt
2007-08-24  6:46       ` Jeremy Fitzhardinge
2007-08-24  8:22         ` Frederik Deweerdt
2007-08-25 12:07           ` Rusty Russell
2007-08-25 12:23             ` Frederik Deweerdt
2007-08-25 21:14               ` Frederik Deweerdt
2007-08-27 16:09                 ` [PATCH] Fix lguest page-pinning logic ("lguest: bad stack page 0xc057a000") Rusty Russell
2007-08-30 16:38                   ` Frederik Deweerdt [this message]
2007-08-30 22:12                     ` Rusty Russell
2007-08-30 22:14                     ` [PATCH] Fix out-by-one error in traps.c Rusty Russell
2007-08-31  4:44                       ` Linus Torvalds
2007-08-31  6:03                         ` Rusty Russell
2007-08-31  7:51                           ` Linus Torvalds
2007-08-31 17:37                             ` Rusty Russell
2007-08-31 18:24                               ` Linus Torvalds
2007-09-04 18:18                                 ` Rusty Russell
2007-08-23 23:16   ` [-mm patch] enforce noreplace-smp in alternative_instructions() Jeremy Fitzhardinge
2007-08-24  6:06     ` Frederik Deweerdt
2007-08-22 23:30 ` drivers/char/nozomi.c - compile error ( Re: 2.6.23-rc3-mm1 ) Gabriel C
2007-08-23  3:45   ` Randy Dunlap
2007-08-22 23:34 ` fs/xfs/xfs_bmap_btree.c - compile error (Re: 2.6.23-rc3-mm1) Gabriel C
2007-08-23  3:47   ` Randy Dunlap
2007-08-23  2:08 ` 2.6.23-rc3-mm1 - memory layout change? - lost support for MAP_32BIT? - mono crashes Zan Lynx
2007-08-23  6:57   ` Andrew Morton
2007-08-23  9:28   ` Jiri Kosina
2007-08-23 17:32     ` Zan Lynx
2007-08-23 23:52     ` Andrew Morton
2007-08-24  0:09       ` Jiri Kosina
2007-08-24 16:17         ` Arjan van de Ven
2007-08-23 11:24 ` x86_64-dynticks-disable-hpet_id_legsup-hpets.patch hangs the system Gautham R Shenoy
2007-08-23 20:47   ` Andrew Morton
2007-08-23 20:56     ` Thomas Gleixner
2007-08-23 13:33 ` 2.6.23-rc3-mm1 - irda goes belly up Valdis.Kletnieks
2007-08-23 17:37   ` Alexey Dobriyan
2007-08-23 18:45     ` Valdis.Kletnieks
2007-08-23 21:16   ` Andrew Morton
2007-08-24  3:11     ` Eric W. Biederman
2007-08-24  3:46     ` Eric W. Biederman
2007-08-24  3:53     ` [PATCH 1/2] sysctl: Properly register the irda binary sysctl numbers Eric W. Biederman
2007-08-24  3:55       ` [PATCH 2/2] sysctl: For irda update sysctl_checks list of binary paths Eric W. Biederman
2007-08-26 22:03         ` Samuel Ortiz
2007-08-25  8:29       ` [PATCH 1/2] sysctl: Properly register the irda binary sysctl numbers Valdis.Kletnieks
2007-08-25 12:57         ` Eric W. Biederman
2007-08-25 14:07           ` Valdis.Kletnieks
2007-08-25 17:59             ` Eric W. Biederman
2007-08-28 18:40               ` Valdis.Kletnieks
2007-08-28 21:06                 ` Eric W. Biederman
2007-08-25 18:03             ` [PATCH] sysctl: Update sysctl_check to handle compiled out code Eric W. Biederman
2007-08-28 18:44               ` Valdis.Kletnieks
2007-08-26 22:02       ` [PATCH 1/2] sysctl: Properly register the irda binary sysctl numbers Samuel Ortiz
2007-08-24 23:27 ` 2.6.23-rc3-mm1 Tilman Schmidt
2007-08-25  0:07   ` 2.6.23-rc3-mm1 Andrew Morton
2007-08-25  0:13     ` 2.6.23-rc3-mm1 Pallipadi, Venkatesh
2007-08-25  0:38       ` 2.6.23-rc3-mm1 Pallipadi, Venkatesh
2007-08-25 23:26         ` 2.6.23-rc3-mm1 Tilman Schmidt
2007-08-25 23:57           ` 2.6.23-rc3-mm1 Randy Dunlap
2007-08-27 13:35             ` 2.6.23-rc3-mm1 Tilman Schmidt
2007-08-25  0:14     ` 2.6.23-rc3-mm1 Dave Jones
2007-08-25  0:21     ` 2.6.23-rc3-mm1 john stultz
2007-08-25 22:39       ` 2.6.23-rc3-mm1 Tilman Schmidt
2007-08-25  0:47     ` 2.6.23-rc3-mm1 Tilman Schmidt
2007-08-25  3:30       ` 2.6.23-rc3-mm1 Andrew Morton
2007-08-25  4:28         ` 2.6.23-rc3-mm1 Dave Jones
2007-08-25  7:55           ` 2.6.23-rc3-mm1 Paul Rolland
2007-08-25 23:37             ` 2.6.23-rc3-mm1 Tilman Schmidt
2007-09-05 20:41         ` Clock trouble retest results with 2.6.23-rc4-mm1 (was: 2.6.23-rc3-mm1) Tilman Schmidt
2007-08-26 13:04 ` X freezes kernel during exit [Re: 2.6.23-rc3-mm1] Jiri Slaby
2007-08-28 11:41   ` Jiri Slaby
2007-09-09 11:44     ` Jiri Slaby
2007-09-09 12:47       ` Andrew Morton
2007-09-09 13:04         ` Jiri Slaby
2007-09-09 14:08         ` Jiri Slaby
2007-09-09 14:17           ` Andi Kleen
2007-09-09 14:26             ` Jiri Slaby
2007-09-09 14:33               ` Andi Kleen
2007-09-09 14:35                 ` Jiri Slaby
2007-09-09 14:43                 ` Jiri Slaby
2007-09-09 15:01                   ` Andi Kleen
2007-09-09 15:49                     ` Jiri Slaby
2007-09-11 15:18                       ` Dave Airlie
2007-09-17 11:09                   ` Jiri Slaby
2007-08-27 21:27 ` [-mm patch] make "struct menu_governor" static (again) Adrian Bunk
2007-08-27 22:32   ` Adam Belay
2007-08-27 21:27 ` [-mm patch] remove parport_device_num() Adrian Bunk
2007-08-27 21:27 ` [-mm patch] make do_restart_poll() static Adrian Bunk
2007-08-27 21:27 ` [-mm patch] unexport snd_ctl_elem_{read,write} Adrian Bunk
2007-08-27 21:27 ` [-mm patch] unexport sys_{open,read} Adrian Bunk
2007-08-27 22:53   ` Arjan van de Ven
2007-08-27 23:17     ` Adrian Bunk
2007-08-27 21:27 ` 2.6.23-rc3-mm1: m32r defconfig compile error Adrian Bunk
2007-08-28  3:50   ` Hirokazu Takata
2007-08-27 21:27 ` [-mm patch] remove unwind exports Adrian Bunk
2007-08-27 21:28 ` [-mm patch] unexport noautodma Adrian Bunk
2007-08-27 21:28 ` [-mm patch] mousedev.c:mixdev_open_devices() bugfix Adrian Bunk
2007-08-27 21:29 ` [-mm patch] ivtv-fb.c bugfix Adrian Bunk
2007-08-28  6:30   ` [v4l-dvb-maintainer] " Hans Verkuil
2007-08-27 21:29 ` [-mm patch] iwl-base.c bugfixes Adrian Bunk
2007-08-27 22:34   ` Tomas Winkler
2007-08-27 21:29 ` 2.6.23-rc3-mm1: i386: -maccumulate-outgoing-args unconditionally Adrian Bunk
2007-08-28 11:32 ` oops at sr_block_release [Re: 2.6.23-rc3-mm1] Jiri Slaby
2007-08-28 15:08   ` Satyam Sharma
2007-08-28 15:21     ` Jiri Slaby
2007-08-29  2:58   ` Andrew Morton
2007-08-29 14:04 ` 2.6.23-rc3-mm1 Valdis.Kletnieks
2007-08-29 17:37   ` 2.6.23-rc3-mm1 - vdso and gettimeofday issues with glibc Valdis.Kletnieks
2007-08-29 23:15     ` Andrew Morton
2007-08-30  2:46       ` Ulrich Drepper
2007-08-30 14:08       ` Valdis.Kletnieks
2007-08-31 21:21         ` Chuck Ebbert
2007-08-30 16:27       ` Chuck Ebbert
2007-09-09  0:24         ` Valdis.Kletnieks
2007-09-09  7:27           ` Andi Kleen
2007-09-10 19:07             ` Valdis.Kletnieks
2007-08-30 16:30       ` Chuck Ebbert
2007-09-01 10:07         ` Andi Kleen
2007-09-07 19:39           ` Chuck Ebbert
2007-09-08  8:57             ` Andi Kleen
2007-09-09  3:20               ` Valdis.Kletnieks
  -- strict thread matches above, loose matches on Subject: below --
2007-08-29 20:35 [PATCH] Fix lguest page-pinning logic ("lguest: bad stack page 0xc057a000") Rusty Russell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070830163812.GA22190@slug \
    --to=deweerdt@free.fr \
    --cc=akpm@linux-foundation.org \
    --cc=lguest@ozlabs.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rusty@rustcorp.com.au \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox