├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── attic └── tsc.h ├── bench_syscalls.cc ├── doc ├── osjitter-atom-C3758-half-hz.txt ├── osjitter-atom-C3758-hz.txt ├── pingpong-atom-C3758-half-hz.txt ├── pingpong-atom-C3758-write-early-enabled.txt └── pingpong-atom-C3758.txt ├── helper ├── bench2tidy.py └── bench_playbook.py ├── makefile ├── osjitter.c ├── pingpong.c ├── ptp-clock-future.h ├── ptp-clock-offset.c ├── tsc.h ├── tuned ├── gs-isol-cpus-half-hz │ ├── tuned.conf │ └── vars.conf ├── gs-isol-cpus-hz │ ├── tuned.conf │ └── vars.conf ├── gs-isol-cpus │ ├── tuned.conf │ └── vars.conf └── gs-latency │ └── tuned.conf ├── util.c └── util.h /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/README.md -------------------------------------------------------------------------------- /attic/tsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/attic/tsc.h -------------------------------------------------------------------------------- /bench_syscalls.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/bench_syscalls.cc -------------------------------------------------------------------------------- /doc/osjitter-atom-C3758-half-hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/doc/osjitter-atom-C3758-half-hz.txt -------------------------------------------------------------------------------- /doc/osjitter-atom-C3758-hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/doc/osjitter-atom-C3758-hz.txt -------------------------------------------------------------------------------- /doc/pingpong-atom-C3758-half-hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/doc/pingpong-atom-C3758-half-hz.txt -------------------------------------------------------------------------------- /doc/pingpong-atom-C3758-write-early-enabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/doc/pingpong-atom-C3758-write-early-enabled.txt -------------------------------------------------------------------------------- /doc/pingpong-atom-C3758.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/doc/pingpong-atom-C3758.txt -------------------------------------------------------------------------------- /helper/bench2tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/helper/bench2tidy.py -------------------------------------------------------------------------------- /helper/bench_playbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/helper/bench_playbook.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/makefile -------------------------------------------------------------------------------- /osjitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/osjitter.c -------------------------------------------------------------------------------- /pingpong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/pingpong.c -------------------------------------------------------------------------------- /ptp-clock-future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/ptp-clock-future.h -------------------------------------------------------------------------------- /ptp-clock-offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/ptp-clock-offset.c -------------------------------------------------------------------------------- /tsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/tsc.h -------------------------------------------------------------------------------- /tuned/gs-isol-cpus-half-hz/tuned.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/tuned/gs-isol-cpus-half-hz/tuned.conf -------------------------------------------------------------------------------- /tuned/gs-isol-cpus-half-hz/vars.conf: -------------------------------------------------------------------------------- 1 | isolated_cores=5-7 2 | -------------------------------------------------------------------------------- /tuned/gs-isol-cpus-hz/tuned.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/tuned/gs-isol-cpus-hz/tuned.conf -------------------------------------------------------------------------------- /tuned/gs-isol-cpus-hz/vars.conf: -------------------------------------------------------------------------------- 1 | isolated_cores=5-7 2 | -------------------------------------------------------------------------------- /tuned/gs-isol-cpus/tuned.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/tuned/gs-isol-cpus/tuned.conf -------------------------------------------------------------------------------- /tuned/gs-isol-cpus/vars.conf: -------------------------------------------------------------------------------- 1 | isolated_cores=5-7 2 | -------------------------------------------------------------------------------- /tuned/gs-latency/tuned.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/tuned/gs-latency/tuned.conf -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsauthof/osjitter/HEAD/util.h --------------------------------------------------------------------------------