mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [miniPATCH] 2.5.44 fix compilation errors in the AFS fs
@ 2002-10-23  9:56 Jan Marek
  2002-10-23 10:28 ` Alan Cox
  0 siblings, 1 reply; 6+ messages in thread
From: Jan Marek @ 2002-10-23  9:56 UTC (permalink / raw)
  To: linux-kernel

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

Hallo lkml,

I'm sending 2 patches to fix compilation errors in the AFS fs.

The first of them fixed union afs_dirent_t and using this union in the
fs/afs/dir.c.

The second of them fix number of parameters of calling function kleave()
in the net/rxpc/main.c.

Sincerely
Jan Marek
-- 
Ing. Jan Marek
University of South Bohemia
Academic Computer Centre
Phone: +420-38-7772080

[-- Attachment #2: fs_afs_dirc.patch --]
[-- Type: text/plain, Size: 1142 bytes --]

--- linux-2.5.44/fs/afs/dir.c.old	2002-10-23 11:35:12.000000000 +0200
+++ linux-2.5.44/fs/afs/dir.c	2002-10-23 11:39:57.000000000 +0200
@@ -72,7 +72,7 @@
 		u8	name[16];
 		u8	overflow[4];	/* if any char of the name (inc NUL) reaches here, consume
 					 * the next dirent too */
-	};
+	} parts;
 	u8	extended_name[32];
 } afs_dirent_t;
 
@@ -258,7 +258,7 @@
 
 		/* got a valid entry */
 		dire = &block->dirents[offset];
-		nlen = strnlen(dire->name,sizeof(*block) - offset*sizeof(afs_dirent_t));
+		nlen = strnlen(dire->parts.name,sizeof(*block) - offset*sizeof(afs_dirent_t));
 
 		_debug("ENT[%u.%u]: %s %u \"%.*s\"\n",
 		       blkoff/sizeof(afs_dir_block_t),offset,
@@ -290,11 +290,11 @@
 
 		/* found the next entry */
 		ret = filldir(cookie,
-			      dire->name,
+			      dire->parts.name,
 			      nlen,
 			      blkoff + offset * sizeof(afs_dirent_t),
-			      ntohl(dire->vnode),
-			      filldir==afs_dir_lookup_filldir ? dire->unique : DT_UNKNOWN);
+			      ntohl(dire->parts.vnode),
+			      filldir==afs_dir_lookup_filldir ? dire->parts.unique : DT_UNKNOWN);
 		if (ret<0) {
 			_leave(" = 0 [full]");
 			return 0;

[-- Attachment #3: net_rxpc_mainc.patch --]
[-- Type: text/plain, Size: 394 bytes --]

--- linux-2.5.44/net/rxrpc/main.c.old	2002-10-23 11:44:45.000000000 +0200
+++ linux-2.5.44/net/rxrpc/main.c	2002-10-23 11:45:41.000000000 +0200
@@ -123,5 +123,5 @@
 	__RXACCT(printk("Outstanding Peers      : %d\n",atomic_read(&rxrpc_peer_count)));
 	__RXACCT(printk("Outstanding Transports : %d\n",atomic_read(&rxrpc_transport_count)));
 
-	kleave();
+	kleave("");
 } /* end rxrpc_cleanup() */

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2002-10-23 12:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-23  9:56 [miniPATCH] 2.5.44 fix compilation errors in the AFS fs Jan Marek
2002-10-23 10:28 ` Alan Cox
2002-10-23 10:42   ` Alex Riesen
2002-10-23 11:53     ` Alan Cox
2002-10-23 10:44   ` Adrian Bunk
2002-10-23 13:16   ` David S. Miller

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

all inboxes | Powered by JetHome®