lkml.org 
[lkml]   [2002]   [Oct]   [31]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [miniPATCH] 2.5.4[4,5] AFS dir.c compile fix
Hallo,

On Thu, Oct 31, 2002 at 02:43:12PM +0100, Jan Marek wrote:
> Hallo,
>
> thist patch is needed for compile AFS with compiler gcc version prior
> 3.0. Have been accepted by Alan Cox in 2.5.44-ac3...
>
> Please apply...

:-( And here is patch... :-)

Sorry...

Sincerely
Jan Marek
--
Ing. Jan Marek
University of South Bohemia
Academic Computer Centre
Phone: +420-38-7772080
--- 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;
\
 
 \ /
  Last update: 2005-03-22 13:30    [W:0.091 / U:0.124 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site