/* Copyright (c) 2012 Coraid, Inc. See COPYING for GPL terms. */ /* * aoemain.c * Module initialization routines, discover timer */ #include <linux/hdreg.h> #include <linux/blkdev.h> #include <linux/module.h> #include <linux/skbuff.h> #include "aoe.h" MODULE_LICENSE("GPL"); MODULE_AUTHOR("Sam Hopkins <sah@coraid.com>"); MODULE_DESCRIPTION("AoE block/char driver for 2.6.2 and newer 2.6 kernels"); MODULE_VERSION(VERSION); static struct timer_list timer;
static void discover_timer(struct timer_list *t) { mod_timer(t, jiffies + HZ * 60); /* one minute */ aoecmd_cfg(0xffff, 0xff); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ed L. Cashin | 23 | 76.67% | 1 | 50.00% |
Kees Cook | 7 | 23.33% | 1 | 50.00% |
Total | 30 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ed L. Cashin | 34 | 91.89% | 3 | 75.00% |
Kees Cook | 3 | 8.11% | 1 | 25.00% |
Total | 37 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ed L. Cashin | 147 | 92.45% | 4 | 80.00% |
Kees Cook | 12 | 7.55% | 1 | 20.00% |
Total | 159 | 100.00% | 5 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ed L. Cashin | 248 | 89.21% | 7 | 77.78% |
Kees Cook | 27 | 9.71% | 1 | 11.11% |
David S. Miller | 3 | 1.08% | 1 | 11.11% |
Total | 278 | 100.00% | 9 | 100.00% |