Deleted Added
full compact
28c28
< * $FreeBSD: stable/11/sys/dev/hyperv/vmbus/vmbus_brvar.h 307486 2016-10-17 07:16:04Z sephe $
---
> * $FreeBSD: stable/11/sys/dev/hyperv/vmbus/vmbus_brvar.h 307599 2016-10-19 02:24:17Z sephe $
85a86,99
> static __inline bool
> vmbus_txbr_empty(const struct vmbus_txbr *tbr)
> {
>
> return (tbr->txbr_windex == tbr->txbr_rindex ? true : false);
> }
>
> static __inline bool
> vmbus_rxbr_empty(const struct vmbus_rxbr *rbr)
> {
>
> return (rbr->rxbr_windex == rbr->rxbr_rindex ? true : false);
> }
>