X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Frconn.h;h=408cec92b5699ca7336d812431877481038202a8;hb=093f56c5c5c8b0891e837beb1defd84bc165ac6a;hp=aa3023836fc55f650efa4fb0d80256639f9801f7;hpb=e182670b0262e58a982a659dc5248aa5874264e2;p=sliver-openvswitch.git diff --git a/lib/rconn.h b/lib/rconn.h index aa3023836..408cec92b 100644 --- a/lib/rconn.h +++ b/lib/rconn.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc. + * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,6 +21,7 @@ #include #include #include "openvswitch/types.h" +#include "ovs-thread.h" /* A wrapper around vconn that provides queuing and optionally reliability. * @@ -32,6 +33,12 @@ * An rconn optionally provides reliable communication, in this sense: the * rconn will re-connect, with exponential backoff, when the underlying vconn * disconnects. + * + * + * Thread-safety + * ============= + * + * Fully thread-safe. */ struct vconn; @@ -91,9 +98,10 @@ unsigned int rconn_count_txqlen(const struct rconn *); /* Counts packets and bytes queued into an rconn by a given source. */ struct rconn_packet_counter { - unsigned int n_packets; /* Number of packets queued. */ - unsigned int n_bytes; /* Number of bytes queued. */ - int ref_cnt; /* Number of owners. */ + struct ovs_mutex mutex; + unsigned int n_packets OVS_GUARDED; /* Number of packets queued. */ + unsigned int n_bytes OVS_GUARDED; /* Number of bytes queued. */ + int ref_cnt OVS_GUARDED; /* Number of owners. */ }; struct rconn_packet_counter *rconn_packet_counter_create(void); @@ -101,4 +109,8 @@ void rconn_packet_counter_destroy(struct rconn_packet_counter *); void rconn_packet_counter_inc(struct rconn_packet_counter *, unsigned n_bytes); void rconn_packet_counter_dec(struct rconn_packet_counter *, unsigned n_bytes); +unsigned int rconn_packet_counter_n_packets( + const struct rconn_packet_counter *); +unsigned int rconn_packet_counter_n_bytes(const struct rconn_packet_counter *); + #endif /* rconn.h */