Skip to content

Commit

Permalink
Merge branch 'refs/heads/upstream-HEAD' into repo-HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
Delphix Engineering committed Nov 7, 2024
2 parents e460008 + 127dde9 commit dfd89fa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion contrib/bpf_inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,10 @@ def __repr__(self):
id_ = self.prog.aux.id.value_()
type_ = BpfProgType(self.prog.type).name
name = self.get_prog_name()
tail_call_reachable = self.prog.aux.tail_call_reachable.value_()
try:
tail_call_reachable = self.prog.aux.member_("tail_call_reachable").value_()
except LookupError:
tail_call_reachable = None

tail_call_desc = " tail_call_reachable" if tail_call_reachable else ""

Expand Down

0 comments on commit dfd89fa

Please sign in to comment.