* Linux 2.4.11-pre2
@ 2001-10-01 21:39 Linus Torvalds
2001-10-01 22:10 ` Alessandro Suardi
2001-10-01 22:18 ` henrik
0 siblings, 2 replies; 9+ messages in thread
From: Linus Torvalds @ 2001-10-01 21:39 UTC (permalink / raw)
To: Kernel Mailing List
Available in the usual places..
Linus
---
pre2:
- me/Al Viro: fix bdget() oops with block device modules that don't
clean up after they exit
- Alan Cox: continued merging (drivers, license tags)
- David Miller: sparc update, network fixes
- Christoph Hellwig: work around broken drivers that add a gendisk more
than once
- Jakub Jelinek: handle more ELF loading special cases
- Trond Myklebust: NFS client and lockd reclaimer cleanups/fixes
- Greg KH: USB updates
- Mikael Pettersson: sparate out local APIC / IO-APIC config options
pre1:
- Chris Mason: fix ppp race conditions
- me: buffers-in-pagecache coherency, buffer.c cleanups
- Al Viro: block device cleanups/fixes
- Anton Altaparmakov: NTFS 1.1.20 update
- Andrea Arcangeli: VM tweaks
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Linux 2.4.11-pre2
2001-10-01 21:39 Linux 2.4.11-pre2 Linus Torvalds
@ 2001-10-01 22:10 ` Alessandro Suardi
2001-10-01 22:18 ` henrik
1 sibling, 0 replies; 9+ messages in thread
From: Alessandro Suardi @ 2001-10-01 22:10 UTC (permalink / raw)
To: Linus Torvalds; +Cc: Kernel Mailing List
Linus Torvalds wrote:
>
> Available in the usual places..
>
There is a leftover wakeup_bdflush(0) in sysrq.c, I guess
it should be wakeup_bdflush(). Well at least it builds
after the above fix :)
--alessandro
"this is no time to get cute, it's a mad dog's promenade
so walk tall, or baby don't walk at all"
(Bruce Springsteen, 'New York City Serenade')
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: Linux 2.4.11-pre2
2001-10-01 21:39 Linux 2.4.11-pre2 Linus Torvalds
2001-10-01 22:10 ` Alessandro Suardi
@ 2001-10-01 22:18 ` henrik
2001-10-02 11:50 ` Alan Ford
1 sibling, 1 reply; 9+ messages in thread
From: henrik @ 2001-10-01 22:18 UTC (permalink / raw)
To: linux-kernel
I get:
gcc -D__KERNEL__ -I/home/src/linux-2.4/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2 -march=i686 -DEXPORT_SYMTAB -c sysrq.c
sysrq.c: In function `sysrq_handle_mountro':
sysrq.c:234: too many arguments to function `wakeup_bdflush'
make[3]: *** [sysrq.o] Error 1
make[3]: Leaving directory `/home/src/linux-2.4/drivers/char'
Seems this patch to drivers/char/sysrq.c should not be in:
static void sysrq_handle_mountro(int key, struct pt_regs *pt_regs,
struct kbd_struct *kbd, struct tty_struct *tty) {
emergency_sync_scheduled = EMERG_REMOUNT;
- wakeup_bdflush();
+ wakeup_bdflush(0);
}
--
Henrik Storner <henrik@hswn.dk>
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: Linux 2.4.11-pre2
2001-10-01 22:18 ` henrik
@ 2001-10-02 11:50 ` Alan Ford
2001-10-02 12:39 ` Stephan von Krawczynski
0 siblings, 1 reply; 9+ messages in thread
From: Alan Ford @ 2001-10-02 11:50 UTC (permalink / raw)
To: linux-kernel
On Tue, Oct 02, 2001 at 12:18:16AM +0200, henrik@hswn.dk wrote:
> Seems this patch to drivers/char/sysrq.c should not be in:
While we're fixing typos in sysrq.c:
--- linux.vanilla/drivers/char/sysrq.c Tue Oct 2 12:46:39 2001
+++ linux/drivers/char/sysrq.c Tue Oct 2 12:47:15 2001
@@ -236,7 +236,7 @@
static struct sysrq_key_op sysrq_mountro_op = {
handler: sysrq_handle_mountro,
help_msg: "Unmount",
- action_msg: "Emergency Remount R/0\n",
+ action_msg: "Emergency Remount R/O\n",
};
/* END SYNC SYSRQ HANDLERS BLOCK */
--
Alan Ford * alan@whirlnet.co.uk
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: Linux 2.4.11-pre2
2001-10-02 11:50 ` Alan Ford
@ 2001-10-02 12:39 ` Stephan von Krawczynski
2001-10-02 12:53 ` Stephen Frost
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Stephan von Krawczynski @ 2001-10-02 12:39 UTC (permalink / raw)
To: Alan Ford; +Cc: linux-kernel
On Tue, 2 Oct 2001 12:50:40 +0100 Alan Ford <alan@whirlnet.co.uk> wrote:
> - action_msg: "Emergency Remount R/0\n",
> + action_msg: "Emergency Remount R/O\n",
What exactly do you want to fix with this patch?
Regards,
Stephan
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: Linux 2.4.11-pre2
2001-10-02 12:39 ` Stephan von Krawczynski
@ 2001-10-02 12:53 ` Stephen Frost
2001-10-02 12:59 ` Stephan von Krawczynski
2001-10-02 12:55 ` André Dahlqvist
2001-10-02 17:11 ` Josh Wyatt
2 siblings, 1 reply; 9+ messages in thread
From: Stephen Frost @ 2001-10-02 12:53 UTC (permalink / raw)
To: Stephan von Krawczynski; +Cc: Alan Ford, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 472 bytes --]
* Stephan von Krawczynski (skraw@ithnet.com) wrote:
> On Tue, 2 Oct 2001 12:50:40 +0100 Alan Ford <alan@whirlnet.co.uk> wrote:
>
> > - action_msg: "Emergency Remount R/0\n",
> > + action_msg: "Emergency Remount R/O\n",
>
> What exactly do you want to fix with this patch?
That changes 'R/0' (R slash Zero) to R/O (R slash O).
I think 'Read-Only' is what is meant in this 'action_msg'
and is probably better represented with 'R/O' than 'R/0'.
Stephen
[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Linux 2.4.11-pre2
2001-10-02 12:53 ` Stephen Frost
@ 2001-10-02 12:59 ` Stephan von Krawczynski
0 siblings, 0 replies; 9+ messages in thread
From: Stephan von Krawczynski @ 2001-10-02 12:59 UTC (permalink / raw)
To: Stephen Frost; +Cc: alan, linux-kernel
On Tue, 2 Oct 2001 08:53:27 -0400 Stephen Frost <sfrost@snowman.net> wrote:
> * Stephan von Krawczynski (skraw@ithnet.com) wrote:
> > On Tue, 2 Oct 2001 12:50:40 +0100 Alan Ford <alan@whirlnet.co.uk> wrote:
> >
> > > - action_msg: "Emergency Remount R/0\n",
> > > + action_msg: "Emergency Remount R/O\n",
> >
> > What exactly do you want to fix with this patch?
>
> That changes 'R/0' (R slash Zero) to R/O (R slash O).
> I think 'Read-Only' is what is meant in this 'action_msg'
> and is probably better represented with 'R/O' than 'R/0'.
Sorry for asking. I could not determine the difference in my on-screen font.
Regards,
Stephan
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Linux 2.4.11-pre2
2001-10-02 12:39 ` Stephan von Krawczynski
2001-10-02 12:53 ` Stephen Frost
@ 2001-10-02 12:55 ` André Dahlqvist
2001-10-02 17:11 ` Josh Wyatt
2 siblings, 0 replies; 9+ messages in thread
From: André Dahlqvist @ 2001-10-02 12:55 UTC (permalink / raw)
To: linux-kernel
Stephan von Krawczynski <skraw@ithnet.com> wrote:
> > - action_msg: "Emergency Remount R/0\n",
> > + action_msg: "Emergency Remount R/O\n",
>
> What exactly do you want to fix with this patch?
If you look closely you'll see that he changed '0' to 'O'.
--
André Dahlqvist <andre.dahlqvist@telia.com>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Linux 2.4.11-pre2
2001-10-02 12:39 ` Stephan von Krawczynski
2001-10-02 12:53 ` Stephen Frost
2001-10-02 12:55 ` André Dahlqvist
@ 2001-10-02 17:11 ` Josh Wyatt
2 siblings, 0 replies; 9+ messages in thread
From: Josh Wyatt @ 2001-10-02 17:11 UTC (permalink / raw)
To: Stephan von Krawczynski; +Cc: Alan Ford, linux-kernel
Stephan von Krawczynski wrote:
>
> On Tue, 2 Oct 2001 12:50:40 +0100 Alan Ford <alan@whirlnet.co.uk> wrote:
>
> > - action_msg: "Emergency Remount R/0\n",
> > + action_msg: "Emergency Remount R/O\n",
>
> What exactly do you want to fix with this patch?
Disclaimer: It ain't my patch :) .
But it looks like the old version used a "0" (zero) in R/O, and the new
version uses an "O" (oh).
> Regards,
> Stephan
Regards,
Josh
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2001-10-02 17:10 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-01 21:39 Linux 2.4.11-pre2 Linus Torvalds
2001-10-01 22:10 ` Alessandro Suardi
2001-10-01 22:18 ` henrik
2001-10-02 11:50 ` Alan Ford
2001-10-02 12:39 ` Stephan von Krawczynski
2001-10-02 12:53 ` Stephen Frost
2001-10-02 12:59 ` Stephan von Krawczynski
2001-10-02 12:55 ` André Dahlqvist
2001-10-02 17:11 ` Josh Wyatt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox