]> rtime.felk.cvut.cz Git - socketcan-devel.git/blob - kernel/2.6/net/can/proc.c
Preventing procfs output to overflow PAGE_SIZE.
[socketcan-devel.git] / kernel / 2.6 / net / can / proc.c
1 /*
2  * af_can_proc.c
3  *
4  * Copyright (c) 2002-2005 Volkswagen Group Electronic Research
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions, the following disclaimer and
12  *    the referenced file 'COPYING'.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of Volkswagen nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * Alternatively, provided that this notice is retained in full, this
21  * software may be distributed under the terms of the GNU General
22  * Public License ("GPL") version 2 as distributed in the 'COPYING'
23  * file from the main directory of the linux kernel source.
24  *
25  * The provided data structures and external interfaces from this code
26  * are not restricted to be used by modules with a GPL compatible license.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
39  * DAMAGE.
40  *
41  * Send feedback to <socketcan-users@lists.berlios.de>
42  *
43  */
44
45 #include <linux/module.h>
46 #include <linux/proc_fs.h>
47 #include <linux/list.h>
48 #include <linux/rcupdate.h>
49
50 #include <linux/can/version.h>
51
52 #include "af_can.h"
53
54
55 RCSID("$Id$");
56
57 /* proc filenames */
58
59 #define CAN_PROC_VERSION     "version"
60 #define CAN_PROC_STATS       "stats"
61 #define CAN_PROC_RESET_STATS "reset_stats"
62 #define CAN_PROC_RCVLIST_ALL "rcvlist_all"
63 #define CAN_PROC_RCVLIST_FIL "rcvlist_fil"
64 #define CAN_PROC_RCVLIST_INV "rcvlist_inv"
65 #define CAN_PROC_RCVLIST_SFF "rcvlist_sff"
66 #define CAN_PROC_RCVLIST_EFF "rcvlist_eff"
67 #define CAN_PROC_RCVLIST_ERR "rcvlist_err"
68
69 static void can_init_stats(int caller);
70 static void can_stat_update(unsigned long data);
71
72 static struct proc_dir_entry *can_create_proc_read_entry(const char *name,
73         mode_t mode, read_proc_t* read_proc, void *data);
74 static void can_remove_proc_entry(const char *name);
75 static unsigned long calc_rate(unsigned long oldjif, unsigned long newjif,
76                                unsigned long count);
77
78 static int can_proc_read_version(char *page, char **start, off_t off,
79                                      int count, int *eof, void *data);
80 static int can_proc_read_stats(char *page, char **start, off_t off,
81                                      int count, int *eof, void *data);
82 static int can_proc_read_reset_stats(char *page, char **start, off_t off,
83                                      int count, int *eof, void *data);
84 static int can_proc_read_rcvlist_all(char *page, char **start, off_t off,
85                                      int count, int *eof, void *data);
86 static int can_proc_read_rcvlist_fil(char *page, char **start, off_t off,
87                                      int count, int *eof, void *data);
88 static int can_proc_read_rcvlist_inv(char *page, char **start, off_t off,
89                                      int count, int *eof, void *data);
90 static int can_proc_read_rcvlist_sff(char *page, char **start, off_t off,
91                                      int count, int *eof, void *data);
92 static int can_proc_read_rcvlist_eff(char *page, char **start, off_t off,
93                                      int count, int *eof, void *data);
94 static int can_proc_read_rcvlist_err(char *page, char **start, off_t off,
95                                      int count, int *eof, void *data);
96
97 static struct proc_dir_entry *can_dir         = NULL;
98 static struct proc_dir_entry *pde_version     = NULL;
99 static struct proc_dir_entry *pde_stats       = NULL;
100 static struct proc_dir_entry *pde_reset_stats = NULL;
101 static struct proc_dir_entry *pde_rcvlist_all = NULL;
102 static struct proc_dir_entry *pde_rcvlist_fil = NULL;
103 static struct proc_dir_entry *pde_rcvlist_inv = NULL;
104 static struct proc_dir_entry *pde_rcvlist_sff = NULL;
105 static struct proc_dir_entry *pde_rcvlist_eff = NULL;
106 static struct proc_dir_entry *pde_rcvlist_err = NULL;
107
108 struct timer_list stattimer; /* timer for statistics update */
109
110 struct s_stats  stats; /* statistics */
111 struct s_pstats pstats;
112
113 extern struct hlist_head rx_dev_list;    /* rx dispatcher structures */
114 extern int stats_timer;                  /* module parameter. default: on */
115
116 /**************************************************/
117 /* procfs init / remove                           */
118 /**************************************************/
119
120 void can_init_proc(void)
121 {
122
123         /* procfs init */
124
125         /* create /proc/can directory */
126         can_dir = proc_mkdir(CAN_PROC_DIR, NULL);
127
128         if (!can_dir) {
129                 printk(KERN_INFO "af_can: failed to create CAN_PROC_DIR. "
130                        "CONFIG_PROC_FS missing?\n");
131                 return;
132         }
133
134         can_dir->owner = THIS_MODULE;
135
136         /* own procfs entries from the AF_CAN core */
137         pde_version     = can_create_proc_read_entry(
138                 CAN_PROC_VERSION, 0644, can_proc_read_version, NULL);
139         pde_stats       = can_create_proc_read_entry(
140                 CAN_PROC_STATS, 0644, can_proc_read_stats, NULL);
141         pde_reset_stats = can_create_proc_read_entry(
142                 CAN_PROC_RESET_STATS, 0644, can_proc_read_reset_stats, NULL);
143         pde_rcvlist_all = can_create_proc_read_entry(
144                 CAN_PROC_RCVLIST_ALL, 0644, can_proc_read_rcvlist_all, NULL);
145         pde_rcvlist_fil = can_create_proc_read_entry(
146                 CAN_PROC_RCVLIST_FIL, 0644, can_proc_read_rcvlist_fil, NULL);
147         pde_rcvlist_inv = can_create_proc_read_entry(
148                 CAN_PROC_RCVLIST_INV, 0644, can_proc_read_rcvlist_inv, NULL);
149         pde_rcvlist_sff = can_create_proc_read_entry(
150                 CAN_PROC_RCVLIST_SFF, 0644, can_proc_read_rcvlist_sff, NULL);
151         pde_rcvlist_eff = can_create_proc_read_entry(
152                 CAN_PROC_RCVLIST_EFF, 0644, can_proc_read_rcvlist_eff, NULL);
153         pde_rcvlist_err = can_create_proc_read_entry(
154                 CAN_PROC_RCVLIST_ERR, 0644, can_proc_read_rcvlist_err, NULL);
155
156         if (stats_timer) {
157                 /* the statistics are updated every second (timer triggered) */
158                 stattimer.function = can_stat_update;
159                 stattimer.data = 0;
160                 stattimer.expires = jiffies + HZ; /* every second */
161                 add_timer(&stattimer); /* start statistics timer */
162         }
163 }
164
165 void can_remove_proc(void)
166 {
167         /* procfs remove */
168         if (pde_version)
169                 can_remove_proc_entry(CAN_PROC_VERSION);
170
171         if (pde_stats)
172                 can_remove_proc_entry(CAN_PROC_STATS);
173
174         if (pde_reset_stats)
175                 can_remove_proc_entry(CAN_PROC_RESET_STATS);
176
177         if (pde_rcvlist_all)
178                 can_remove_proc_entry(CAN_PROC_RCVLIST_ALL);
179
180         if (pde_rcvlist_fil)
181                 can_remove_proc_entry(CAN_PROC_RCVLIST_FIL);
182
183         if (pde_rcvlist_inv)
184                 can_remove_proc_entry(CAN_PROC_RCVLIST_INV);
185
186         if (pde_rcvlist_sff)
187                 can_remove_proc_entry(CAN_PROC_RCVLIST_SFF);
188
189         if (pde_rcvlist_eff)
190                 can_remove_proc_entry(CAN_PROC_RCVLIST_EFF);
191
192         if (pde_rcvlist_err)
193                 can_remove_proc_entry(CAN_PROC_RCVLIST_ERR);
194
195         if (can_dir)
196                 remove_proc_entry(CAN_PROC_DIR, NULL);
197 }
198
199 /**************************************************/
200 /* proc read functions                            */
201 /**************************************************/
202
203 static int can_print_recv_list(char *page, int len, struct hlist_head *rx_list,
204                                struct net_device *dev)
205 {
206         struct receiver *r;
207         struct hlist_node *n;
208
209         rcu_read_lock();
210         hlist_for_each_entry_rcu(r, n, rx_list, list) {
211                 char *fmt = r->can_id & CAN_EFF_FLAG ? /* EFF & CAN_ID_ALL */
212                         "   %-5s  %08X  %08x  %08x  %08x  %8ld  %s\n" :
213                         "   %-5s     %03X    %08x  %08x  %08x  %8ld  %s\n";
214
215                 len += snprintf(page + len, PAGE_SIZE - len, fmt,
216                                 DNAME(dev), r->can_id, r->mask,
217                                 (unsigned int)r->func, (unsigned int)r->data,
218                                 r->matches, r->ident);
219
220                 /* does a typical line fit into the current buffer? */
221                 /* 100 Bytes before end of buffer */
222                 if (len > PAGE_SIZE - 100) {
223                         /* mark output cut off */
224                         len += snprintf(page + len, PAGE_SIZE - len,
225                                         "   (..)\n");
226                         break;
227                 }
228         }
229         rcu_read_unlock();
230
231         return len;
232 }
233
234 static int can_print_recv_banner(char *page, int len)
235 {
236         /*                  can1.  00000000  00000000  00000000
237                            .......          0  tp20 */
238         len += snprintf(page + len, PAGE_SIZE - len,
239                         "  device   can_id   can_mask  function"
240                         "  userdata   matches  ident\n");
241
242         return len;
243 }
244
245 static int can_proc_read_stats(char *page, char **start, off_t off,
246                                int count, int *eof, void *data)
247 {
248         int len = 0;
249
250         len += snprintf(page + len, PAGE_SIZE - len, "\n");
251         len += snprintf(page + len, PAGE_SIZE - len,
252                         " %8ld transmitted frames (TXF)\n", stats.tx_frames);
253         len += snprintf(page + len, PAGE_SIZE - len,
254                         " %8ld received frames (RXF)\n", stats.rx_frames);
255         len += snprintf(page + len, PAGE_SIZE - len,
256                         " %8ld matched frames (RXMF)\n", stats.matches);
257
258         len += snprintf(page + len, PAGE_SIZE - len, "\n");
259
260         len += snprintf(page + len, PAGE_SIZE - len,
261                         " %8ld %% total match ratio (RXMR)\n",
262                         stats.total_rx_match_ratio);
263
264         len += snprintf(page + len, PAGE_SIZE - len,
265                         " %8ld frames/s total tx rate (TXR)\n",
266                         stats.total_tx_rate);
267         len += snprintf(page + len, PAGE_SIZE - len,
268                         " %8ld frames/s total rx rate (RXR)\n",
269                         stats.total_rx_rate);
270
271         len += snprintf(page + len, PAGE_SIZE - len, "\n");
272
273         len += snprintf(page + len, PAGE_SIZE - len,
274                         " %8ld %% current match ratio (CRXMR)\n",
275                         stats.current_rx_match_ratio);
276
277         len += snprintf(page + len, PAGE_SIZE - len,
278                         " %8ld frames/s current tx rate (CTXR)\n",
279                         stats.current_tx_rate);
280         len += snprintf(page + len, PAGE_SIZE - len,
281                         " %8ld frames/s current rx rate (CRXR)\n",
282                         stats.current_rx_rate);
283
284         len += snprintf(page + len, PAGE_SIZE - len, "\n");
285
286         len += snprintf(page + len, PAGE_SIZE - len,
287                         " %8ld %% max match ratio (MRXMR)\n",
288                         stats.max_rx_match_ratio);
289
290         len += snprintf(page + len, PAGE_SIZE - len,
291                         " %8ld frames/s max tx rate (MTXR)\n",
292                         stats.max_tx_rate);
293         len += snprintf(page + len, PAGE_SIZE - len,
294                         " %8ld frames/s max rx rate (MRXR)\n",
295                         stats.max_rx_rate);
296
297         len += snprintf(page + len, PAGE_SIZE - len, "\n");
298
299         len += snprintf(page + len, PAGE_SIZE - len,
300                         " %8ld current receive list entries (CRCV)\n",
301                         pstats.rcv_entries);
302         len += snprintf(page + len, PAGE_SIZE - len,
303                         " %8ld maximum receive list entries (MRCV)\n",
304                         pstats.rcv_entries_max);
305
306         if (pstats.stats_reset)
307                 len += snprintf(page + len, PAGE_SIZE - len,
308                                 "\n %8ld statistic resets (STR)\n",
309                                 pstats.stats_reset);
310
311         len += snprintf(page + len, PAGE_SIZE - len, "\n");
312
313         *eof = 1;
314         return len;
315 }
316
317 static int can_proc_read_reset_stats(char *page, char **start, off_t off,
318                                      int count, int *eof, void *data)
319 {
320         int len = 0;
321
322         can_init_stats(1);
323
324         len += snprintf(page + len, PAGE_SIZE - len,
325                         "CAN statistic reset #%ld done.\n", pstats.stats_reset);
326
327         *eof = 1;
328         return len;
329 }
330
331 static int can_proc_read_version(char *page, char **start, off_t off,
332                                  int count, int *eof, void *data)
333 {
334         int len = 0;
335
336         len += snprintf(page + len, PAGE_SIZE - len,
337                         "%06X [ Volkswagen AG - Low Level CAN Framework (LLCF) v%s ]\n",
338                         LLCF_VERSION_CODE, VERSION);
339
340         *eof = 1;
341         return len;
342 }
343
344 static int can_proc_read_rcvlist_all(char *page, char **start, off_t off,
345                                      int count, int *eof, void *data)
346 {
347         int len = 0;
348         struct dev_rcv_lists *d;
349         struct hlist_node *n;
350
351         /* RX_ALL */
352         len += snprintf(page + len, PAGE_SIZE - len,
353                         "\nreceive list 'rx_all':\n");
354
355         /* find receive list for this device */
356         rcu_read_lock();
357         hlist_for_each_entry_rcu(d, n, &rx_dev_list, list) {
358
359                 if (!hlist_empty(&d->rx_all)) {
360                         len = can_print_recv_banner(page, len);
361                         len = can_print_recv_list(page, len, &d->rx_all, d->dev);
362                 } else
363                         len += snprintf(page + len, PAGE_SIZE - len,
364                                         "  (%s: no entry)\n", DNAME(d->dev));
365
366                 if (len > PAGE_SIZE - 100)
367                         break; /* exit on end of buffer */
368         }
369         rcu_read_unlock();
370
371         len += snprintf(page + len, PAGE_SIZE - len, "\n");
372
373         *eof = 1;
374         return len;
375 }
376
377 static int can_proc_read_rcvlist_fil(char *page, char **start, off_t off,
378                                      int count, int *eof, void *data)
379 {
380         int len = 0;
381         struct dev_rcv_lists *d;
382         struct hlist_node *n;
383
384         /* RX_FIL */
385         len += snprintf(page + len, PAGE_SIZE - len,
386                         "\nreceive list 'rx_fil':\n");
387
388         /* find receive list for this device */
389         rcu_read_lock();
390         hlist_for_each_entry_rcu(d, n, &rx_dev_list, list) {
391
392                 if (!hlist_empty(&d->rx_fil)) {
393                         len = can_print_recv_banner(page, len);
394                         len = can_print_recv_list(page, len, &d->rx_fil, d->dev);
395                 } else
396                         len += snprintf(page + len, PAGE_SIZE - len,
397                                         "  (%s: no entry)\n", DNAME(d->dev));
398
399                 if (len > PAGE_SIZE - 100)
400                         break; /* exit on end of buffer */
401         }
402         rcu_read_unlock();
403
404         len += snprintf(page + len, PAGE_SIZE - len, "\n");
405
406         *eof = 1;
407         return len;
408 }
409
410 static int can_proc_read_rcvlist_inv(char *page, char **start, off_t off,
411                                      int count, int *eof, void *data)
412 {
413         int len = 0;
414         struct dev_rcv_lists *d;
415         struct hlist_node *n;
416
417         /* RX_INV */
418         len += snprintf(page + len, PAGE_SIZE - len,
419                         "\nreceive list 'rx_inv':\n");
420
421         /* find receive list for this device */
422         rcu_read_lock();
423         hlist_for_each_entry_rcu(d, n, &rx_dev_list, list) {
424
425                 if (!hlist_empty(&d->rx_inv)) {
426                         len = can_print_recv_banner(page, len);
427                         len = can_print_recv_list(page, len, &d->rx_inv, d->dev);
428                 } else
429                         len += snprintf(page + len, PAGE_SIZE - len,
430                                         "  (%s: no entry)\n", DNAME(d->dev));
431
432                 if (len > PAGE_SIZE - 100)
433                         break; /* exit on end of buffer */
434         }
435         rcu_read_unlock();
436
437         len += snprintf(page + len, PAGE_SIZE - len, "\n");
438
439         *eof = 1;
440         return len;
441 }
442
443 static int can_proc_read_rcvlist_sff(char *page, char **start, off_t off,
444                                      int count, int *eof, void *data)
445 {
446         int len = 0;
447         struct dev_rcv_lists *d;
448         struct hlist_node *n;
449
450         /* RX_SFF */
451         len += snprintf(page + len, PAGE_SIZE - len,
452                         "\nreceive list 'rx_sff':\n");
453
454         /* find receive list for this device */
455         rcu_read_lock();
456         hlist_for_each_entry_rcu(d, n, &rx_dev_list, list) {
457                 int i, all_empty = 1;
458                 /* check wether at least one list is non-empty */
459                 for (i = 0; i < 0x800; i++)
460                         if (!hlist_empty(&d->rx_sff[i])) {
461                                 all_empty = 0;
462                                 break;
463                         }
464
465                 if (!all_empty) {
466                         len = can_print_recv_banner(page, len);
467                         for (i = 0; i < 0x800; i++) {
468                                 if (!hlist_empty(&d->rx_sff[i]) && len < PAGE_SIZE - 100)
469                                         len = can_print_recv_list(page, len, &d->rx_sff[i], d->dev);
470                         }
471                 } else
472                         len += snprintf(page + len, PAGE_SIZE - len,
473                                         "  (%s: no entry)\n", DNAME(d->dev));
474
475                 if (len > PAGE_SIZE - 100)
476                         break; /* exit on end of buffer */
477         }
478         rcu_read_unlock();
479
480         len += snprintf(page + len, PAGE_SIZE - len, "\n");
481
482         *eof = 1;
483         return len;
484 }
485
486 static int can_proc_read_rcvlist_eff(char *page, char **start, off_t off,
487                                      int count, int *eof, void *data)
488 {
489         int len = 0;
490         struct dev_rcv_lists *d;
491         struct hlist_node *n;
492
493         /* RX_EFF */
494         len += snprintf(page + len, PAGE_SIZE - len,
495                         "\nreceive list 'rx_eff':\n");
496
497         /* find receive list for this device */
498         rcu_read_lock();
499         hlist_for_each_entry_rcu(d, n, &rx_dev_list, list) {
500
501                 if (!hlist_empty(&d->rx_eff)) {
502                         len = can_print_recv_banner(page, len);
503                         len = can_print_recv_list(page, len, &d->rx_eff, d->dev);
504                 } else
505                         len += snprintf(page + len, PAGE_SIZE - len,
506                                         "  (%s: no entry)\n", DNAME(d->dev));
507
508                 if (len > PAGE_SIZE - 100)
509                         break; /* exit on end of buffer */
510         }
511         rcu_read_unlock();
512
513         len += snprintf(page + len, PAGE_SIZE - len, "\n");
514
515         *eof = 1;
516         return len;
517 }
518
519 static int can_proc_read_rcvlist_err(char *page, char **start, off_t off,
520                                      int count, int *eof, void *data)
521 {
522         int len = 0;
523         struct dev_rcv_lists *d;
524         struct hlist_node *n;
525
526         /* RX_ERR */
527         len += snprintf(page + len, PAGE_SIZE - len,
528                         "\nreceive list 'rx_err':\n");
529
530         /* find receive list for this device */
531         rcu_read_lock();
532         hlist_for_each_entry_rcu(d, n, &rx_dev_list, list) {
533
534                 if (!hlist_empty(&d->rx_err)) {
535                         len = can_print_recv_banner(page, len);
536                         len = can_print_recv_list(page, len, &d->rx_err, d->dev);
537                 } else
538                         len += snprintf(page + len, PAGE_SIZE - len,
539                                         "  (%s: no entry)\n", DNAME(d->dev));
540
541                 if (len > PAGE_SIZE - 100)
542                         break; /* exit on end of buffer */
543         }
544         rcu_read_unlock();
545
546         len += snprintf(page + len, PAGE_SIZE - len, "\n");
547
548         *eof = 1;
549         return len;
550 }
551
552 /**************************************************/
553 /* proc utility functions                         */
554 /**************************************************/
555
556 static struct proc_dir_entry *can_create_proc_read_entry(const char *name, mode_t mode, read_proc_t* read_proc, void *data)
557 {
558         if (can_dir)
559                 return create_proc_read_entry(name, mode, can_dir, read_proc, data);
560         else
561                 return NULL;
562 }
563
564 static void can_remove_proc_entry(const char *name)
565 {
566         if (can_dir)
567                 remove_proc_entry(name, can_dir);
568 }
569
570 static unsigned long calc_rate(unsigned long oldjif, unsigned long newjif,
571                                unsigned long count)
572 {
573         unsigned long ret = 0;
574
575         if (oldjif == newjif)
576                 return 0;
577
578         /* see can_rcv() - this should NEVER happen! */
579         if (count > (ULONG_MAX / HZ)) {
580                 printk(KERN_ERR "af_can: calc_rate: count exceeded! %ld\n", count);
581                 return 99999999;
582         }
583
584         ret = (count * HZ) / (newjif - oldjif);
585
586         return ret;
587 }
588
589 /**************************************************/
590 /* af_can statistics stuff                        */
591 /**************************************************/
592
593 static void can_init_stats(int caller)
594 {
595         memset(&stats, 0, sizeof(stats));
596         stats.jiffies_init  = jiffies;
597         pstats.stats_reset++;
598 }
599
600 static void can_stat_update(unsigned long data)
601 {
602         unsigned long j = jiffies; /* snapshot */
603
604         //DBG("af_can: can_stat_update() jiffies = %ld\n", j);
605
606         if (j < stats.jiffies_init) /* jiffies overflow */
607                 can_init_stats(2);
608
609         /* stats.rx_frames is the definitively max. statistic value */
610
611         /* prevent overflow in calc_rate() */
612         if (stats.rx_frames > (ULONG_MAX / HZ))
613                 can_init_stats(3); /* restart */
614
615         /* matches overflow - very improbable */
616         if (stats.matches > (ULONG_MAX / 100))
617                 can_init_stats(4);
618
619         /* calc total values */
620         if (stats.rx_frames)
621                 stats.total_rx_match_ratio = (stats.matches * 100) / stats.rx_frames;
622
623         stats.total_tx_rate = calc_rate(stats.jiffies_init, j, stats.tx_frames);
624         stats.total_rx_rate = calc_rate(stats.jiffies_init, j, stats.rx_frames);
625
626         /* calc current values */
627         if (stats.rx_frames_delta)
628                 stats.current_rx_match_ratio =
629                         (stats.matches_delta * 100) / stats.rx_frames_delta;
630
631         stats.current_tx_rate = calc_rate(0, HZ, stats.tx_frames_delta);
632         stats.current_rx_rate = calc_rate(0, HZ, stats.rx_frames_delta);
633
634         /* check / update maximum values */
635         if (stats.max_tx_rate < stats.current_tx_rate)
636                 stats.max_tx_rate = stats.current_tx_rate;
637
638         if (stats.max_rx_rate < stats.current_rx_rate)
639                 stats.max_rx_rate = stats.current_rx_rate;
640
641         if (stats.max_rx_match_ratio < stats.current_rx_match_ratio)
642                 stats.max_rx_match_ratio = stats.current_rx_match_ratio;
643
644         /* clear values for 'current rate' calculation */
645         stats.tx_frames_delta = 0;
646         stats.rx_frames_delta = 0;
647         stats.matches_delta   = 0;
648
649         /* restart timer */
650         stattimer.expires = jiffies + HZ; /* every second */
651         add_timer(&stattimer);
652 }