Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:sxdp
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/tools/lib/bpf/
H
A
D
xsk.c
708
struct sockaddr_xdp
sxdp
= {};
in xsk_socket__create_shared()
local
836
sxdp
.sxdp_family = PF_XDP;
in xsk_socket__create_shared()
837
sxdp
.sxdp_ifindex = ctx->ifindex;
in xsk_socket__create_shared()
838
sxdp
.sxdp_queue_id = ctx->queue_id;
in xsk_socket__create_shared()
840
sxdp
.sxdp_flags |= XDP_SHARED_UMEM;
in xsk_socket__create_shared()
841
sxdp
.sxdp_shared_umem_fd = umem->fd;
in xsk_socket__create_shared()
843
sxdp
.sxdp_flags = xsk->config.bind_flags;
in xsk_socket__create_shared()
846
err = bind(xsk->fd, (struct sockaddr *)&
sxdp
, sizeof(
sxdp
));
in xsk_socket__create_shared()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H
A
D
xsk.c
547
struct sockaddr_xdp
sxdp
= {};
in xsk_socket__create_shared()
local
667
sxdp
.sxdp_family = PF_XDP;
in xsk_socket__create_shared()
668
sxdp
.sxdp_ifindex = ctx->ifindex;
in xsk_socket__create_shared()
669
sxdp
.sxdp_queue_id = ctx->queue_id;
in xsk_socket__create_shared()
671
sxdp
.sxdp_flags |= XDP_SHARED_UMEM;
in xsk_socket__create_shared()
672
sxdp
.sxdp_shared_umem_fd = umem->fd;
in xsk_socket__create_shared()
674
sxdp
.sxdp_flags = xsk->config.bind_flags;
in xsk_socket__create_shared()
677
err = bind(xsk->fd, (struct sockaddr *)&
sxdp
, sizeof(
sxdp
));
in xsk_socket__create_shared()
/kernel/linux/linux-5.10/net/xdp/
H
A
D
xsk.c
666
struct sockaddr_xdp *
sxdp
= (struct sockaddr_xdp *)addr;
in xsk_bind()
local
676
if (
sxdp
->sxdp_family != AF_XDP)
in xsk_bind()
679
flags =
sxdp
->sxdp_flags;
in xsk_bind()
685
if (bound_dev_if && bound_dev_if !=
sxdp
->sxdp_ifindex)
in xsk_bind()
695
dev = dev_get_by_index(sock_net(sk),
sxdp
->sxdp_ifindex);
in xsk_bind()
706
qid =
sxdp
->sxdp_queue_id;
in xsk_bind()
725
sock = xsk_lookup_xsk_from_fd(
sxdp
->sxdp_shared_umem_fd);
in xsk_bind()
/kernel/linux/linux-6.6/net/xdp/
H
A
D
xsk.c
1088
struct sockaddr_xdp *
sxdp
= (struct sockaddr_xdp *)addr;
in xsk_bind()
local
1098
if (
sxdp
->sxdp_family != AF_XDP)
in xsk_bind()
1101
flags =
sxdp
->sxdp_flags;
in xsk_bind()
1107
if (bound_dev_if && bound_dev_if !=
sxdp
->sxdp_ifindex)
in xsk_bind()
1117
dev = dev_get_by_index(sock_net(sk),
sxdp
->sxdp_ifindex);
in xsk_bind()
1128
qid =
sxdp
->sxdp_queue_id;
in xsk_bind()
1147
sock = xsk_lookup_xsk_from_fd(
sxdp
->sxdp_shared_umem_fd);
in xsk_bind()
Completed in 7 milliseconds