public inbox for [email protected]
 help / color / mirror / Atom feed
 messages from 2022-03-18 21:59:26 to 2022-03-29 10:18:09 UTC [more...]

[PATCH v2 0/9] Add dynamic memory allocator support for nolibc
 2022-03-29 10:17 UTC  (8+ messages)
` [PATCH v2 1/9] tools/nolibc: x86-64: Update System V ABI document link
` [PATCH v2 2/9] tools/nolibc: Replace `asm` with `__asm__`
` [PATCH v2 3/9] tools/nolibc: Remove .global _start from the entry point code
` [PATCH v2 4/9] tools/nolibc: i386: Implement syscall with 6 arguments
` [PATCH v2 5/9] tools/nolibc/sys: Implement `mmap()` and `munmap()`
` [PATCH v2 6/9] tools/nolibc/types: Implement `offsetof()` and `container_of()` macro
` [PATCH v2 7/9] tools/nolibc/stdlib: Implement `malloc()`, `calloc()`, `realloc()` and `free()`

[ammarfaizi2-block:google/android/kernel/common/android12-kiwi-5.10 8832/9999] drivers/virtio/virtio_pvclock.c:49:6: warning: no previous prototype for function 'update_suspend_time'
 2022-03-29  7:23 UTC 

[ammarfaizi2-block:google/android/kernel/common/android13-5.10 9999/9999] kernel/sched/pelt.c:220:5: warning: no previous prototype for function '___update_load_sum'
 2022-03-29  6:22 UTC 

[ammarfaizi2-block:arm64/linux/devel/kmalloc-minalign 11/11] arch/arm64/include/asm/cache.h:51:44: error: missing binary operator before token "("
 2022-03-29  5:20 UTC 

[ammarfaizi2-block:google/android/kernel/common/android12-kiwi-5.10 9998/9999] mm/vmscan.c:673:15: warning: no previous prototype for function 'shrink_slab'
 2022-03-29  4:59 UTC 

[ammarfaizi2-block:google/android/kernel/common/android13-5.10 9999/9999] kernel/sched/pelt.c:220:5: warning: no previous prototype for '___update_load_sum'
 2022-03-29  4:49 UTC 

[ammarfaizi2-block:google/android/kernel/common/android12-kiwi-5.10 9998/9999] mm/vmscan.c:673:15: warning: no previous prototype for 'shrink_slab'
 2022-03-29  3:27 UTC 

[ammarfaizi2-block:axboe/linux-block/sock-nolock 6/6] fs/io_uring.c:8999:2: error: implicit declaration of function 'io_sock_nolock_clear' is invalid in C99
 2022-03-28 23:42 UTC 

[ammarfaizi2-block:axboe/linux-block/sock-nolock 6/6] fs/io_uring.c:8999:9: error: implicit declaration of function 'io_sock_nolock_clear'
 2022-03-28 23:06 UTC 

[ammarfaizi2-block:google/android/kernel/common/android13-5.15 5561/5564] arch/arm64/kvm/hyp/nvhe/psci-relay.c:249:6: warning: no previous prototype for 'psci_mem_protect_inc'
 2022-03-28 19:12 UTC 

[ammarfaizi2-block:dhowells/linux-fs/afs-testing 44/45] arch/sparc/include/asm/cmpxchg_64.h:95:36: sparse: sparse: cast truncates bits from constant value (5e5ee5e5 becomes e5e5)
 2022-03-28 12:00 UTC  (2+ messages)

Linux 5.17.1
 2022-03-28  8:28 UTC 

[PATCH v5 0/2] Two x86 fixes
 2022-03-28  8:05 UTC  (10+ messages)
` [PATCH v5 1/2] x86/delay: Fix the wrong asm constraint in `delay_loop()`
` [PATCH v5 2/2] x86/MCE/AMD: Fix memory leak when `threshold_create_bank()` fails

[ammarfaizi2-block:google/android/kernel/common/android13-5.15 1113/5558] kernel/module.c:4789:6: warning: no previous prototype for function 'android_debug_for_each_module'
 2022-03-27 22:21 UTC 

[ammarfaizi2-block:dhowells/linux-fs/afs-testing 44/45] arch/arm64/include/asm/cmpxchg.h:88:1: sparse: sparse: cast truncates bits from constant value (5e5ee5e5 becomes e5)
 2022-03-26 23:58 UTC 

[ammarfaizi2-block:dhowells/linux-fs/afs-testing 44/44] arch/sh/include/asm/cmpxchg-irq.h:24:14: sparse: sparse: cast truncates bits from constant value (5e5ee5e5 becomes e5e5)
 2022-03-26  2:31 UTC 

[ammarfaizi2-block:dhowells/linux-fs/afs-testing 44/44] include/asm-generic/cmpxchg.h:35:39: sparse: sparse: cast truncates bits from constant value (5e5ee5e5 becomes e5)
 2022-03-26  1:50 UTC 

[PATCH 5.17 00/39] 5.17.1-rc1 review
 2022-03-25 15:14 UTC 

[PATCH v1 00/11] Add dynamic memory allocator support for nolibc
 2022-03-24 15:42 UTC  (18+ messages)
` [PATCH v1 01/11] tools/nolibc: x86-64: Update System V ABI document link
` [PATCH v1 02/11] tools/nolibc: Remove .global _start from the entry point code
` [PATCH v1 03/11] tools/nolibc: Replace `asm` with `__asm__`
` [PATCH v1 04/11] tools/nolibc: x86-64: Use appropriate register constraints if exist
` [PATCH v1 05/11] tools/nolibc: i386: "
` [PATCH v1 06/11] tools/nolibc: i386: Implement syscall with 6 arguments
` [PATCH v1 07/11] tools/nolibc/sys: Implement `mmap()` and `munmap()`
` [PATCH v1 08/11] tools/nolibc/types: Implement `offsetof()` and `container_of()` macro
` [PATCH v1 09/11] tools/nolibc/stdlib: Implement `malloc()`, `calloc()`, `realloc()` and `free()`
` [PATCH v1 10/11] tools/nolibc/string: Implement `strnlen()`
` [PATCH v1 11/11] tools/include/string: Implement `strdup()` and `strndup()`

