* Given a queue and a reserved LSB entry index, compute the LSB *address* of * that entry for the queue's private LSB region. */
| 143 | * that entry for the queue's private LSB region. |
| 144 | */ |
| 145 | static inline uint32_t |
| 146 | ccp_queue_lsb_address(struct ccp_queue *qp, unsigned lsb_entry) |
| 147 | { |
| 148 | return (ccp_queue_lsb_entry(qp, lsb_entry) * LSB_ENTRY_SIZE); |
| 149 | } |
| 150 | |
| 151 | /* |
| 152 | * Some terminology: |
no test coverage detected