* Given a queue and a reserved LSB entry index, compute the LSB *entry id* of * that entry for the queue's private LSB region. */
| 133 | * that entry for the queue's private LSB region. |
| 134 | */ |
| 135 | static inline uint8_t |
| 136 | ccp_queue_lsb_entry(struct ccp_queue *qp, unsigned lsb_entry) |
| 137 | { |
| 138 | return ((qp->private_lsb * LSB_REGION_LENGTH + lsb_entry)); |
| 139 | } |
| 140 | |
| 141 | /* |
| 142 | * Given a queue and a reserved LSB entry index, compute the LSB *address* of |
no outgoing calls
no test coverage detected