]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/buf.h
xnu-1504.7.4.tar.gz
[apple/xnu.git] / bsd / sys / buf.h
index d2a988d0939e455acde49b450fe8909c1103b24e..80bf3d3848880ae0b51001f57a877ab173dc7532 100644 (file)
@@ -968,6 +968,22 @@ buf_t      buf_getblk(vnode_t, daddr64_t, int, int, int, int);
 buf_t  buf_geteblk(int);
 #ifdef KERNEL_PRIVATE
 void   buf_setfilter(buf_t, void (*)(buf_t, void *), void *, void **, void **);
+
+/*!
+ @function buf_getcpaddr
+ @abstract Set the address of cp_entry on a buffer.
+ @param bp Buffer whose cp entry value has to be set
+ @return void.
+ */
+void buf_setcpaddr(buf_t, void *);
+
+/*!
+ @function buf_getcpaddr
+ @abstract Get the address of cp_entry on a buffer.
+ @param bp Buffer whose error value to set.
+ @return int.
+ */
+void *buf_getcpaddr(buf_t);
 #endif /* KERNEL_PRIVATE */