696 lines · plain
1=================================2HOWTO interact with BPF subsystem3=================================4 5This document provides information for the BPF subsystem about various6workflows related to reporting bugs, submitting patches, and queueing7patches for stable kernels.8 9For general information about submitting patches, please refer to10Documentation/process/submitting-patches.rst. This document only describes11additional specifics related to BPF.12 13.. contents::14 :local:15 :depth: 216 17Reporting bugs18==============19 20Q: How do I report bugs for BPF kernel code?21--------------------------------------------22A: Since all BPF kernel development as well as bpftool and iproute2 BPF23loader development happens through the bpf kernel mailing list,24please report any found issues around BPF to the following mailing25list:26 27 bpf@vger.kernel.org28 29This may also include issues related to XDP, BPF tracing, etc.30 31Given netdev has a high volume of traffic, please also add the BPF32maintainers to Cc (from kernel ``MAINTAINERS`` file):33 34* Alexei Starovoitov <ast@kernel.org>35* Daniel Borkmann <daniel@iogearbox.net>36 37In case a buggy commit has already been identified, make sure to keep38the actual commit authors in Cc as well for the report. They can39typically be identified through the kernel's git tree.40 41**Please do NOT report BPF issues to bugzilla.kernel.org since it42is a guarantee that the reported issue will be overlooked.**43 44Submitting patches45==================46 47Q: How do I run BPF CI on my changes before sending them out for review?48------------------------------------------------------------------------49A: BPF CI is GitHub based and hosted at https://github.com/kernel-patches/bpf.50While GitHub also provides a CLI that can be used to accomplish the same51results, here we focus on the UI based workflow.52 53The following steps lay out how to start a CI run for your patches:54 55- Create a fork of the aforementioned repository in your own account (one time56 action)57 58- Clone the fork locally, check out a new branch tracking either the bpf-next59 or bpf branch, and apply your to-be-tested patches on top of it60 61- Push the local branch to your fork and create a pull request against62 kernel-patches/bpf's bpf-next_base or bpf_base branch, respectively63 64Shortly after the pull request has been created, the CI workflow will run. Note65that capacity is shared with patches submitted upstream being checked and so66depending on utilization the run can take a while to finish.67 68Note furthermore that both base branches (bpf-next_base and bpf_base) will be69updated as patches are pushed to the respective upstream branches they track. As70such, your patch set will automatically (be attempted to) be rebased as well.71This behavior can result in a CI run being aborted and restarted with the new72base line.73 74Q: To which mailing list do I need to submit my BPF patches?75------------------------------------------------------------76A: Please submit your BPF patches to the bpf kernel mailing list:77 78 bpf@vger.kernel.org79 80In case your patch has changes in various different subsystems (e.g.81networking, tracing, security, etc), make sure to Cc the related kernel mailing82lists and maintainers from there as well, so they are able to review83the changes and provide their Acked-by's to the patches.84 85Q: Where can I find patches currently under discussion for BPF subsystem?86-------------------------------------------------------------------------87A: All patches that are Cc'ed to netdev are queued for review under netdev88patchwork project:89 90 https://patchwork.kernel.org/project/netdevbpf/list/91 92Those patches which target BPF, are assigned to a 'bpf' delegate for93further processing from BPF maintainers. The current queue with94patches under review can be found at:95 96 https://patchwork.kernel.org/project/netdevbpf/list/?delegate=12117397 98Once the patches have been reviewed by the BPF community as a whole99and approved by the BPF maintainers, their status in patchwork will be100changed to 'Accepted' and the submitter will be notified by mail. This101means that the patches look good from a BPF perspective and have been102applied to one of the two BPF kernel trees.103 104In case feedback from the community requires a respin of the patches,105their status in patchwork will be set to 'Changes Requested', and purged106from the current review queue. Likewise for cases where patches would107get rejected or are not applicable to the BPF trees (but assigned to108the 'bpf' delegate).109 110Q: How do the changes make their way into Linux?111------------------------------------------------112A: There are two BPF kernel trees (git repositories). Once patches have113been accepted by the BPF maintainers, they will be applied to one114of the two BPF trees:115 116 * https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git/117 * https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git/118 119The bpf tree itself is for fixes only, whereas bpf-next for features,120cleanups or other kind of improvements ("next-like" content). This is121analogous to net and net-next trees for networking. Both bpf and122bpf-next will only have a master branch in order to simplify against123which branch patches should get rebased to.124 125Accumulated BPF patches in the bpf tree will regularly get pulled126into the net kernel tree. Likewise, accumulated BPF patches accepted127into the bpf-next tree will make their way into net-next tree. net and128net-next are both run by David S. Miller. From there, they will go129into the kernel mainline tree run by Linus Torvalds. To read up on the130process of net and net-next being merged into the mainline tree, see131the documentation on netdev subsystem at132Documentation/process/maintainer-netdev.rst.133 134 135 136Occasionally, to prevent merge conflicts, we might send pull requests137to other trees (e.g. tracing) with a small subset of the patches, but138net and net-next are always the main trees targeted for integration.139 140The pull requests will contain a high-level summary of the accumulated141patches and can be searched on netdev kernel mailing list through the142following subject lines (``yyyy-mm-dd`` is the date of the pull143request)::144 145 pull-request: bpf yyyy-mm-dd146 pull-request: bpf-next yyyy-mm-dd147 148Q: How do I indicate which tree (bpf vs. bpf-next) my patch should be applied to?149---------------------------------------------------------------------------------150 151A: The process is the very same as described in the netdev subsystem152documentation at Documentation/process/maintainer-netdev.rst,153so please read up on it. The subject line must indicate whether the154patch is a fix or rather "next-like" content in order to let the155maintainers know whether it is targeted at bpf or bpf-next.156 157For fixes eventually landing in bpf -> net tree, the subject must158look like::159 160 git format-patch --subject-prefix='PATCH bpf' start..finish161 162For features/improvements/etc that should eventually land in163bpf-next -> net-next, the subject must look like::164 165 git format-patch --subject-prefix='PATCH bpf-next' start..finish166 167If unsure whether the patch or patch series should go into bpf168or net directly, or bpf-next or net-next directly, it is not a169problem either if the subject line says net or net-next as target.170It is eventually up to the maintainers to do the delegation of171the patches.172 173If it is clear that patches should go into bpf or bpf-next tree,174please make sure to rebase the patches against those trees in175order to reduce potential conflicts.176 177In case the patch or patch series has to be reworked and sent out178again in a second or later revision, it is also required to add a179version number (``v2``, ``v3``, ...) into the subject prefix::180 181 git format-patch --subject-prefix='PATCH bpf-next v2' start..finish182 183When changes have been requested to the patch series, always send the184whole patch series again with the feedback incorporated (never send185individual diffs on top of the old series).186 187Q: What does it mean when a patch gets applied to bpf or bpf-next tree?188-----------------------------------------------------------------------189A: It means that the patch looks good for mainline inclusion from190a BPF point of view.191 192Be aware that this is not a final verdict that the patch will193automatically get accepted into net or net-next trees eventually:194 195On the bpf kernel mailing list reviews can come in at any point196in time. If discussions around a patch conclude that they cannot197get included as-is, we will either apply a follow-up fix or drop198them from the trees entirely. Therefore, we also reserve to rebase199the trees when deemed necessary. After all, the purpose of the tree200is to:201 202i) accumulate and stage BPF patches for integration into trees203 like net and net-next, and204 205ii) run extensive BPF test suite and206 workloads on the patches before they make their way any further.207 208Once the BPF pull request was accepted by David S. Miller, then209the patches end up in net or net-next tree, respectively, and210make their way from there further into mainline. Again, see the211documentation for netdev subsystem at212Documentation/process/maintainer-netdev.rst for additional information213e.g. on how often they are merged to mainline.214 215Q: How long do I need to wait for feedback on my BPF patches?216-------------------------------------------------------------217A: We try to keep the latency low. The usual time to feedback will218be around 2 or 3 business days. It may vary depending on the219complexity of changes and current patch load.220 221Q: How often do you send pull requests to major kernel trees like net or net-next?222----------------------------------------------------------------------------------223 224A: Pull requests will be sent out rather often in order to not225accumulate too many patches in bpf or bpf-next.226 227As a rule of thumb, expect pull requests for each tree regularly228at the end of the week. In some cases pull requests could additionally229come also in the middle of the week depending on the current patch230load or urgency.231 232Q: Are patches applied to bpf-next when the merge window is open?233-----------------------------------------------------------------234A: For the time when the merge window is open, bpf-next will not be235processed. This is roughly analogous to net-next patch processing,236so feel free to read up on the netdev docs at237Documentation/process/maintainer-netdev.rst about further details.238 239During those two weeks of merge window, we might ask you to resend240your patch series once bpf-next is open again. Once Linus released241a ``v*-rc1`` after the merge window, we continue processing of bpf-next.242 243For non-subscribers to kernel mailing lists, there is also a status244page run by David S. Miller on net-next that provides guidance:245 246 http://vger.kernel.org/~davem/net-next.html247 248Q: Verifier changes and test cases249----------------------------------250Q: I made a BPF verifier change, do I need to add test cases for251BPF kernel selftests_?252 253A: If the patch has changes to the behavior of the verifier, then yes,254it is absolutely necessary to add test cases to the BPF kernel255selftests_ suite. If they are not present and we think they are256needed, then we might ask for them before accepting any changes.257 258In particular, test_verifier.c is tracking a high number of BPF test259cases, including a lot of corner cases that LLVM BPF back end may260generate out of the restricted C code. Thus, adding test cases is261absolutely crucial to make sure future changes do not accidentally262affect prior use-cases. Thus, treat those test cases as: verifier263behavior that is not tracked in test_verifier.c could potentially264be subject to change.265 266Q: samples/bpf preference vs selftests?267---------------------------------------268Q: When should I add code to ``samples/bpf/`` and when to BPF kernel269selftests_?270 271A: In general, we prefer additions to BPF kernel selftests_ rather than272``samples/bpf/``. The rationale is very simple: kernel selftests are273regularly run by various bots to test for kernel regressions.274 275The more test cases we add to BPF selftests, the better the coverage276and the less likely it is that those could accidentally break. It is277not that BPF kernel selftests cannot demo how a specific feature can278be used.279 280That said, ``samples/bpf/`` may be a good place for people to get started,281so it might be advisable that simple demos of features could go into282``samples/bpf/``, but advanced functional and corner-case testing rather283into kernel selftests.284 285If your sample looks like a test case, then go for BPF kernel selftests286instead!287 288Q: When should I add code to the bpftool?289-----------------------------------------290A: The main purpose of bpftool (under tools/bpf/bpftool/) is to provide291a central user space tool for debugging and introspection of BPF programs292and maps that are active in the kernel. If UAPI changes related to BPF293enable for dumping additional information of programs or maps, then294bpftool should be extended as well to support dumping them.295 296Q: When should I add code to iproute2's BPF loader?297---------------------------------------------------298A: For UAPI changes related to the XDP or tc layer (e.g. ``cls_bpf``),299the convention is that those control-path related changes are added to300iproute2's BPF loader as well from user space side. This is not only301useful to have UAPI changes properly designed to be usable, but also302to make those changes available to a wider user base of major303downstream distributions.304 305Q: Do you accept patches as well for iproute2's BPF loader?306-----------------------------------------------------------307A: Patches for the iproute2's BPF loader have to be sent to:308 309 netdev@vger.kernel.org310 311While those patches are not processed by the BPF kernel maintainers,312please keep them in Cc as well, so they can be reviewed.313 314The official git repository for iproute2 is run by Stephen Hemminger315and can be found at:316 317 https://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git/318 319The patches need to have a subject prefix of '``[PATCH iproute2320master]``' or '``[PATCH iproute2 net-next]``'. '``master``' or321'``net-next``' describes the target branch where the patch should be322applied to. Meaning, if kernel changes went into the net-next kernel323tree, then the related iproute2 changes need to go into the iproute2324net-next branch, otherwise they can be targeted at master branch. The325iproute2 net-next branch will get merged into the master branch after326the current iproute2 version from master has been released.327 328Like BPF, the patches end up in patchwork under the netdev project and329are delegated to 'shemminger' for further processing:330 331 http://patchwork.ozlabs.org/project/netdev/list/?delegate=389332 333Q: What is the minimum requirement before I submit my BPF patches?334------------------------------------------------------------------335A: When submitting patches, always take the time and properly test your336patches *prior* to submission. Never rush them! If maintainers find337that your patches have not been properly tested, it is a good way to338get them grumpy. Testing patch submissions is a hard requirement!339 340Note, fixes that go to bpf tree *must* have a ``Fixes:`` tag included.341The same applies to fixes that target bpf-next, where the affected342commit is in net-next (or in some cases bpf-next). The ``Fixes:`` tag is343crucial in order to identify follow-up commits and tremendously helps344for people having to do backporting, so it is a must have!345 346We also don't accept patches with an empty commit message. Take your347time and properly write up a high quality commit message, it is348essential!349 350Think about it this way: other developers looking at your code a month351from now need to understand *why* a certain change has been done that352way, and whether there have been flaws in the analysis or assumptions353that the original author did. Thus providing a proper rationale and354describing the use-case for the changes is a must.355 356Patch submissions with >1 patch must have a cover letter which includes357a high level description of the series. This high level summary will358then be placed into the merge commit by the BPF maintainers such that359it is also accessible from the git log for future reference.360 361Q: Features changing BPF JIT and/or LLVM362----------------------------------------363Q: What do I need to consider when adding a new instruction or feature364that would require BPF JIT and/or LLVM integration as well?365 366A: We try hard to keep all BPF JITs up to date such that the same user367experience can be guaranteed when running BPF programs on different368architectures without having the program punt to the less efficient369interpreter in case the in-kernel BPF JIT is enabled.370 371If you are unable to implement or test the required JIT changes for372certain architectures, please work together with the related BPF JIT373developers in order to get the feature implemented in a timely manner.374Please refer to the git log (``arch/*/net/``) to locate the necessary375people for helping out.376 377Also always make sure to add BPF test cases (e.g. test_bpf.c and378test_verifier.c) for new instructions, so that they can receive379broad test coverage and help run-time testing the various BPF JITs.380 381In case of new BPF instructions, once the changes have been accepted382into the Linux kernel, please implement support into LLVM's BPF back383end. See LLVM_ section below for further information.384 385Stable submission386=================387 388Q: I need a specific BPF commit in stable kernels. What should I do?389--------------------------------------------------------------------390A: In case you need a specific fix in stable kernels, first check whether391the commit has already been applied in the related ``linux-*.y`` branches:392 393 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git/394 395If not the case, then drop an email to the BPF maintainers with the396netdev kernel mailing list in Cc and ask for the fix to be queued up:397 398 netdev@vger.kernel.org399 400The process in general is the same as on netdev itself, see also the401the documentation on networking subsystem at402Documentation/process/maintainer-netdev.rst.403 404Q: Do you also backport to kernels not currently maintained as stable?405----------------------------------------------------------------------406A: No. If you need a specific BPF commit in kernels that are currently not407maintained by the stable maintainers, then you are on your own.408 409The current stable and longterm stable kernels are all listed here:410 411 https://www.kernel.org/412 413Q: The BPF patch I am about to submit needs to go to stable as well414-------------------------------------------------------------------415What should I do?416 417A: The same rules apply as with netdev patch submissions in general, see418the netdev docs at Documentation/process/maintainer-netdev.rst.419 420Never add "``Cc: stable@vger.kernel.org``" to the patch description, but421ask the BPF maintainers to queue the patches instead. This can be done422with a note, for example, under the ``---`` part of the patch which does423not go into the git log. Alternatively, this can be done as a simple424request by mail instead.425 426Q: Queue stable patches427-----------------------428Q: Where do I find currently queued BPF patches that will be submitted429to stable?430 431A: Once patches that fix critical bugs got applied into the bpf tree, they432are queued up for stable submission under:433 434 http://patchwork.ozlabs.org/bundle/bpf/stable/?state=*435 436They will be on hold there at minimum until the related commit made its437way into the mainline kernel tree.438 439After having been under broader exposure, the queued patches will be440submitted by the BPF maintainers to the stable maintainers.441 442Testing patches443===============444 445Q: How to run BPF selftests446---------------------------447A: After you have booted into the newly compiled kernel, navigate to448the BPF selftests_ suite in order to test BPF functionality (current449working directory points to the root of the cloned git tree)::450 451 $ cd tools/testing/selftests/bpf/452 $ make453 454To run the verifier tests::455 456 $ sudo ./test_verifier457 458The verifier tests print out all the current checks being459performed. The summary at the end of running all tests will dump460information of test successes and failures::461 462 Summary: 418 PASSED, 0 FAILED463 464In order to run through all BPF selftests, the following command is465needed::466 467 $ sudo make run_tests468 469See :doc:`kernel selftest documentation </dev-tools/kselftest>`470for details.471 472To maximize the number of tests passing, the .config of the kernel473under test should match the config file fragment in474tools/testing/selftests/bpf as closely as possible.475 476Finally to ensure support for latest BPF Type Format features -477discussed in Documentation/bpf/btf.rst - pahole version 1.16478is required for kernels built with CONFIG_DEBUG_INFO_BTF=y.479pahole is delivered in the dwarves package or can be built480from source at481 482https://github.com/acmel/dwarves483 484pahole starts to use libbpf definitions and APIs since v1.13 after the485commit 21507cd3e97b ("pahole: add libbpf as submodule under lib/bpf").486It works well with the git repository because the libbpf submodule will487use "git submodule update --init --recursive" to update.488 489Unfortunately, the default github release source code does not contain490libbpf submodule source code and this will cause build issues, the tarball491from https://git.kernel.org/pub/scm/devel/pahole/pahole.git/ is same with492github, you can get the source tarball with corresponding libbpf submodule493codes from494 495https://fedorapeople.org/~acme/dwarves496 497Some distros have pahole version 1.16 packaged already, e.g.498Fedora, Gentoo.499 500Q: Which BPF kernel selftests version should I run my kernel against?501---------------------------------------------------------------------502A: If you run a kernel ``xyz``, then always run the BPF kernel selftests503from that kernel ``xyz`` as well. Do not expect that the BPF selftest504from the latest mainline tree will pass all the time.505 506In particular, test_bpf.c and test_verifier.c have a large number of507test cases and are constantly updated with new BPF test sequences, or508existing ones are adapted to verifier changes e.g. due to verifier509becoming smarter and being able to better track certain things.510 511LLVM512====513 514Q: Where do I find LLVM with BPF support?515-----------------------------------------516A: The BPF back end for LLVM is upstream in LLVM since version 3.7.1.517 518All major distributions these days ship LLVM with BPF back end enabled,519so for the majority of use-cases it is not required to compile LLVM by520hand anymore, just install the distribution provided package.521 522LLVM's static compiler lists the supported targets through523``llc --version``, make sure BPF targets are listed. Example::524 525 $ llc --version526 LLVM (http://llvm.org/):527 LLVM version 10.0.0528 Optimized build.529 Default target: x86_64-unknown-linux-gnu530 Host CPU: skylake531 532 Registered Targets:533 aarch64 - AArch64 (little endian)534 bpf - BPF (host endian)535 bpfeb - BPF (big endian)536 bpfel - BPF (little endian)537 x86 - 32-bit X86: Pentium-Pro and above538 x86-64 - 64-bit X86: EM64T and AMD64539 540For developers in order to utilize the latest features added to LLVM's541BPF back end, it is advisable to run the latest LLVM releases. Support542for new BPF kernel features such as additions to the BPF instruction543set are often developed together.544 545All LLVM releases can be found at: http://releases.llvm.org/546 547Q: Got it, so how do I build LLVM manually anyway?548--------------------------------------------------549A: We recommend that developers who want the fastest incremental builds550use the Ninja build system, you can find it in your system's package551manager, usually the package is ninja or ninja-build.552 553You need ninja, cmake and gcc-c++ as build requisites for LLVM. Once you554have that set up, proceed with building the latest LLVM and clang version555from the git repositories::556 557 $ git clone https://github.com/llvm/llvm-project.git558 $ mkdir -p llvm-project/llvm/build559 $ cd llvm-project/llvm/build560 $ cmake .. -G "Ninja" -DLLVM_TARGETS_TO_BUILD="BPF;X86" \561 -DLLVM_ENABLE_PROJECTS="clang" \562 -DCMAKE_BUILD_TYPE=Release \563 -DLLVM_BUILD_RUNTIME=OFF564 $ ninja565 566The built binaries can then be found in the build/bin/ directory, where567you can point the PATH variable to.568 569Set ``-DLLVM_TARGETS_TO_BUILD`` equal to the target you wish to build, you570will find a full list of targets within the llvm-project/llvm/lib/Target571directory.572 573Q: Reporting LLVM BPF issues574----------------------------575Q: Should I notify BPF kernel maintainers about issues in LLVM's BPF code576generation back end or about LLVM generated code that the verifier577refuses to accept?578 579A: Yes, please do!580 581LLVM's BPF back end is a key piece of the whole BPF582infrastructure and it ties deeply into verification of programs from the583kernel side. Therefore, any issues on either side need to be investigated584and fixed whenever necessary.585 586Therefore, please make sure to bring them up at netdev kernel mailing587list and Cc BPF maintainers for LLVM and kernel bits:588 589* Yonghong Song <yhs@fb.com>590* Alexei Starovoitov <ast@kernel.org>591* Daniel Borkmann <daniel@iogearbox.net>592 593LLVM also has an issue tracker where BPF related bugs can be found:594 595 https://bugs.llvm.org/buglist.cgi?quicksearch=bpf596 597However, it is better to reach out through mailing lists with having598maintainers in Cc.599 600Q: New BPF instruction for kernel and LLVM601------------------------------------------602Q: I have added a new BPF instruction to the kernel, how can I integrate603it into LLVM?604 605A: LLVM has a ``-mcpu`` selector for the BPF back end in order to allow606the selection of BPF instruction set extensions. By default the607``generic`` processor target is used, which is the base instruction set608(v1) of BPF.609 610LLVM has an option to select ``-mcpu=probe`` where it will probe the host611kernel for supported BPF instruction set extensions and selects the612optimal set automatically.613 614For cross-compilation, a specific version can be select manually as well ::615 616 $ llc -march bpf -mcpu=help617 Available CPUs for this target:618 619 generic - Select the generic processor.620 probe - Select the probe processor.621 v1 - Select the v1 processor.622 v2 - Select the v2 processor.623 [...]624 625Newly added BPF instructions to the Linux kernel need to follow the same626scheme, bump the instruction set version and implement probing for the627extensions such that ``-mcpu=probe`` users can benefit from the628optimization transparently when upgrading their kernels.629 630If you are unable to implement support for the newly added BPF instruction631please reach out to BPF developers for help.632 633By the way, the BPF kernel selftests run with ``-mcpu=probe`` for better634test coverage.635 636Q: clang flag for target bpf?637-----------------------------638Q: In some cases clang flag ``--target=bpf`` is used but in other cases the639default clang target, which matches the underlying architecture, is used.640What is the difference and when I should use which?641 642A: Although LLVM IR generation and optimization try to stay architecture643independent, ``--target=<arch>`` still has some impact on generated code:644 645- BPF program may recursively include header file(s) with file scope646 inline assembly codes. The default target can handle this well,647 while ``bpf`` target may fail if bpf backend assembler does not648 understand these assembly codes, which is true in most cases.649 650- When compiled without ``-g``, additional elf sections, e.g.,651 .eh_frame and .rela.eh_frame, may be present in the object file652 with default target, but not with ``bpf`` target.653 654- The default target may turn a C switch statement into a switch table655 lookup and jump operation. Since the switch table is placed656 in the global readonly section, the bpf program will fail to load.657 The bpf target does not support switch table optimization.658 The clang option ``-fno-jump-tables`` can be used to disable659 switch table generation.660 661- For clang ``--target=bpf``, it is guaranteed that pointer or long /662 unsigned long types will always have a width of 64 bit, no matter663 whether underlying clang binary or default target (or kernel) is664 32 bit. However, when native clang target is used, then it will665 compile these types based on the underlying architecture's conventions,666 meaning in case of 32 bit architecture, pointer or long / unsigned667 long types e.g. in BPF context structure will have width of 32 bit668 while the BPF LLVM back end still operates in 64 bit. The native669 target is mostly needed in tracing for the case of walking ``pt_regs``670 or other kernel structures where CPU's register width matters.671 Otherwise, ``clang --target=bpf`` is generally recommended.672 673You should use default target when:674 675- Your program includes a header file, e.g., ptrace.h, which eventually676 pulls in some header files containing file scope host assembly codes.677 678- You can add ``-fno-jump-tables`` to work around the switch table issue.679 680Otherwise, you can use ``bpf`` target. Additionally, you *must* use bpf target681when:682 683- Your program uses data structures with pointer or long / unsigned long684 types that interface with BPF helpers or context data structures. Access685 into these structures is verified by the BPF verifier and may result686 in verification failures if the native architecture is not aligned with687 the BPF architecture, e.g. 64-bit. An example of this is688 BPF_PROG_TYPE_SK_MSG require ``--target=bpf``689 690 691.. Links692.. _selftests:693 https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/tools/testing/selftests/bpf/694 695Happy BPF hacking!696