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:old_xs
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-5.10/net/xdp/
H
A
D
xskmap.c
166
struct xdp_sock *xs, *
old_xs
, **map_entry;
in xsk_map_update_elem()
local
196
old_xs
= READ_ONCE(*map_entry);
in xsk_map_update_elem()
197
if (
old_xs
== xs) {
in xsk_map_update_elem()
200
} else if (
old_xs
&& map_flags == BPF_NOEXIST) {
in xsk_map_update_elem()
203
} else if (!
old_xs
&& map_flags == BPF_EXIST) {
in xsk_map_update_elem()
209
if (
old_xs
)
in xsk_map_update_elem()
210
xsk_map_sock_delete(
old_xs
, map_entry);
in xsk_map_update_elem()
225
struct xdp_sock *
old_xs
, **map_entry;
in xsk_map_delete_elem()
local
233
old_xs
= xchg(map_entry, NULL);
in xsk_map_delete_elem()
234
if (
old_xs
)
in xsk_map_delete_elem()
[all...]
/kernel/linux/linux-6.6/net/xdp/
H
A
D
xskmap.c
166
struct xdp_sock *xs, *
old_xs
;
in xsk_map_update_elem()
local
196
old_xs
= rcu_dereference_protected(*map_entry, lockdep_is_held(&m->lock));
in xsk_map_update_elem()
197
if (
old_xs
== xs) {
in xsk_map_update_elem()
200
} else if (
old_xs
&& map_flags == BPF_NOEXIST) {
in xsk_map_update_elem()
203
} else if (!
old_xs
&& map_flags == BPF_EXIST) {
in xsk_map_update_elem()
209
if (
old_xs
)
in xsk_map_update_elem()
210
xsk_map_sock_delete(
old_xs
, map_entry);
in xsk_map_update_elem()
226
struct xdp_sock *
old_xs
;
in xsk_map_delete_elem()
local
234
old_xs
= unrcu_pointer(xchg(map_entry, NULL));
in xsk_map_delete_elem()
235
if (
old_xs
)
in xsk_map_delete_elem()
[all...]
Completed in 2 milliseconds