/Linux-v5.15/samples/bpf/ |
D | test_lwt_bpf.c | 93 uint32_t new_ip, int rw_daddr) in rewrite() argument 120 ret = bpf_l4_csum_replace(skb, off, old_ip, new_ip, in rewrite() 121 flags | sizeof(new_ip)); in rewrite() 128 ret = bpf_l3_csum_replace(skb, IP_CSUM_OFF, old_ip, new_ip, sizeof(new_ip)); in rewrite() 135 ret = bpf_skb_store_bytes(skb, IP_DST_OFF, &new_ip, sizeof(new_ip), 0); in rewrite() 137 ret = bpf_skb_store_bytes(skb, IP_SRC_OFF, &new_ip, sizeof(new_ip), 0); in rewrite() 151 uint32_t old_ip, new_ip = 0x3fea8c0; in do_test_rewrite() local 161 printk("out: rewriting from %x to %x\n", old_ip, new_ip); in do_test_rewrite() 162 return rewrite(skb, old_ip, new_ip, 1); in do_test_rewrite()
|
D | tcbpf1_kern.c | 37 static inline void set_tcp_ip_src(struct __sk_buff *skb, __u32 new_ip) in set_tcp_ip_src() argument 41 bpf_l4_csum_replace(skb, TCP_CSUM_OFF, old_ip, new_ip, IS_PSEUDO | sizeof(new_ip)); in set_tcp_ip_src() 42 bpf_l3_csum_replace(skb, IP_CSUM_OFF, old_ip, new_ip, sizeof(new_ip)); in set_tcp_ip_src() 43 bpf_skb_store_bytes(skb, IP_SRC_OFF, &new_ip, sizeof(new_ip), 0); in set_tcp_ip_src()
|
/Linux-v5.15/fs/jfs/ |
D | namei.c | 1069 struct inode *new_ip; in jfs_rename() local 1096 new_ip = d_inode(new_dentry); in jfs_rename() 1118 if ((!new_ip) || (ino != new_ip->i_ino)) { in jfs_rename() 1124 else if (new_ip) { in jfs_rename() 1131 if (new_ip) { in jfs_rename() 1132 if (!dtEmpty(new_ip)) { in jfs_rename() 1137 } else if (new_ip) { in jfs_rename() 1138 IWRITE_LOCK(new_ip, RDWRLOCK_NORMAL); in jfs_rename() 1140 rc = dquot_initialize(new_ip); in jfs_rename() 1162 if (new_ip) { in jfs_rename() [all …]
|
/Linux-v5.15/net/netfilter/ |
D | xt_NETMAP.c | 73 __be32 new_ip, netmask; in netmap_tg4() local 87 new_ip = ip_hdr(skb)->daddr & ~netmask; in netmap_tg4() 89 new_ip = ip_hdr(skb)->saddr & ~netmask; in netmap_tg4() 90 new_ip |= mr->range[0].min_ip & netmask; in netmap_tg4() 95 newrange.min_addr.ip = new_ip; in netmap_tg4() 96 newrange.max_addr.ip = new_ip; in netmap_tg4()
|
/Linux-v5.15/fs/ |
D | compat_binfmt_elf.c | 104 #define COMPAT_START_THREAD(ex, regs, new_ip, new_sp) \ argument 105 compat_start_thread(regs, new_ip, new_sp)
|
/Linux-v5.15/arch/x86/kernel/ |
D | process_64.c | 505 start_thread_common(struct pt_regs *regs, unsigned long new_ip, in start_thread_common() argument 522 regs->ip = new_ip; in start_thread_common() 530 start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp) in start_thread() argument 532 start_thread_common(regs, new_ip, new_sp, in start_thread() 538 void compat_start_thread(struct pt_regs *regs, u32 new_ip, u32 new_sp, bool x32) in compat_start_thread() argument 540 start_thread_common(regs, new_ip, new_sp, in compat_start_thread()
|
D | process_32.c | 115 start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp) in start_thread() argument 123 regs->ip = new_ip; in start_thread()
|
D | uprobes.c | 640 unsigned long new_ip = regs->ip += auprobe->branch.ilen; in branch_emulate_op() local 653 if (emulate_push_stack(regs, new_ip)) in branch_emulate_op() 659 regs->ip = new_ip + offs; in branch_emulate_op()
|
/Linux-v5.15/arch/x86/include/asm/ |
D | elf.h | 189 void compat_start_thread(struct pt_regs *regs, u32 new_ip, u32 new_sp, bool x32); 190 #define COMPAT_START_THREAD(ex, regs, new_ip, new_sp) \ argument 191 compat_start_thread(regs, new_ip, new_sp, ex->e_machine == EM_X86_64)
|
D | processor.h | 779 extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
|
/Linux-v5.15/arch/ia64/include/asm/ |
D | processor.h | 300 #define start_thread(regs,new_ip,new_sp) do { \ argument 303 regs->cr_iip = new_ip; \
|