X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Frconn.c;h=35f42e44259bdf992eb933864555bc6f7b93d63f;hb=d45e9c65c6c257bb361829607c0f09bb9b14fa41;hp=2cbe43e98df6c3c7642471fd6e0f5d398661d4cd;hpb=0b3f40f37183df18eb70255a9cc96d57d96b9a3e;p=sliver-openvswitch.git diff --git a/lib/rconn.c b/lib/rconn.c index 2cbe43e98..35f42e442 100644 --- a/lib/rconn.c +++ b/lib/rconn.c @@ -547,7 +547,7 @@ rconn_send(struct rconn *rc, struct ofpbuf *b, if (rconn_is_connected(rc)) { COVERAGE_INC(rconn_queued); copy_to_monitor(rc, b); - b->private = counter; + b->private_p = counter; if (counter) { rconn_packet_counter_inc(counter); } @@ -845,7 +845,7 @@ try_send(struct rconn *rc) { int retval = 0; struct ofpbuf *next = rc->txq.head->next; - struct rconn_packet_counter *counter = rc->txq.head->private; + struct rconn_packet_counter *counter = rc->txq.head->private_p; retval = vconn_send(rc->vconn, rc->txq.head); if (retval) { if (retval != EAGAIN) { @@ -914,7 +914,7 @@ flush_queue(struct rconn *rc) } while (rc->txq.n > 0) { struct ofpbuf *b = queue_pop_head(&rc->txq); - struct rconn_packet_counter *counter = b->private; + struct rconn_packet_counter *counter = b->private_p; if (counter) { rconn_packet_counter_dec(counter); }