madwifi: remove an unimportant part of the ibss node handling fix, which led to a...
[openwrt.git] / package / madwifi / patches / 200-no_debug.patch
1 --- a/ath/if_ath.c
2 +++ b/ath/if_ath.c
3 @@ -42,7 +42,6 @@
4   * This software is derived from work of Atsushi Onoe; his contribution
5   * is greatly appreciated.
6   */
7 -#define        AR_DEBUG
8  #include "if_ath_debug.h"
9  #include "opt_ah.h"
10  
11 @@ -368,8 +367,10 @@ static unsigned int ath_get_dfs_cac_time
12  static void ath_set_dfs_cac_time(struct ieee80211com *, unsigned int seconds);
13  
14  static unsigned int ath_test_radar(struct ieee80211com *);
15 -static unsigned int ath_dump_hal_map(struct ieee80211com *ic);
16 +#ifdef AR_DEBUG
17  
18 +static unsigned int ath_dump_hal_map(struct ieee80211com *ic);
19 +#endif
20  static u_int32_t ath_get_clamped_maxtxpower(struct ath_softc *sc);
21  static u_int32_t ath_set_clamped_maxtxpower(struct ath_softc *sc, 
22                 u_int32_t new_clamped_maxtxpower);
23 @@ -520,9 +521,11 @@ ath_attach(u_int16_t devid, struct net_d
24         u_int8_t csz;
25  
26         sc->devid = devid;
27 +#ifdef AR_DEBUG
28         ath_debug_global = (ath_debug & ATH_DEBUG_GLOBAL);
29         sc->sc_debug     = (ath_debug & ~ATH_DEBUG_GLOBAL);
30         DPRINTF(sc, ATH_DEBUG_ANY, "%s: devid 0x%x\n", __func__, devid);
31 +#endif
32  
33         /* Allocate space for dynamically determined maximum VAP count */
34         sc->sc_bslot = 
35 @@ -1038,8 +1041,9 @@ ath_attach(u_int16_t devid, struct net_d
36         ic->ic_vap_delete = ath_vap_delete;
37  
38         ic->ic_test_radar           = ath_test_radar;
39 +#ifdef AR_DEBUG
40         ic->ic_dump_hal_map         = ath_dump_hal_map;
41 -
42 +#endif
43         ic->ic_set_dfs_testmode     = ath_set_dfs_testmode;
44         ic->ic_get_dfs_testmode     = ath_get_dfs_testmode;
45  
46 @@ -1297,12 +1301,14 @@ ath_vap_create(struct ieee80211com *ic, 
47                 /* If no default VAP debug flags are passed, allow a few to
48                  * transfer down from the driver to new VAPs so we can have load
49                  * time debugging for VAPs too. */
50 +#ifdef AR_DEBUG
51                 vap->iv_debug = 0 |
52                         ((sc->sc_debug & ATH_DEBUG_RATE) ? IEEE80211_MSG_XRATE  : 0) | 
53                         ((sc->sc_debug & ATH_DEBUG_XMIT) ? IEEE80211_MSG_OUTPUT : 0) | 
54                         ((sc->sc_debug & ATH_DEBUG_RECV) ? IEEE80211_MSG_INPUT  : 0) |
55                         0
56                         ;
57 +#endif
58         }
59         ic->ic_debug = (sc->sc_default_ieee80211_debug & IEEE80211_MSG_IC);
60  
61 @@ -10496,9 +10502,11 @@ ATH_SYSCTL_DECL(ath_sysctl_halparam, ctl
62                                 /* XXX validate? */
63                                 sc->sc_ledpin = val;
64                                 break;
65 +#ifdef AR_DEBUG
66                         case ATH_DEBUG:
67                                 sc->sc_debug     = (val & ~ATH_DEBUG_GLOBAL);
68                                 ath_debug_global = (val &  ATH_DEBUG_GLOBAL);
69 +#endif
70                                 break;
71                         case ATH_TXANTENNA:
72                                 /*
73 @@ -10918,9 +10926,11 @@ ath_dynamic_sysctl_register(struct ath_s
74         }
75  
76         /* initialize values */
77 +#ifdef AR_DEBUG
78         ath_debug_global = (ath_debug & ATH_DEBUG_GLOBAL);
79         sc->sc_debug     = (ath_debug & ~ATH_DEBUG_GLOBAL);
80         sc->sc_default_ieee80211_debug = ieee80211_debug;
81 +#endif
82         sc->sc_txantenna = 0;           /* default to auto-selection */
83         sc->sc_txintrperiod = ATH_TXQ_INTR_PERIOD;
84  }
85 @@ -11762,6 +11772,7 @@ ath_test_radar(struct ieee80211com *ic)
86  }
87  
88  /* This is called by a private ioctl (iwpriv) to dump the HAL obfuscation table */
89 +#ifdef AR_DEBUG
90  static unsigned int
91  ath_dump_hal_map(struct ieee80211com *ic)
92  {
93 @@ -11770,7 +11781,7 @@ ath_dump_hal_map(struct ieee80211com *ic
94         ath_hal_dump_map(sc->sc_ah);
95         return 0;
96  }
97 -
98 +#endif
99  /* If we are shutting down or blowing off the DFS channel availability check
100   * then we call this to stop the behavior before we take the rest of the
101   * necessary actions (such as a DFS reaction to radar). */
102 --- a/ath_rate/amrr/amrr.c
103 +++ b/ath_rate/amrr/amrr.c
104 @@ -70,7 +70,9 @@
105  
106  #include "amrr.h"
107  
108 +#ifdef AR_DEBUG
109  #define        AMRR_DEBUG
110 +#endif
111  #ifdef AMRR_DEBUG
112  #define        DPRINTF(sc, _fmt, ...) do {                                     \
113         if (sc->sc_debug & 0x10)                                        \
114 --- a/ath_rate/minstrel/minstrel.c
115 +++ b/ath_rate/minstrel/minstrel.c
116 @@ -117,7 +117,9 @@
117  
118  #include "minstrel.h"
119  
120 +#ifdef AR_DEBUG
121  #define        MINSTREL_DEBUG
122 +#endif
123  #ifdef MINSTREL_DEBUG
124  enum {
125                 ATH_DEBUG_RATE          = 0x00000010    /* rate control */
126 --- a/ath_rate/onoe/onoe.c
127 +++ b/ath_rate/onoe/onoe.c
128 @@ -66,7 +66,9 @@
129  
130  #include "onoe.h"
131  
132 +#ifdef AR_DEBUG
133  #define        ONOE_DEBUG
134 +#endif
135  #ifdef ONOE_DEBUG
136  enum {
137         ATH_DEBUG_RATE  = 0x00000010,   /* rate control */
138 --- a/ath_rate/sample/sample.c
139 +++ b/ath_rate/sample/sample.c
140 @@ -68,7 +68,9 @@
141  
142  #include "sample.h"
143  
144 -#define        SAMPLE_DEBUG
145 +#ifdef AR_DEBUG
146 +#define SAMPLE_DEBUG
147 +#endif
148  #ifdef SAMPLE_DEBUG
149  enum {
150         ATH_DEBUG_RATE          = 0x00000010,   /* rate control */
151 --- a/tools/do_multi.c
152 +++ b/tools/do_multi.c
153 @@ -10,16 +10,20 @@ main(int argc, char *argv[])
154  
155      progname = basename(argv[0]);
156  
157 +#ifdef AR_DEBUG
158      if(strcmp(progname, "80211debug") == 0)
159         ret = a80211debug_init(argc, argv);
160 +#endif
161      if(strcmp(progname, "80211stats") == 0)
162         ret = a80211stats_init(argc, argv);
163      if(strcmp(progname, "athchans") == 0)
164         ret = athchans_init(argc, argv);
165      if(strcmp(progname, "athctrl") == 0)
166         ret =  athctrl_init(argc, argv);
167 +#ifdef AR_DEBUG
168      if(strcmp(progname, "athdebug") == 0)
169         ret =  athdebug_init(argc, argv);
170 +#endif
171      if(strcmp(progname, "athkey") == 0)
172         ret =  athkey_init(argc, argv);
173      if(strcmp(progname, "athstats") == 0)
174 --- a/tools/Makefile
175 +++ b/tools/Makefile
176 @@ -48,6 +48,8 @@ endif
177  
178  all: compile
179  
180 +DEBUG = -DAR_DEBUG
181 +
182  ALLPROGS=      athstats 80211stats athkey athchans athctrl \
183         athdebug 80211debug wlanconfig ath_info
184  
185 @@ -55,7 +57,7 @@ OBJS= $(patsubst %,%.o,$(ALLPROGS))
186  
187  INCS=  -I. -I../ath -I$(HAL) -I$(TOP) -I$(ATH_HAL)
188  CFLAGS=        -g -O2 -Wall
189 -ALL_CFLAGS= $(CFLAGS) $(INCS)
190 +ALL_CFLAGS= $(CFLAGS) $(INCS) $(DEBUG)
191  LDFLAGS=
192  
193  
194 --- a/net80211/ieee80211_linux.h
195 +++ b/net80211/ieee80211_linux.h
196 @@ -29,8 +29,6 @@
197  #ifndef _NET80211_IEEE80211_LINUX_H_
198  #define _NET80211_IEEE80211_LINUX_H_
199  
200 -#define        IEEE80211_DEBUG
201 -#define        IEEE80211_DEBUG_REFCNT                  /* Node reference count debugging */
202  /* #define ATH_DEBUG_SPINLOCKS */              /* announce before spinlocking */
203  
204  #include <linux/wireless.h>
205 --- a/Makefile.inc
206 +++ b/Makefile.inc
207 @@ -147,8 +147,9 @@ ATH_RATE=   $(TOP)/ath_rate
208  # 
209  TOOLS=  $(TOP)/tools 
210  
211 -WARNINGS = -Werror
212 -COPTS+= $(WARNINGS)
213 +WARNINGS = -Wno-unused
214 +# DEBUG = -DAR_DEBUG -DIEEE80211_DEBUG
215 +COPTS+= $(WARNINGS) $(DEBUG)
216  INCS=  -include $(TOP)/include/compat.h -I$(TOP)/include
217  
218  # TARGET defines the target platform architecture. It must match one of
219 --- a/ath/if_ath_radar.c
220 +++ b/ath/if_ath_radar.c
221 @@ -19,8 +19,6 @@
222   * $Id: if_ath_radar.c 2464 2007-06-15 22:51:56Z mtaylor $
223   */
224  #include "opt_ah.h"
225 -
226 -#define        AR_DEBUG
227  #include "if_ath_debug.h"
228  
229  #ifndef AUTOCONF_INCLUDED
230 @@ -56,8 +54,6 @@
231  #include <net80211/if_llc.h>
232  #endif
233  
234 -#define        AR_DEBUG
235 -
236  #include "net80211/if_athproto.h"
237  #include "if_athvar.h"
238  
239 --- a/ath/if_ath_hal.h
240 +++ b/ath/if_ath_hal.h
241 @@ -1081,6 +1081,7 @@ static inline HAL_BOOL ath_hal_disable(s
242  
243             tail -f /var/log/messages | sed -f hal_unmangle.sed 
244   */
245 +#ifdef AR_DEBUG
246  static inline void ath_hal_dump_map(struct ath_hal *ah)
247  {
248  #ifdef CONFIG_KALLSYMS
249 @@ -1345,7 +1346,7 @@ static inline void ath_hal_dump_map(stru
250  #endif                         /* #ifndef CONFIG_KALLSYMS */
251  
252  }
253 -
254 +#endif
255  #include "if_ath_hal_wrappers.h"
256  
257  #endif                         /* #ifndef _IF_ATH_HAL_H_ */
258 --- a/net80211/ieee80211_var.h
259 +++ b/net80211/ieee80211_var.h
260 @@ -492,9 +492,10 @@ struct ieee80211com {
261         /* inject a fake radar signal -- used while on a 802.11h DFS channels */
262         unsigned int (*ic_test_radar)(struct ieee80211com *);
263  
264 +#ifdef AR_DEBUG
265         /* dump HAL */
266         unsigned int (*ic_dump_hal_map)(struct ieee80211com *);
267 -
268 +#endif
269         /* DFS channel availability check time (in seconds) */
270         void (*ic_set_dfs_cac_time)(struct ieee80211com *, unsigned int);
271         unsigned int (*ic_get_dfs_cac_time)(struct ieee80211com *);
272 --- a/net80211/ieee80211_wireless.c
273 +++ b/net80211/ieee80211_wireless.c
274 @@ -1548,6 +1548,7 @@ ieee80211_get_txcont_power(struct net_de
275         return 0;
276  }
277  
278 +#ifdef AR_DEBUG
279  static int 
280  ieee80211_ioctl_hal_map(struct net_device *dev, struct iw_request_info *info,
281         void *w, char *extra)
282 @@ -1558,7 +1559,7 @@ ieee80211_ioctl_hal_map(struct net_devic
283         params[0] = ic->ic_dump_hal_map(ic);
284         return 0;
285  }
286 -
287 +#endif
288  
289  static int
290  ieee80211_ioctl_radar(struct net_device *dev, struct iw_request_info *info,
291 @@ -5258,8 +5259,10 @@ static const struct iw_priv_args ieee802
292           IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,   "getwmmparams" },
293         { IEEE80211_IOCTL_RADAR,
294           0, 0, "doth_radar" },
295 +#ifdef AR_DEBUG
296         { IEEE80211_IOCTL_HALMAP,
297           0, 0, "dump_hal_map" },
298 +#endif
299         /*
300          * These depends on sub-ioctl support which added in version 12.
301          */
302 @@ -5695,7 +5698,9 @@ static const iw_handler ieee80211_priv_h
303         set_priv(IEEE80211_IOCTL_SETMLME, ieee80211_ioctl_setmlme),
304         set_priv(IEEE80211_IOCTL_SETKEY, ieee80211_ioctl_setkey),
305         set_priv(IEEE80211_IOCTL_DELKEY, ieee80211_ioctl_delkey),
306 +#ifdef AR_DEBUG
307         set_priv(IEEE80211_IOCTL_HALMAP, ieee80211_ioctl_hal_map),
308 +#endif
309         set_priv(IEEE80211_IOCTL_ADDMAC, ieee80211_ioctl_addmac),
310         set_priv(IEEE80211_IOCTL_DELMAC, ieee80211_ioctl_delmac),
311         set_priv(IEEE80211_IOCTL_WDSADDMAC, ieee80211_ioctl_wdsmac),
312 --- a/ath/if_ath_debug.h
313 +++ b/ath/if_ath_debug.h
314 @@ -54,6 +54,10 @@ enum {
315         ATH_DEBUG_GLOBAL        = (ATH_DEBUG_SKB|ATH_DEBUG_SKB_REF)
316  };
317  
318 +#define        EPRINTF(_sc, _fmt, ...) \
319 +               printk(KERN_ERR "%s: %s: " _fmt, \
320 +                       SC_DEV_NAME(_sc), __func__, ## __VA_ARGS__)
321 +
322  #ifdef AR_DEBUG
323  
324  /* DEBUG-ONLY DEFINITIONS */
325 @@ -68,20 +72,9 @@ enum {
326                 ath_keyprint((_sc), __func__, _ix, _hk, _mac);          \
327  } while (0)
328  
329 -#else /* #ifdef AR_DEBUG */
330 -
331 -#define        DFLAG_ISSET(sc, _m)             0
332 -#define        DPRINTF(sc, _m, _fmt, ...)
333 -#define        KEYPRINTF(sc, k, ix, mac)
334 -
335 -#endif /* #ifdef AR_DEBUG */
336  
337  #define        IFF_DUMPPKTS(_sc, _m)   DFLAG_ISSET((_sc), (_m))
338  
339 -#define        EPRINTF(_sc, _fmt, ...) \
340 -               printk(KERN_ERR "%s: %s: " _fmt, \
341 -                       SC_DEV_NAME(_sc), __func__, ## __VA_ARGS__)
342 -
343  #define        WPRINTF(_sc, _fmt, ...) \
344                 printk(KERN_WARNING "%s: %s: " _fmt, \
345                         SC_DEV_NAME(_sc), __func__, ## __VA_ARGS__)
346 @@ -89,5 +82,14 @@ enum {
347  #define        IPRINTF(_sc, _fmt, ...) \
348                 printk(KERN_INFO "%s: %s: " _fmt, \
349                         SC_DEV_NAME(_sc), __func__, ## __VA_ARGS__)
350 +#else
351 +#define        DFLAG_ISSET(sc, _m)             0
352 +#define        DPRINTF(sc, _m, _fmt, ...)
353 +#define        KEYPRINTF(sc, k, ix, mac)
354 +#define WPRINTF(...)
355 +#define IPRINTF(...)
356 +#define IFF_DUMPPKTS(...) 0
357 +
358 +#endif
359  
360  #endif /* #ifndef _IF_ATH_DEBUG_H_ */
361 --- a/net80211/ieee80211_node.c
362 +++ b/net80211/ieee80211_node.c
363 @@ -920,6 +920,9 @@ node_cleanup(struct ieee80211_node *ni)
364         ni->ni_rxkeyoff = 0;
365  }
366  
367 +#ifndef IEEE80211_DEBUG
368 +#define node_print_message(...) do {} while(0)
369 +#else
370  static void node_print_message(
371                 u_int32_t flags,
372                 int show_counter, 
373 @@ -972,7 +975,7 @@ static void node_print_message(
374                         adjusted_refcount);
375         va_end(args);
376  }
377 -EXPORT_SYMBOL(node_print_message);
378 +#endif
379  
380  static void
381  #ifdef IEEE80211_DEBUG_REFCNT
382 --- a/ath/if_ath_pci.c
383 +++ b/ath/if_ath_pci.c
384 @@ -134,8 +134,10 @@ ath_pci_probe(struct pci_dev *pdev, cons
385         u16 vdevice;
386         int i;
387  
388 -       if (pci_enable_device(pdev))
389 +       if (pci_enable_device(pdev)) {
390 +               printk(KERN_ERR "%s: failed to enable PCI device\n", dev_info);
391                 return -EIO;
392 +       }
393  
394         /* XXX 32-bit addressing only */
395         if (pci_set_dma_mask(pdev, 0xffffffff)) {
396 @@ -244,8 +246,10 @@ ath_pci_probe(struct pci_dev *pdev, cons
397                 sc->aps_sc.sc_ledpin = 1;
398         }
399  
400 -       if (ath_attach(vdevice, dev, NULL) != 0)
401 +       if ((i = ath_attach(vdevice, dev, NULL)) != 0) {
402 +               printk(KERN_ERR "%s: ath_attach failed: %d\n", dev_info, i);
403                 goto bad4;
404 +       }
405  
406         athname = ath_hal_probe(id->vendor, vdevice);
407         printk(KERN_INFO "%s: %s: %s: mem=0x%lx, irq=%d\n",