mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 03:00:54 +07:00
samples/bpf: Fix broken tracex1 due to kprobe argument change
[ Upstream commit 137733d08f4ab14a354dacaa9a8fc35217747605 ]
>From commit c0bbbdc32f
("__netif_receive_skb_core: pass skb by
reference"), the first argument passed into __netif_receive_skb_core
has changed to reference of a skb pointer.
This commit fixes by using bpf_probe_read_kernel.
Signed-off-by: Yaqi Chen <chendotjs@gmail.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Yonghong Song <yhs@fb.com>
Link: https://lore.kernel.org/bpf/20210416154803.37157-1-chendotjs@gmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
d4b0dc31df
commit
799c395068
@ -26,7 +26,7 @@
|
|||||||
SEC("kprobe/__netif_receive_skb_core")
|
SEC("kprobe/__netif_receive_skb_core")
|
||||||
int bpf_prog1(struct pt_regs *ctx)
|
int bpf_prog1(struct pt_regs *ctx)
|
||||||
{
|
{
|
||||||
/* attaches to kprobe netif_receive_skb,
|
/* attaches to kprobe __netif_receive_skb_core,
|
||||||
* looks for packets on loobpack device and prints them
|
* looks for packets on loobpack device and prints them
|
||||||
*/
|
*/
|
||||||
char devname[IFNAMSIZ];
|
char devname[IFNAMSIZ];
|
||||||
@ -35,7 +35,7 @@ int bpf_prog1(struct pt_regs *ctx)
|
|||||||
int len;
|
int len;
|
||||||
|
|
||||||
/* non-portable! works for the given kernel only */
|
/* non-portable! works for the given kernel only */
|
||||||
skb = (struct sk_buff *) PT_REGS_PARM1(ctx);
|
bpf_probe_read_kernel(&skb, sizeof(skb), (void *)PT_REGS_PARM1(ctx));
|
||||||
dev = _(skb->dev);
|
dev = _(skb->dev);
|
||||||
len = _(skb->len);
|
len = _(skb->len);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user