Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-6.8.0-124 /
include /
vdso /
Delete
Unzip
Name
Size
Permission
Date
Action
bits.h
209
B
-rw-r--r--
2024-03-10 20:38
clocksource.h
479
B
-rw-r--r--
2024-03-10 20:38
const.h
196
B
-rw-r--r--
2024-03-10 20:38
datapage.h
4.12
KB
-rw-r--r--
2024-03-10 20:38
gettime.h
784
B
-rw-r--r--
2026-05-26 09:55
helpers.h
1.27
KB
-rw-r--r--
2024-03-10 20:38
jiffies.h
298
B
-rw-r--r--
2024-03-10 20:38
ktime.h
454
B
-rw-r--r--
2024-03-10 20:38
limits.h
564
B
-rw-r--r--
2024-03-10 20:38
math64.h
468
B
-rw-r--r--
2024-03-10 20:38
processor.h
251
B
-rw-r--r--
2024-03-10 20:38
time.h
190
B
-rw-r--r--
2024-03-10 20:38
time32.h
274
B
-rw-r--r--
2024-03-10 20:38
time64.h
426
B
-rw-r--r--
2024-03-10 20:38
vsyscall.h
288
B
-rw-r--r--
2024-03-10 20:38
Save
Rename
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __VDSO_MATH64_H #define __VDSO_MATH64_H static __always_inline u32 __iter_div_u64_rem(u64 dividend, u32 divisor, u64 *remainder) { u32 ret = 0; while (dividend >= divisor) { /* The following asm() prevents the compiler from optimising this loop into a modulo operation. */ asm("" : "+rm"(dividend)); dividend -= divisor; ret++; } *remainder = dividend; return ret; } #endif /* __VDSO_MATH64_H */