Please give me some help with assembly code!
 2022-03-24  9:39 UTC  (3+ messages)

[PATCH v13 0/4] io_uring: add xattr support
 2022-03-24  8:50 UTC  (6+ messages)
` [PATCH v13 1/4] fs: split off setxattr_copy and do_setxattr function from setxattr
` [PATCH v13 2/4] fs: split off do_getxattr from getxattr
` [PATCH v13 3/4] io_uring: add fsetxattr and setxattr support
` [PATCH v13 4/4] io_uring: add fgetxattr and getxattr support

[syzbot] INFO: task hung in io_wq_put_and_exit (3)
 2022-03-23 23:17 UTC  (3+ messages)

[PATCH 0/2] nolibc: fix two build issues at -O0
 2022-03-23 23:16 UTC  (5+ messages)
` [PATCH 1/2] tools/nolibc/string: do not use __builtin_strlen() "
` [PATCH 2/2] tools/nolibc/stdlib: only reference the external environ when inlined

[PATCHSET v2 0/2] Fix MSG_WAITALL for IORING_OP_RECV/RECVMSG
 2022-03-23 22:41 UTC  (3+ messages)
` [PATCH 1/2] io_uring: ensure recv and recvmsg handle MSG_WAITALL correctly
` [PATCH 2/2] io_uring: add flag for disabling provided buffer recycling

[PATCHSET 0/2] Fix MSG_WAITALL for IORING_OP_RECV/RECVMSG
 2022-03-23 20:52 UTC  (7+ messages)
` [PATCH 1/2] io_uring: ensure recv and recvmsg handle MSG_WAITALL correctly
` [PATCH 2/2] io_uring: add flag for disabling provided buffer recycling

