Source-Changes-HG archive

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

[src/trunk]: src/sys/fs/nfs/common Remove unused (and a reference to ovbcopy ...



details:   https://anonhg.NetBSD.org/src/rev/3cdef8c6a2e0
branches:  trunk
changeset: 829461:3cdef8c6a2e0
user:      maxv <maxv%NetBSD.org@localhost>
date:      Thu Feb 01 17:22:45 2018 +0000

description:
Remove unused (and a reference to ovbcopy along the way).

diffstat:

 sys/fs/nfs/common/nfsport.h |  6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diffs (31 lines):

diff -r 439c131f9521 -r 3cdef8c6a2e0 sys/fs/nfs/common/nfsport.h
--- a/sys/fs/nfs/common/nfsport.h       Thu Feb 01 17:16:11 2018 +0000
+++ b/sys/fs/nfs/common/nfsport.h       Thu Feb 01 17:22:45 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: nfsport.h,v 1.3 2016/12/13 22:52:46 pgoyette Exp $     */
+/*     $NetBSD: nfsport.h,v 1.4 2018/02/01 17:22:45 maxv Exp $ */
 /*-
  * Copyright (c) 1989, 1993
  *     The Regents of the University of California.  All rights reserved.
@@ -31,7 +31,7 @@
  * SUCH DAMAGE.
  *
  * FreeBSD: head/sys/fs/nfs/nfsport.h 304026 2016-08-12 22:44:59Z rmacklem 
- * $NetBSD: nfsport.h,v 1.3 2016/12/13 22:52:46 pgoyette Exp $
+ * $NetBSD: nfsport.h,v 1.4 2018/02/01 17:22:45 maxv Exp $
  */
 
 #ifndef _NFS_NFSPORT_H_
@@ -751,12 +751,10 @@
 /*
  * Macros for handling memory for different BSDen.
  * NFSBCOPY(src, dst, len) - copies len bytes, non-overlapping
- * NFSOVBCOPY(src, dst, len) - ditto, but data areas might overlap
  * NFSBCMP(cp1, cp2, len) - compare len bytes, return 0 if same
  * NFSBZERO(cp, len) - set len bytes to 0x0
  */
 #define        NFSBCOPY(s, d, l)       bcopy((s), (d), (l))
-#define        NFSOVBCOPY(s, d, l)     ovbcopy((s), (d), (l))
 #define        NFSBCMP(s, d, l)        bcmp((s), (d), (l))
 #define        NFSBZERO(s, l)          bzero((s), (l))
 



Home | Main Index | Thread Index | Old Index