adapt to new cmpfb signature

This commit is contained in:
pooka 2007-09-06 16:09:09 +00:00
parent 56b35d3b97
commit 08386a8ca4
4 changed files with 10 additions and 10 deletions

View File

@ -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 <sys/cdefs.h>
#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 <sys/types.h>
@ -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);

View File

@ -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);

View File

@ -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 <sys/cdefs.h>
#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);

View File

@ -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 *);