tech-kern archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: Fixes for ffs/logging issues for 5.0, for review



>>> Andrew Doran <ad%netbsd.org@localhost> wrote

> Here is an updated version of the diff:
> 
>       http://www.netbsd.org/~ad/ffs-fixes4.diff

| @@ -70,8 +111,8 @@ vfs_allocate_syncvnode(mp)
|         struct mount *mp;
|  {
|         struct vnode *vp;
| -       static long start, incr, next;
| -       int error;
| +       static int start, incr, next;
| +       int error, delay;
|  
|         /* Allocate a new vnode */
|         if ((error = getnewvnode(VT_VFS, mp, sync_vnodeop_p, &vp)) != 0)

Variable named "delay" causes build error at least on sparc64.

-- Takeshi Nakayama


Home | Main Index | Thread Index | Old Index