2009-07-08 13:19:16 -07:00
|
|
|
/*
|
2014-07-17 10:31:03 -07:00
|
|
|
* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
|
2009-07-08 13:19:16 -07:00
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at:
|
2009-07-08 13:19:16 -07:00
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2009-07-08 13:19:16 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PINSCHED_H
|
|
|
|
#define PINSCHED_H_H 1
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2013-06-19 16:58:44 -07:00
|
|
|
#include "flow.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
|
2014-12-15 14:10:38 +01:00
|
|
|
struct ovs_list;
|
2009-07-08 13:19:16 -07:00
|
|
|
struct ofpbuf;
|
|
|
|
|
2011-02-04 13:17:46 -08:00
|
|
|
struct pinsched *pinsched_create(int rate_limit, int burst_limit);
|
2010-04-20 10:05:57 -07:00
|
|
|
void pinsched_get_limits(const struct pinsched *,
|
|
|
|
int *rate_limit, int *burst_limit);
|
2009-07-08 13:19:16 -07:00
|
|
|
void pinsched_set_limits(struct pinsched *, int rate_limit, int burst_limit);
|
|
|
|
void pinsched_destroy(struct pinsched *);
|
2013-06-19 16:58:44 -07:00
|
|
|
void pinsched_send(struct pinsched *, ofp_port_t port_no, struct ofpbuf *,
|
2014-12-15 14:10:38 +01:00
|
|
|
struct ovs_list *txq);
|
|
|
|
void pinsched_run(struct pinsched *, struct ovs_list *txq);
|
2009-07-08 13:19:16 -07:00
|
|
|
void pinsched_wait(struct pinsched *);
|
|
|
|
|
2014-07-17 10:31:03 -07:00
|
|
|
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 *);
|
2012-05-08 15:44:21 -07:00
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
#endif /* pinsched.h */
|