svn commit: r270808 - head/sys/dev/ixl

Bjoern A. Zeeb bz at FreeBSD.org
Fri Aug 29 12:48:39 UTC 2014


Author: bz
Date: Fri Aug 29 12:48:38 2014
New Revision: 270808
URL: http://svnweb.freebsd.org/changeset/base/270808

Log:
  These functions are #defined to "osdep" specific names without the "_mem"
  extension.  Provide prototypes for the actual implementations.
  Correct function arguments to match the implementations.
  
  MFC after:	3 days
  X-MFC with:	r270755

Modified:
  head/sys/dev/ixl/i40e_alloc.h

Modified: head/sys/dev/ixl/i40e_alloc.h
==============================================================================
--- head/sys/dev/ixl/i40e_alloc.h	Fri Aug 29 12:45:14 2014	(r270807)
+++ head/sys/dev/ixl/i40e_alloc.h	Fri Aug 29 12:48:38 2014	(r270808)
@@ -51,16 +51,15 @@ enum i40e_memory_type {
 };
 
 /* prototype for functions used for dynamic memory allocation */
-enum i40e_status_code i40e_allocate_dma_mem(struct i40e_hw *hw,
+enum i40e_status_code i40e_allocate_dma(struct i40e_hw *hw,
 					    struct i40e_dma_mem *mem,
-					    enum i40e_memory_type type,
-					    u64 size, u32 alignment);
-enum i40e_status_code i40e_free_dma_mem(struct i40e_hw *hw,
+					    bus_size_t size, u32 alignment);
+enum i40e_status_code i40e_free_dma(struct i40e_hw *hw,
 					struct i40e_dma_mem *mem);
-enum i40e_status_code i40e_allocate_virt_mem(struct i40e_hw *hw,
+enum i40e_status_code i40e_allocate_virt(struct i40e_hw *hw,
 					     struct i40e_virt_mem *mem,
 					     u32 size);
-enum i40e_status_code i40e_free_virt_mem(struct i40e_hw *hw,
+enum i40e_status_code i40e_free_virt(struct i40e_hw *hw,
 					 struct i40e_virt_mem *mem);
 
 #endif /* _I40E_ALLOC_H_ */


More information about the svn-src-head mailing list