-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvirtPath.h
47 lines (38 loc) · 1.35 KB
/
virtPath.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* Copyright (C) 2014 Joshua Hare, Lance Hartung, and Suman Banerjee.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _VIRT_PATH_
#define _VIRT_PATH_
#include <linux/types.h>
enum {
LOCAL_BANDWIDTH_HINT = 0,
REMOTE_BANDWIDTH_HINT,
};
struct virt_perf_hint {
int type;
union {
int local_dev;
__be32 remote_addr;
} vph_dev;
#define vph_local_dev vph_dev.local_dev
#define vph_remote_addr vph_dev.remote_addr
long bandwidth;
};
struct net_device;
int local_bandwidth_hint(struct net_device *master, const struct virt_perf_hint *hint);
int remote_bandwidth_hint(struct net_device *master, const struct virt_perf_hint *hint);
#endif /* _VIRT_PATH_ */