/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_TIMEX_H #define __ASM_GENERIC_TIMEX_H /* * If you have a cycle counter, return the value here. */ typedef unsigned long cycles_t; #ifndef get_cycles static inline cycles_t get_cycles(void) { return 0; } #endif /* * Architectures are encouraged to implement read_current_timer * and define this in order to avoid the expensive delay loop * calibration during boot. */ #undef ARCH_HAS_READ_CURRENT_TIMER #endif /* __ASM_GENERIC_TIMEX_H */ er'> cgit logo index : linux-net-next.git
Unnamed repository; edit this file 'description' to name the repository.Russell King
summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Expand)Author
2020-02-20selftests/bpf: Fix trampoline_count clean up logicAndrii Nakryiko
2020-02-20selftests/bpf: Update xdp_bpf2bpf test to use new set_attach_target APIEelco Chaudron
2020-02-20libbpf: Add support for dynamic program attach targetEelco Chaudron
2020-02-20libbpf: Bump libpf current version to v0.0.8Eelco Chaudron
2020-02-20libbpf: Relax check whether BTF is mandatoryAndrii Nakryiko
2020-02-20selftests/bpf: Fix build of sockmap_ktls.cAlexei Starovoitov
2020-02-19selftests/bpf: Change llvm flag -mcpu=probe to -mcpu=v3Yonghong Song