1 // SPDX-License-Identifier: GPL-2.0 2 3 #if defined(__x86_64__) 4 5 /* 6 * Include usdt.h with default nop,nop5 instructions combo. 7 */ 8 #include "usdt.h" 9 10 __attribute__((aligned(16))) 11 void usdt_2(void) 12 { 13 USDT(optimized_attach, usdt_2); 14 } 15 16 #endif 17