X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=ofproto%2Fpinsched.h;h=96993df9afae85567115aa8f036984ad07a2651a;hb=fbf5d6ec3f88f4101753786d7a98b16c14cb648d;hp=061cb01a090eba2dd002e1e60d511348fd825f75;hpb=0d085684619be0baef309957a3d7410a23cb5f27;p=cascardo%2Fovs.git diff --git a/ofproto/pinsched.h b/ofproto/pinsched.h index 061cb01a0..96993df9a 100644 --- a/ofproto/pinsched.h +++ b/ofproto/pinsched.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc. + * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,20 +18,28 @@ #define PINSCHED_H_H 1 #include +#include "flow.h" +struct ovs_list; struct ofpbuf; -typedef void pinsched_tx_cb(struct ofpbuf *, void *aux); struct pinsched *pinsched_create(int rate_limit, int burst_limit); void pinsched_get_limits(const struct pinsched *, int *rate_limit, int *burst_limit); void pinsched_set_limits(struct pinsched *, int rate_limit, int burst_limit); void pinsched_destroy(struct pinsched *); -void pinsched_send(struct pinsched *, uint16_t port_no, struct ofpbuf *, - pinsched_tx_cb *, void *aux); -void pinsched_run(struct pinsched *, pinsched_tx_cb *, void *aux); +void pinsched_send(struct pinsched *, ofp_port_t port_no, struct ofpbuf *, + struct ovs_list *txq); +void pinsched_run(struct pinsched *, struct ovs_list *txq); void pinsched_wait(struct pinsched *); -unsigned int pinsched_count_txqlen(const struct pinsched *); +struct pinsched_stats { + unsigned int n_queued; /* # currently queued to send. */ + unsigned long long n_normal; /* # txed w/o rate limit queuing. */ + unsigned long long n_limited; /* # queued for rate limiting. */ + unsigned long long n_queue_dropped; /* # dropped due to queue overflow. */ +}; + +void pinsched_get_stats(const struct pinsched *, struct pinsched_stats *); #endif /* pinsched.h */