diff --git a/usr.sbin/puffs/mount_9p/ninebuf.c b/usr.sbin/puffs/mount_9p/ninebuf.c index 5aa3a6e2e330..aae56c60867e 100644 --- a/usr.sbin/puffs/mount_9p/ninebuf.c +++ b/usr.sbin/puffs/mount_9p/ninebuf.c @@ -1,4 +1,4 @@ -/* $NetBSD: ninebuf.c,v 1.6 2007/05/20 16:24:37 pooka Exp $ */ +/* $NetBSD: ninebuf.c,v 1.7 2007/09/06 16:09:09 pooka Exp $ */ /* * Copyright (c) 2006, 2007 Antti Kantee. All Rights Reserved. @@ -27,7 +27,7 @@ #include #ifndef lint -__RCSID("$NetBSD: ninebuf.c,v 1.6 2007/05/20 16:24:37 pooka Exp $"); +__RCSID("$NetBSD: ninebuf.c,v 1.7 2007/09/06 16:09:09 pooka Exp $"); #endif /* !lint */ #include @@ -159,7 +159,7 @@ p9pbuf_write(struct puffs_usermount *pu, struct puffs_framebuf *pb, int p9pbuf_cmp(struct puffs_usermount *pu, - struct puffs_framebuf *c1, struct puffs_framebuf *c2) + struct puffs_framebuf *c1, struct puffs_framebuf *c2, int *notresp) { return p9pbuf_get_tag(c1) != p9pbuf_get_tag(c2); diff --git a/usr.sbin/puffs/mount_9p/ninepuffs.h b/usr.sbin/puffs/mount_9p/ninepuffs.h index 76f71925d05a..1e70c55858bd 100644 --- a/usr.sbin/puffs/mount_9p/ninepuffs.h +++ b/usr.sbin/puffs/mount_9p/ninepuffs.h @@ -1,4 +1,4 @@ -/* $NetBSD: ninepuffs.h,v 1.10 2007/07/17 10:06:04 pooka Exp $ */ +/* $NetBSD: ninepuffs.h,v 1.11 2007/09/06 16:09:10 pooka Exp $ */ /* * Copyright (c) 2007 Antti Kantee. All Rights Reserved. @@ -124,7 +124,7 @@ void p9pbuf_recycleout(struct puffs_framebuf *); int p9pbuf_read(struct puffs_usermount *, struct puffs_framebuf *,int,int*); int p9pbuf_write(struct puffs_usermount *, struct puffs_framebuf*,int,int*); int p9pbuf_cmp(struct puffs_usermount *, - struct puffs_framebuf *, struct puffs_framebuf *); + struct puffs_framebuf *, struct puffs_framebuf *, int *); void p9pbuf_put_1(struct puffs_framebuf *, uint8_t); void p9pbuf_put_2(struct puffs_framebuf *, uint16_t); diff --git a/usr.sbin/puffs/mount_psshfs/psbuf.c b/usr.sbin/puffs/mount_psshfs/psbuf.c index 21c7716cbaf7..325282bc2b7c 100644 --- a/usr.sbin/puffs/mount_psshfs/psbuf.c +++ b/usr.sbin/puffs/mount_psshfs/psbuf.c @@ -1,4 +1,4 @@ -/* $NetBSD: psbuf.c,v 1.11 2007/06/26 11:04:29 pooka Exp $ */ +/* $NetBSD: psbuf.c,v 1.12 2007/09/06 16:09:10 pooka Exp $ */ /* * Copyright (c) 2006, 2007 Antti Kantee. All Rights Reserved. @@ -27,7 +27,7 @@ #include #ifndef lint -__RCSID("$NetBSD: psbuf.c,v 1.11 2007/06/26 11:04:29 pooka Exp $"); +__RCSID("$NetBSD: psbuf.c,v 1.12 2007/09/06 16:09:10 pooka Exp $"); #endif /* !lint */ /* @@ -175,7 +175,7 @@ psbuf_write(struct puffs_usermount *pu, struct puffs_framebuf *pb, int psbuf_cmp(struct puffs_usermount *pu, - struct puffs_framebuf *cmp1, struct puffs_framebuf *cmp2) + struct puffs_framebuf *cmp1, struct puffs_framebuf *cmp2, int *notresp) { return psbuf_get_reqid(cmp1) != psbuf_get_reqid(cmp2); diff --git a/usr.sbin/puffs/mount_psshfs/psshfs.h b/usr.sbin/puffs/mount_psshfs/psshfs.h index 1d2676d119ce..559df732bf90 100644 --- a/usr.sbin/puffs/mount_psshfs/psshfs.h +++ b/usr.sbin/puffs/mount_psshfs/psshfs.h @@ -1,4 +1,4 @@ -/* $NetBSD: psshfs.h,v 1.23 2007/08/23 15:19:40 pooka Exp $ */ +/* $NetBSD: psshfs.h,v 1.24 2007/09/06 16:09:10 pooka Exp $ */ /* * Copyright (c) 2006, 2007 Antti Kantee. All Rights Reserved. @@ -160,7 +160,7 @@ int psshfs_domount(struct puffs_usermount *); int psbuf_read(struct puffs_usermount *, struct puffs_framebuf *,int,int*); int psbuf_write(struct puffs_usermount *, struct puffs_framebuf *,int,int*); int psbuf_cmp(struct puffs_usermount *, - struct puffs_framebuf *, struct puffs_framebuf *); + struct puffs_framebuf *, struct puffs_framebuf *, int *); struct puffs_framebuf *psbuf_makeout(void); void psbuf_recycleout(struct puffs_framebuf *);