#ifndef TSTAMPING_H #define TSTAMPING_H #include "config.h" #ifdef HAVE_HARDWARE_TIMESTAMPING extern int set_sockopt_hwtimestamp(int sock, const char *dev); #else static inline int set_sockopt_hwtimestamp(int sock, const char *dev) { return -1; } #endif #endif /* TSTAMPING_H */ ef='https://git.distanz.ch/cgit.cgi/linux/net-next.git/atom/samples/livepatch?h=master' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
path: root/samples/livepatch
diff options
context:
space:
mode:
authorLi Bin <huawei.libin@huawei.com>2014-12-19 14:11:17 +0800
committerJiri Kosina <jkosina@suse.cz>2014-12-22 15:40:49 +0100
commitb5bfc51707f1b56b0b733980bb4fcc0562bf02d8 (patch)
tree3b31bf562c78492f3ad304bb053426eb0f9bcbb6 /samples/livepatch
parent13d1cf7e702596e0cd8ec62afa6bd49c431f2d0c (diff)
livepatch: move x86 specific ftrace handler code to arch/x86
The execution flow redirection related implemention in the livepatch ftrace handler is depended on the specific architecture. This patch introduces klp_arch_set_pc(like kgdb_arch_set_pc) interface to change the pt_regs. Signed-off-by: Li Bin <huawei.libin@huawei.com> Acked-by: Josh Poimboeuf <jpoimboe@redhat.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'samples/livepatch')