Thu May 27 08:58:29 2021 UTC ()
Remove nfs_putpages() prototype; it's not defined anywhere.


(simonb)
diff -r1.73 -r1.74 src/sys/nfs/nfsnode.h

cvs diff -r1.73 -r1.74 src/sys/nfs/nfsnode.h (expand / switch to unified diff)

--- src/sys/nfs/nfsnode.h 2014/05/30 08:47:45 1.73
+++ src/sys/nfs/nfsnode.h 2021/05/27 08:58:29 1.74
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: nfsnode.h,v 1.73 2014/05/30 08:47:45 hannken Exp $ */ 1/* $NetBSD: nfsnode.h,v 1.74 2021/05/27 08:58:29 simonb Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1989, 1993 4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved. 5 * The Regents of the University of California. All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to Berkeley by 7 * This code is derived from software contributed to Berkeley by
8 * Rick Macklem at The University of Guelph. 8 * Rick Macklem at The University of Guelph.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
@@ -270,23 +270,22 @@ int nfs_readdir(void *); @@ -270,23 +270,22 @@ int nfs_readdir(void *);
270int nfs_readlink(void *); 270int nfs_readlink(void *);
271#define nfs_abortop genfs_abortop 271#define nfs_abortop genfs_abortop
272int nfs_inactive(void *); 272int nfs_inactive(void *);
273int nfs_reclaim(void *); 273int nfs_reclaim(void *);
274#define nfs_lock genfs_lock 274#define nfs_lock genfs_lock
275int nfs_unlock(void *); 275int nfs_unlock(void *);
276#define nfs_islocked genfs_islocked 276#define nfs_islocked genfs_islocked
277int nfs_bmap(void *); 277int nfs_bmap(void *);
278int nfs_strategy(void *); 278int nfs_strategy(void *);
279int nfs_print(void *); 279int nfs_print(void *);
280int nfs_pathconf(void *); 280int nfs_pathconf(void *);
281int nfs_advlock(void *); 281int nfs_advlock(void *);
282int nfs_getpages(void *); 282int nfs_getpages(void *);
283int nfs_putpages(void *); 
284int nfs_kqfilter(void *); 283int nfs_kqfilter(void *);
285 284
286extern int (**nfsv2_vnodeop_p)(void *); 285extern int (**nfsv2_vnodeop_p)(void *);
287 286
288#define NFS_INVALIDATE_ATTRCACHE(np) (np)->n_attrstamp = 0 287#define NFS_INVALIDATE_ATTRCACHE(np) (np)->n_attrstamp = 0
289 288
290#endif /* _KERNEL */ 289#endif /* _KERNEL */
291 290
292#endif 291#endif