fix hostapd frame injection in mac80211, backport 9b1ce526eb917c8b5c8497c327768130ee6...
[openwrt/staging/florian.git] / target / linux / ifxmips / patches-2.6.30 / 201-atm.patch
1 Index: linux-2.6.28.10/include/linux/atm.h
2 ===================================================================
3 --- linux-2.6.28.10.orig/include/linux/atm.h 2009-05-02 20:54:43.000000000 +0200
4 +++ linux-2.6.28.10/include/linux/atm.h 2009-09-02 15:00:30.000000000 +0200
5 @@ -139,6 +139,9 @@
6 int min_pcr; /* minimum PCR in cells per second */
7 int max_cdv; /* maximum CDV in microseconds */
8 int max_sdu; /* maximum SDU in bytes */
9 + int scr; /* sustained rate in cells per second */
10 + int mbs; /* maximum burst size (MBS) in cells */
11 + int cdv; /* Cell delay varition */
12 /* extra params for ABR */
13 unsigned int icr; /* Initial Cell Rate (24-bit) */
14 unsigned int tbe; /* Transient Buffer Exposure (24-bit) */
15 Index: linux-2.6.28.10/kernel/time/timekeeping.c
16 ===================================================================
17 --- linux-2.6.28.10.orig/kernel/time/timekeeping.c 2009-09-02 15:41:06.000000000 +0200
18 +++ linux-2.6.28.10/kernel/time/timekeeping.c 2009-09-02 15:41:23.000000000 +0200
19 @@ -43,6 +43,7 @@
20 * used instead.
21 */
22 struct timespec xtime __attribute__ ((aligned (16)));
23 +EXPORT_SYMBOL(xtime);
24 struct timespec wall_to_monotonic __attribute__ ((aligned (16)));
25 static unsigned long total_sleep_time; /* seconds */
26