├── .gitignore ├── DESIGN ├── Makefile.am ├── README ├── TODO ├── autogen.sh ├── configure.ac ├── irqd.8 ├── irqd.spec ├── irqdrc.5 ├── rc.irqd ├── src ├── Makefile.am ├── cfg_grammar.y ├── cfg_lex.l ├── cpu.c ├── cpu.h ├── device.h ├── evenly.c ├── event.c ├── event.h ├── interface.c ├── interface.h ├── irqd.c ├── irqd.h ├── log.c └── strategy.c └── tests ├── interrupts ├── interrupts-625 ├── interrupts-test ├── interrupts-test-shared ├── irqdrc └── irqdrc-auto-assign /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/.gitignore -------------------------------------------------------------------------------- /DESIGN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/DESIGN -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | autoreconf -fi; 4 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/configure.ac -------------------------------------------------------------------------------- /irqd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/irqd.8 -------------------------------------------------------------------------------- /irqd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/irqd.spec -------------------------------------------------------------------------------- /irqdrc.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/irqdrc.5 -------------------------------------------------------------------------------- /rc.irqd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/rc.irqd -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/cfg_grammar.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/cfg_grammar.y -------------------------------------------------------------------------------- /src/cfg_lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/cfg_lex.l -------------------------------------------------------------------------------- /src/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/cpu.c -------------------------------------------------------------------------------- /src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/cpu.h -------------------------------------------------------------------------------- /src/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/device.h -------------------------------------------------------------------------------- /src/evenly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/evenly.c -------------------------------------------------------------------------------- /src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/event.c -------------------------------------------------------------------------------- /src/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/event.h -------------------------------------------------------------------------------- /src/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/interface.c -------------------------------------------------------------------------------- /src/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/interface.h -------------------------------------------------------------------------------- /src/irqd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/irqd.c -------------------------------------------------------------------------------- /src/irqd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/irqd.h -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/log.c -------------------------------------------------------------------------------- /src/strategy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/src/strategy.c -------------------------------------------------------------------------------- /tests/interrupts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/tests/interrupts -------------------------------------------------------------------------------- /tests/interrupts-625: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/tests/interrupts-625 -------------------------------------------------------------------------------- /tests/interrupts-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/tests/interrupts-test -------------------------------------------------------------------------------- /tests/interrupts-test-shared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/tests/interrupts-test-shared -------------------------------------------------------------------------------- /tests/irqdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/tests/irqdrc -------------------------------------------------------------------------------- /tests/irqdrc-auto-assign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaesoo/irqd/HEAD/tests/irqdrc-auto-assign --------------------------------------------------------------------------------