[ammarfaizi2-block:palmer/linux/riscv-ftrace_mutex_fix 1/1] arch/riscv/include/asm/ftrace.h:90:38: error: expected identifier or '(' before numeric constant
 2022-03-23 19:54 UTC 

[syzbot] general protection fault in io_kill_timeouts
 2022-03-23 17:52 UTC 

[PATCH v2 0/4] liburing: support xattr functions
 2022-03-23 15:44 UTC  (5+ messages)
` [PATCH v2 1/4] liburing: Update io_uring in liburing
` [PATCH v2 2/4] liburing: add helper functions for setxattr and fsetxattr
` [PATCH v2 3/4] liburing: Add helper functions for fgetxattr and getxattr
` [PATCH v2 4/4] liburing: Add new test program to verify xattr support

[PATCH for-next] io_uring: null deref in early failed ring destruction
 2022-03-23 12:28 UTC  (2+ messages)

[ammarfaizi2-block:palmer/linux/riscv-pmu 13/15] drivers/perf/riscv_pmu_sbi.c:498: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
 2022-03-23 12:18 UTC  (3+ messages)

Linux 5.16.17
 2022-03-23  8:27 UTC 

[RFC PATCH v2 0/8] Add dynamic memory allocator support for nolibc
 2022-03-23  7:10 UTC  (44+ messages)
` [RFC PATCH v2 1/8] tools/nolibc: x86-64: Update System V ABI document link
` [RFC PATCH v2 2/8] tools/nolibc: Remove .global _start from the entry point code
` [RFC PATCH v2 3/8] tools/nolibc: i386: Implement syscall with 6 arguments
` [RFC PATCH v2 4/8] tools/nolibc/sys: Implement `mmap()` and `munmap()`
` [RFC PATCH v2 5/8] tools/nolibc/types: Implement `offsetof()` and `container_of()` macro
` [RFC PATCH v2 6/8] tools/nolibc/stdlib: Implement `malloc()`, `calloc()`, `realloc()` and `free()`
` [RFC PATCH v2 7/8] tools/nolibc/string: Implement `strnlen()`
` [RFC PATCH v2 8/8] tools/include/string: Implement `strdup()` and `strndup()`

[ammarfaizi2-block:palmer/linux/riscv-ftrace_mutex_fix 1/1] arch/riscv/kernel/ftrace.c:14:5: error: expected identifier or '('
 2022-03-23  5:59 UTC 

[ammarfaizi2-block:palmer/linux/riscv-compat 6/20] arch/arm64/include/asm/compat.h:69:8: error: redefinition of 'struct compat_statfs'
 2022-03-23  5:18 UTC 

[syzbot] KASAN: use-after-free Read in io_poll_remove_entries
 2022-03-23  5:00 UTC  (2+ messages)

[ammarfaizi2-block:google/android/kernel/common/android12-kiwi-5.10 9930/9999] drivers/virtio/virtio_pvclock.c:49:6: warning: no previous prototype for 'update_suspend_time'
 2022-03-23  1:35 UTC 

[ammarfaizi2-block:google/android/kernel/common/android-trusty-5.4 1704/6879] drivers/scsi/ufs/ufshcd-crypto.c:250:26: warning: no previous prototype for function 'ufshcd_blk_crypto_mode_num_for_alg_dusize'
 2022-03-22 16:57 UTC 

[PATCH 05/17] nvme: wire-up support for async-passthru on char-device
 2022-03-22 15:18 UTC 

[PATCH 0/3] optimise submit+iopoll mutex locking
 2022-03-22 14:07 UTC  (4+ messages)
