[MIPS] Remove useless S-cache flushes.
[linux-2.6.git] / net / mac80211 / ieee80211_rate.h
blob23688139ffb3ea399292ce2b6842f55c91371d34
1 /*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005, Devicescape Software, Inc.
4 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
11 #ifndef IEEE80211_RATE_H
12 #define IEEE80211_RATE_H
14 #include <linux/netdevice.h>
15 #include <linux/skbuff.h>
16 #include <linux/types.h>
17 #include <net/mac80211.h>
18 #include "ieee80211_i.h"
19 #include "sta_info.h"
21 #define RATE_CONTROL_NUM_DOWN 20
22 #define RATE_CONTROL_NUM_UP 15
25 struct rate_control_extra {
26 /* values from rate_control_get_rate() to the caller: */
27 struct ieee80211_rate *probe; /* probe with this rate, or NULL for no
28 * probing */
29 struct ieee80211_rate *nonerp;
31 /* parameters from the caller to rate_control_get_rate(): */
32 struct ieee80211_hw_mode *mode;
33 u16 ethertype;
37 struct rate_control_ops {
38 struct module *module;
39 const char *name;
40 void (*tx_status)(void *priv, struct net_device *dev,
41 struct sk_buff *skb,
42 struct ieee80211_tx_status *status);
43 struct ieee80211_rate *(*get_rate)(void *priv, struct net_device *dev,
44 struct sk_buff *skb,
45 struct rate_control_extra *extra);
46 void (*rate_init)(void *priv, void *priv_sta,
47 struct ieee80211_local *local, struct sta_info *sta);
48 void (*clear)(void *priv);
50 void *(*alloc)(struct ieee80211_local *local);
51 void (*free)(void *priv);
52 void *(*alloc_sta)(void *priv, gfp_t gfp);
53 void (*free_sta)(void *priv, void *priv_sta);
55 int (*add_attrs)(void *priv, struct kobject *kobj);
56 void (*remove_attrs)(void *priv, struct kobject *kobj);
57 void (*add_sta_debugfs)(void *priv, void *priv_sta,
58 struct dentry *dir);
59 void (*remove_sta_debugfs)(void *priv, void *priv_sta);
62 struct rate_control_ref {
63 struct rate_control_ops *ops;
64 void *priv;
65 struct kref kref;
68 /* default 'simple' algorithm */
69 extern struct rate_control_ops mac80211_rcsimple;
71 int ieee80211_rate_control_register(struct rate_control_ops *ops);
72 void ieee80211_rate_control_unregister(struct rate_control_ops *ops);
74 /* Get a reference to the rate control algorithm. If `name' is NULL, get the
75 * first available algorithm. */
76 struct rate_control_ref *rate_control_alloc(const char *name,
77 struct ieee80211_local *local);
78 struct rate_control_ref *rate_control_get(struct rate_control_ref *ref);
79 void rate_control_put(struct rate_control_ref *ref);
81 static inline void rate_control_tx_status(struct ieee80211_local *local,
82 struct net_device *dev,
83 struct sk_buff *skb,
84 struct ieee80211_tx_status *status)
86 struct rate_control_ref *ref = local->rate_ctrl;
87 ref->ops->tx_status(ref->priv, dev, skb, status);
91 static inline struct ieee80211_rate *
92 rate_control_get_rate(struct ieee80211_local *local, struct net_device *dev,
93 struct sk_buff *skb, struct rate_control_extra *extra)
95 struct rate_control_ref *ref = local->rate_ctrl;
96 return ref->ops->get_rate(ref->priv, dev, skb, extra);
100 static inline void rate_control_rate_init(struct sta_info *sta,
101 struct ieee80211_local *local)
103 struct rate_control_ref *ref = sta->rate_ctrl;
104 ref->ops->rate_init(ref->priv, sta->rate_ctrl_priv, local, sta);
108 static inline void rate_control_clear(struct ieee80211_local *local)
110 struct rate_control_ref *ref = local->rate_ctrl;
111 ref->ops->clear(ref->priv);
114 static inline void *rate_control_alloc_sta(struct rate_control_ref *ref,
115 gfp_t gfp)
117 return ref->ops->alloc_sta(ref->priv, gfp);
120 static inline void rate_control_free_sta(struct rate_control_ref *ref,
121 void *priv)
123 ref->ops->free_sta(ref->priv, priv);
126 static inline void rate_control_add_sta_debugfs(struct sta_info *sta)
128 #ifdef CONFIG_MAC80211_DEBUGFS
129 struct rate_control_ref *ref = sta->rate_ctrl;
130 if (sta->debugfs.dir && ref->ops->add_sta_debugfs)
131 ref->ops->add_sta_debugfs(ref->priv, sta->rate_ctrl_priv,
132 sta->debugfs.dir);
133 #endif
136 static inline void rate_control_remove_sta_debugfs(struct sta_info *sta)
138 #ifdef CONFIG_MAC80211_DEBUGFS
139 struct rate_control_ref *ref = sta->rate_ctrl;
140 if (ref->ops->remove_sta_debugfs)
141 ref->ops->remove_sta_debugfs(ref->priv, sta->rate_ctrl_priv);
142 #endif
146 /* functions for rate control related to a device */
147 int ieee80211_init_rate_ctrl_alg(struct ieee80211_local *local,
148 const char *name);
149 void rate_control_deinitialize(struct ieee80211_local *local);
151 #endif /* IEEE80211_RATE_H */