Go to file
Eric Dumazet c51da3f7a1 net: remove sock_i_uid()
Difference between sock_i_uid() and sk_uid() is that
after sock_orphan(), sock_i_uid() returns GLOBAL_ROOT_UID
while sk_uid() returns the last cached sk->sk_uid value.

None of sock_i_uid() callers care about this.

Use sk_uid() which is much faster and inlined.

Note that diag/dump users are calling sock_i_ino() and
can not see the full benefit yet.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Lorenzo Colitti <lorenzo@google.com>
Reviewed-by: Maciej Żenczykowski <maze@google.com>
Link: https://patch.msgid.link/20250620133001.4090592-3-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2025-06-23 17:04:03 -07:00
Documentation dt-bindings: net: convert qca,qca7000.txt yaml format 2025-06-23 16:28:28 -07:00
LICENSES
arch
block
certs
crypto
drivers net: stmmac: lpc18xx: use plat_dat->phy_interface 2025-06-23 11:57:33 -07:00
fs
include net: remove sock_i_uid() 2025-06-23 17:04:03 -07:00
init
io_uring
ipc
kernel
lib lib: test_objagg: split test_hints_case() into two functions 2025-06-23 16:57:43 -07:00
mm
net net: remove sock_i_uid() 2025-06-23 17:04:03 -07:00
rust
samples
scripts
security
sound
tools selftests: drv-net: import things in lib one by one 2025-06-23 12:55:20 -07:00
usr
virt
.clang-format
.clippy.toml
.cocciconfig
.editorconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
.pylintrc
.rustfmt.toml
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS dt-bindings: net: convert qca,qca7000.txt yaml format 2025-06-23 16:28:28 -07:00
Makefile
README

README

Linux kernel
============

There are several guides for kernel developers and users. These guides can
be rendered in a number of formats, like HTML and PDF. Please read
Documentation/admin-guide/README.rst first.

In order to build the documentation, use ``make htmldocs`` or
``make pdfdocs``.  The formatted documentation can also be read online at:

    https://www.kernel.org/doc/html/latest/

There are various text files in the Documentation/ subdirectory,
several of them using the reStructuredText markup notation.

Please read the Documentation/process/changes.rst file, as it contains the
requirements for building and running the kernel, and information about
the problems which may result by upgrading your kernel.