mirror of
https://github.com/torvalds/linux.git
synced 2025-08-16 06:31:34 +02:00
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>
This commit is contained in:
parent
e84a4927a4
commit
c51da3f7a1
26 changed files with 50 additions and 66 deletions
|
@ -2168,7 +2168,7 @@ static void get_openreq6(struct seq_file *seq,
|
|||
jiffies_to_clock_t(ttd),
|
||||
req->num_timeout,
|
||||
from_kuid_munged(seq_user_ns(seq),
|
||||
sock_i_uid(req->rsk_listener)),
|
||||
sk_uid(req->rsk_listener)),
|
||||
0, /* non standard timer */
|
||||
0, /* open_requests have no inode */
|
||||
0, req);
|
||||
|
@ -2234,7 +2234,7 @@ static void get_tcp6_sock(struct seq_file *seq, struct sock *sp, int i)
|
|||
timer_active,
|
||||
jiffies_delta_to_clock_t(timer_expires - jiffies),
|
||||
icsk->icsk_retransmits,
|
||||
from_kuid_munged(seq_user_ns(seq), sock_i_uid(sp)),
|
||||
from_kuid_munged(seq_user_ns(seq), sk_uid(sp)),
|
||||
icsk->icsk_probes_out,
|
||||
sock_i_ino(sp),
|
||||
refcount_read(&sp->sk_refcnt), sp,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue