linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: margitsw@t-online.de (Margit Schubert-While)
To: linux-kernel@vger.kernel.org
Subject: Re: Linux 2.4.22-pre3
Date: Sun, 06 Jul 2003 10:36:20 +0200	[thread overview]
Message-ID: <5.1.0.14.2.20030706094227.00af09f8@pop.t-online.de> (raw)

[-- Attachment #1: Type: text/plain, Size: 1031 bytes --]

Erros/unresolved as below.
Attached patch fixes sdla_chdlc, sbni and mark_page_accessed.
The sonyapi I don't know. Seems like we should export acpi_disabled in
kernel/setup.c.
The comx is an ongoing fight :-)

Margit


sdla_chdlc.c:594:43: missing terminating " character
sdla_chdlc.c: In function `wpc_init':
sdla_chdlc.c:595: error: parse error before "Failed"
sdla_chdlc.c:595: error: stray '\' in program
sdla_chdlc.c:595:68: missing terminating " character
make[3]: *** [sdla_chdlc.o] Error 1

sbni.c: In function `calc_crc32':
sbni.c:1558: error: asm-specifier for variable `_crc' conflicts with asm 
clobber list
make[3]: *** [sbni.o] Error 1

depmod: *** Unresolved symbols in 
/lib/modules/2.4.22-pre3/kernel/drivers/char/sonypi.o
depmod:         acpi_disabled
depmod: *** Unresolved symbols in 
/lib/modules/2.4.22-pre3/kernel/drivers/net/wan/comx.o
depmod:         proc_get_inode
depmod: *** Unresolved symbols in 
/lib/modules/2.4.22-pre3/kernel/fs/hfsplus/hfsplus.o
depmod:         mark_page_accessed


         Margit

[-- Attachment #2: patchpre3 --]
[-- Type: application/octet-stream, Size: 2006 bytes --]

diff -Naur linux-2.4.22pre2/drivers/net/wan/sbni.c linux-2.4.22pre2mw0/drivers/net/wan/sbni.c
--- linux-2.4.22pre2/drivers/net/wan/sbni.c	2002-11-29 00:53:14.000000000 +0100
+++ linux-2.4.22pre2mw0/drivers/net/wan/sbni.c	2003-07-04 18:26:26.000000000 +0200
@@ -1552,13 +1552,13 @@
 static u32
 calc_crc32( u32  crc,  u8  *p,  u32  len )
 {
-	register u32  _crc __asm ( "ax" );
+	register u32  _crc;
 	_crc = crc;
 	
 	__asm __volatile (
 		"xorl	%%ebx, %%ebx\n"
-		"movl	%1, %%esi\n" 
-		"movl	%2, %%ecx\n" 
+		"movl	%2, %%esi\n" 
+		"movl	%3, %%ecx\n" 
 		"movl	$crc32tab, %%edi\n"
 		"shrl	$2, %%ecx\n"
 		"jz	1f\n"
@@ -1594,7 +1594,7 @@
 		"jnz	0b\n"
 
 	"1:\n"
-		"movl	%2, %%ecx\n"
+		"movl	%3, %%ecx\n"
 		"andl	$3, %%ecx\n"
 		"jz	2f\n"
 
@@ -1619,9 +1619,9 @@
 		"xorb	2(%%esi), %%bl\n"
 		"xorl	(%%edi,%%ebx,4), %%eax\n"
 	"2:\n"
-		:
-		: "a" (_crc), "g" (p), "g" (len)
-		: "ax", "bx", "cx", "dx", "si", "di"
+		: "=a" (_crc)
+		: "0" (_crc), "g" (p), "g" (len)
+		: "bx", "cx", "dx", "si", "di"
 	);
 
 	return  _crc;
diff -Naur linux-2.4.22pre2/drivers/net/wan/sdla_chdlc.c linux-2.4.22pre2mw0/drivers/net/wan/sdla_chdlc.c
--- linux-2.4.22pre2/drivers/net/wan/sdla_chdlc.c	2002-11-29 00:53:14.000000000 +0100
+++ linux-2.4.22pre2mw0/drivers/net/wan/sdla_chdlc.c	2003-07-04 17:20:19.000000000 +0200
@@ -591,8 +591,7 @@
 	
 
 		if (chdlc_set_intr_mode(card, APP_INT_ON_TIMER)){
-			printk (KERN_INFO "%s: 
-				Failed to set interrupt triggers!\n",
+			printk (KERN_INFO "%s: Failed to set interrupt triggers!\n",
 				card->devname);
 			return -EIO;	
         	}
diff -Naur linux-2.4.22pre2/mm/filemap.c linux-2.4.22pre2mw0/mm/filemap.c
--- linux-2.4.22pre2/mm/filemap.c	2003-06-30 09:52:45.000000000 +0200
+++ linux-2.4.22pre2mw0/mm/filemap.c	2003-07-05 15:22:40.000000000 +0200
@@ -1338,6 +1338,8 @@
 		SetPageReferenced(page);
 }
 
+EXPORT_SYMBOL(mark_page_accessed);
+
 /*
  * This is a generic file read routine, and uses the
  * inode->i_op->readpage() function for the actual low-level

             reply	other threads:[~2003-07-06  8:21 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-07-06  8:36 Margit Schubert-While [this message]
  -- strict thread matches above, loose matches on Subject: below --
2003-07-06 10:48 Linux 2.4.22-pre3 Margit Schubert-While
2003-07-06  1:02 Marcelo Tosatti
2003-07-06  5:55 ` Aschwin Marsman
2003-07-06 13:41 ` Ben Collins
2003-07-07  1:00   ` Marcelo Tosatti
2003-07-07  1:05     ` Larry McVoy
2003-07-07  0:11       ` Ben Collins
2003-07-08 18:05       ` Adrian Bunk
2003-07-08 19:18         ` Jeff Garzik
2003-07-10 15:15           ` Larry McVoy
2003-07-10 14:12             ` Ben Collins
2003-07-06 16:35 ` Matthias Andree
2003-07-07 19:34 ` Lukasz Trabinski
2003-07-07 20:10   ` Chris Mason
2003-07-07 21:35     ` Lukasz Trabinski
2003-07-08 16:59 ` Jim Gifford
2003-07-08 20:38   ` Marcelo Tosatti
2003-07-08 21:36     ` Jim Gifford
2003-07-08 22:23       ` Alan Cox
2003-07-08 22:46         ` Jim Gifford
2003-07-09 17:33           ` Marcelo Tosatti
     [not found]             ` <064101c34644$3d917850$3400a8c0@W2RZ8L4S02>
2003-07-10  3:27               ` Marcelo Tosatti
     [not found]                 ` <042801c3472c$f4539f80$3400a8c0@W2RZ8L4S02>
     [not found]                   ` <Pine.LNX.4.55L.0307110953370.28177@freak.distro.conectiva>
     [not found]                     ` <06e301c347c7$2a779590$3400a8c0@W2RZ8L4S02>
2003-07-11 17:06                       ` Marcelo Tosatti
2003-07-11 20:15                         ` Jim Gifford
2003-07-11 20:49                           ` Marcelo Tosatti
2003-07-11 13:03 ` Geert Uytterhoeven
2003-07-11 13:10   ` Benjamin Herrenschmidt

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=5.1.0.14.2.20030706094227.00af09f8@pop.t-online.de \
    --to=margitsw@t-online.de \
    --cc=linux-kernel@vger.kernel.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;
as well as URLs for NNTP newsgroup(s).