Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'kcsan-20250929-v6.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/melver/linux

Pull Kernel Concurrency Sanitizer (KCSAN) update from Marco Elver:

- Replace deprecated strcpy() with strscpy()

* tag 'kcsan-20250929-v6.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/melver/linux:
kcsan: test: Replace deprecated strcpy() with strscpy()

+2 -2
+2 -2
kernel/kcsan/kcsan_test.c
··· 125 125 goto out; 126 126 127 127 /* No second line of interest. */ 128 - strcpy(observed.lines[nlines++], "<none>"); 128 + strscpy(observed.lines[nlines++], "<none>"); 129 129 } 130 130 } 131 131 ··· 231 231 232 232 if (!r->access[1].fn) { 233 233 /* Dummy string if no second access is available. */ 234 - strcpy(cur, "<none>"); 234 + strscpy(expect[2], "<none>"); 235 235 break; 236 236 } 237 237 }