` [PATCH 1/3] io_uring: split off IOPOLL argument verifiction
` [PATCH 2/3] io_uring: pre-calculate syscall iopolling decision
` [PATCH 3/3] io_uring: optimise mutex locking for submit+iopoll

[xfs] 1fc3f2c3c9: xfstests.xfs.529.fail
 2022-03-22 13:54 UTC 

[ammarfaizi2-block:palmer/linux/riscv-pmu 10/15] drivers/perf/riscv_pmu_legacy.c:76: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
 2022-03-22 12:27 UTC 

[ammarfaizi2-block:palmer/linux/riscv-pmu 13/15] drivers/perf/riscv_pmu_sbi.c:498: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
 2022-03-22  8:23 UTC 

[ammarfaizi2-block:palmer/linux/riscv-pmu 10/15] drivers/perf/riscv_pmu_legacy.c:76: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
 2022-03-22  7:32 UTC 

[ammarfaizi2-block:google/android/kernel/common/android13-5.15 1113/5403] arm-linux-gnueabi-ld: drivers/android/android_debug_symbols.o:undefined reference to `__per_cpu_start'
 2022-03-22  6:21 UTC 

[GIT PULL] io_uring updates for 5.18-rc1
 2022-03-22  0:25 UTC  (2+ messages)

[GIT PULL] io_uring statx fix for 5.18-rc1
 2022-03-22  0:25 UTC  (3+ messages)

[ammarfaizi2-block:bpf/bpf-next/master 244/254] kernel/bpf/verifier.c:13499:47: sparse: sparse: cast from restricted gfp_t
 2022-03-21 17:41 UTC  (2+ messages)

[RFC PATCH v1 0/6] Add dynamic memory allocator support for nolibc
 2022-03-21 17:27 UTC  (29+ messages)
` [RFC PATCH v1 1/6] tools/nolibc: x86-64: Update System V ABI document link
` [RFC PATCH v1 2/6] tools/nolibc: Make the entry point not weak for clang
` [RFC PATCH v1 3/6] tools/nolibc: i386: Implement syscall with 6 arguments
` [RFC PATCH v1 4/6] tools/nolibc/sys: Implement `mmap()` and `munmap()`
` [RFC PATCH v1 5/6] tools/nolibc/stdlib: Implement `malloc()`, `calloc()`, `realloc()` and `free()`
` [RFC PATCH v1 6/6] tools/include/string: Implement `strdup()` and `strndup()`

[ammarfaizi2-block:bpf/bpf-next/master 251/258] kernel/bpf/core.c:847:9: error: use of undeclared identifier 'PMD_SIZE'
 2022-03-21 15:35 UTC 

[PATCH 5.16 00/37] 5.16.17-rc1 review
 2022-03-21 13:52 UTC 

[PATCH v2] io_uring: fix memory ordering when SQPOLL thread goes to sleep
 2022-03-21 12:33 UTC  (2+ messages)

[ammarfaizi2-block:palmer/linux/riscv-d1-merge 19/20] arch/riscv/errata/thead/errata.c:61:6: warning: variable 'cpu_apply_errata' set but not used
 2022-03-21  9:39 UTC 

[syzbot] bpf-next boot error: WARNING in bpf_prog_pack_free
 2022-03-21  6:55 UTC 

[ammarfaizi2-block:axboe/linux-block/perf-wip 17/17] cc1: error: bad value ('alderlake') for '-march=' switch
 2022-03-21  3:53 UTC 

linux-next: the merge window is open
 2022-03-20 21:48 UTC 

[PATCH] io_uring: ensure that fsnotify is always called
 2022-03-20 19:43 UTC 

system locks up with CONFIG_SLS=Y; 5.17.0-rc
 2022-03-20 14:17 UTC  (5+ messages)
                      ` [PATCH -v1.2] kvm/emulate: Fix SETcc emulation function offsets with SLS

[PATCH] boot install: Partially refactor the logic for detecting bootloader
 2022-03-20  9:30 UTC  (7+ messages)

Linux 5.16.16
 2022-03-19 13:04 UTC 

[ammarfaizi2-block:rostedt/linux-trace/ftrace/core 53/57] arch/arm64/kernel/probes/rethook.c:11:22: warning: no previous prototype for function 'arch_rethook_trampoline_callback'
 2022-03-19  2:17 UTC 


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox