Author: glebius
Date: Sat Sep  7 07:56:55 2013
New Revision: 255352
URL: http://svnweb.freebsd.org/changeset/base/255352

Log:
  Fix of r255318: move sf_buf_alloc()/sf_buf_free() out of #ifdef
  ARM_USE_SMALL_ALLOC.

Modified:
  head/sys/arm/include/sf_buf.h

Modified: head/sys/arm/include/sf_buf.h
==============================================================================
--- head/sys/arm/include/sf_buf.h       Sat Sep  7 07:53:21 2013        
(r255351)
+++ head/sys/arm/include/sf_buf.h       Sat Sep  7 07:56:55 2013        
(r255352)
@@ -40,9 +40,6 @@ struct vm_page;
 
 struct sf_buf;
 
-struct sf_buf *        sf_buf_alloc(struct vm_page *m, int flags);
-void sf_buf_free(struct sf_buf *sf);
-
 static __inline vm_offset_t
 sf_buf_kva(struct sf_buf *sf)
 {
@@ -82,4 +79,8 @@ sf_buf_page(struct sf_buf *sf)
 }
 
 #endif
+
+struct sf_buf *        sf_buf_alloc(struct vm_page *m, int flags);
+void sf_buf_free(struct sf_buf *sf);
+
 #endif /* !_MACHINE_SF_BUF_H_ */
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to