Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: af42d3466bdc8f39806b26f593604fdc54140bcb authored by Linus Torvalds on 17 November 2019, 22:47:30 UTC
Linux 5.4-rc8
Tip revision: af42d34
ocelot_police.h
/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */
/* Microsemi Ocelot Switch driver
 *
 * Copyright (c) 2019 Microsemi Corporation
 */

#ifndef _MSCC_OCELOT_POLICE_H_
#define _MSCC_OCELOT_POLICE_H_

#include "ocelot.h"

struct ocelot_policer {
	u32 rate; /* kilobit per second */
	u32 burst; /* bytes */
};

int ocelot_port_policer_add(struct ocelot_port *port,
			    struct ocelot_policer *pol);

int ocelot_port_policer_del(struct ocelot_port *port);

#endif /* _MSCC_OCELOT_POLICE_H_ */
back to top