IxOsalBackwardBufferMgt.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /**
  2. * This file is intended to provide backward
  3. * compatibility for main osService/OSSL
  4. * APIs.
  5. *
  6. * It shall be phased out gradually and users
  7. * are strongly recommended to use IX_OSAL API.
  8. *
  9. * @par
  10. * IXP400 SW Release version 2.0
  11. *
  12. * -- Copyright Notice --
  13. *
  14. * @par
  15. * Copyright 2001-2005, Intel Corporation.
  16. * All rights reserved.
  17. *
  18. * @par
  19. * Redistribution and use in source and binary forms, with or without
  20. * modification, are permitted provided that the following conditions
  21. * are met:
  22. * 1. Redistributions of source code must retain the above copyright
  23. * notice, this list of conditions and the following disclaimer.
  24. * 2. Redistributions in binary form must reproduce the above copyright
  25. * notice, this list of conditions and the following disclaimer in the
  26. * documentation and/or other materials provided with the distribution.
  27. * 3. Neither the name of the Intel Corporation nor the names of its contributors
  28. * may be used to endorse or promote products derived from this software
  29. * without specific prior written permission.
  30. *
  31. * @par
  32. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
  33. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  34. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  35. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
  36. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  37. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  38. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  39. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  40. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  41. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  42. * SUCH DAMAGE.
  43. *
  44. * @par
  45. * -- End of Copyright Notice --
  46. */
  47. #ifndef IX_OSAL_BACKWARD_BUFFER_MGT_H
  48. #define IX_OSAL_BACKWARD_BUFFER_MGT_H
  49. typedef IX_OSAL_MBUF IX_MBUF;
  50. typedef IX_OSAL_MBUF_POOL IX_MBUF_POOL;
  51. #define IX_MBUF_NEXT_BUFFER_IN_PKT_PTR(m_blk_ptr) \
  52. IX_OSAL_MBUF_NEXT_BUFFER_IN_PKT_PTR(m_blk_ptr)
  53. #define IX_MBUF_NEXT_PKT_IN_CHAIN_PTR(m_blk_ptr) \
  54. IX_OSAL_MBUF_NEXT_PKT_IN_CHAIN_PTR(m_blk_ptr)
  55. #define IX_MBUF_MDATA(m_blk_ptr) \
  56. IX_OSAL_MBUF_MDATA(m_blk_ptr)
  57. #define IX_MBUF_MLEN(m_blk_ptr) \
  58. IX_OSAL_MBUF_MLEN(m_blk_ptr)
  59. #define IX_MBUF_TYPE(m_blk_ptr) \
  60. IX_OSAL_MBUF_MTYPE(m_blk_ptr)
  61. /* Same as IX_MBUF_TYPE */
  62. #define IX_MBUF_MTYPE(m_blk_ptr) \
  63. IX_OSAL_MBUF_MTYPE(m_blk_ptr)
  64. #define IX_MBUF_FLAGS(m_blk_ptr) \
  65. IX_OSAL_MBUF_FLAGS(m_blk_ptr)
  66. #define IX_MBUF_NET_POOL(m_blk_ptr) \
  67. IX_OSAL_MBUF_NET_POOL(m_blk_ptr)
  68. #define IX_MBUF_PKT_LEN(m_blk_ptr) \
  69. IX_OSAL_MBUF_PKT_LEN(m_blk_ptr)
  70. #define IX_MBUF_PRIV(m_blk_ptr) \
  71. IX_OSAL_MBUF_PRIV(m_blk_ptr)
  72. #define IX_MBUF_ALLOCATED_BUFF_LEN(m_blk_ptr) \
  73. IX_OSAL_MBUF_ALLOCATED_BUFF_LEN(m_blk_ptr)
  74. #define IX_MBUF_ALLOCATED_BUFF_DATA(m_blk_ptr) \
  75. IX_OSAL_MBUF_ALLOCATED_BUFF_DATA(m_blk_ptr)
  76. #define IX_MBUF_POOL_SIZE_ALIGN(size) \
  77. IX_OSAL_MBUF_POOL_SIZE_ALIGN(size)
  78. #define IX_MBUF_POOL_MBUF_AREA_SIZE_ALIGNED(count) \
  79. IX_OSAL_MBUF_POOL_MBUF_AREA_SIZE_ALIGNED(count)
  80. #define IX_MBUF_POOL_DATA_AREA_SIZE_ALIGNED(count, size) \
  81. IX_OSAL_MBUF_POOL_DATA_AREA_SIZE_ALIGNED(count, size)
  82. #define IX_MBUF_POOL_MBUF_AREA_ALLOC(count, memAreaSize) \
  83. IX_OSAL_MBUF_POOL_MBUF_AREA_ALLOC(count, memAreaSize)
  84. #define IX_MBUF_POOL_DATA_AREA_ALLOC(count, size, memAreaSize) \
  85. IX_OSAL_MBUF_POOL_DATA_AREA_ALLOC(count, size, memAreaSize)
  86. IX_STATUS
  87. ixOsalOsIxp400BackwardPoolInit (IX_OSAL_MBUF_POOL ** poolPtrPtr,
  88. UINT32 count, UINT32 size, const char *name);
  89. /* This one needs extra steps*/
  90. #define IX_MBUF_POOL_INIT(poolPtr, count, size, name) \
  91. ixOsalOsIxp400BackwardPoolInit( poolPtr, count, size, name)
  92. #define IX_MBUF_POOL_INIT_NO_ALLOC(poolPtrPtr, bufPtr, dataPtr, count, size, name) \
  93. (*poolPtrPtr = IX_OSAL_MBUF_NO_ALLOC_POOL_INIT(bufPtr, dataPtr, count, size, name))
  94. IX_STATUS
  95. ixOsalOsIxp400BackwardMbufPoolGet (IX_OSAL_MBUF_POOL * poolPtr,
  96. IX_OSAL_MBUF ** newBufPtrPtr);
  97. #define IX_MBUF_POOL_GET(poolPtr, bufPtrPtr) \
  98. ixOsalOsIxp400BackwardMbufPoolGet(poolPtr, bufPtrPtr)
  99. #define IX_MBUF_POOL_PUT(bufPtr) \
  100. IX_OSAL_MBUF_POOL_PUT(bufPtr)
  101. #define IX_MBUF_POOL_PUT_CHAIN(bufPtr) \
  102. IX_OSAL_MBUF_POOL_PUT_CHAIN(bufPtr)
  103. #define IX_MBUF_POOL_SHOW(poolPtr) \
  104. IX_OSAL_MBUF_POOL_SHOW(poolPtr)
  105. #define IX_MBUF_POOL_MDATA_RESET(bufPtr) \
  106. IX_OSAL_MBUF_POOL_MDATA_RESET(bufPtr)
  107. #endif /* IX_OSAL_BACKWARD_BUFFER_MGT_H */