Skip to content

Commit 2d87af0

Browse files
Amer-shanawanyakpm00
authored andcommitted
selftests: proc: remove unreached code and fix build warning
fix the following warning: proc-empty-vm.c:385:17: warning: ignoring return value of `write' declared with attribute `warn_unused_result' [-Wunused-result] 385 | write(1, buf, rv); | ^~~~~~~~~~~~~~~~~ Link: https://lkml.kernel.org/r/20240603124220.33778-1-amer.shanawany@gmail.com Signed-off-by: Amer Al Shanawany <amer.shanawany@gmail.com> Reported-by: kernel test robot <lkp@intel.com> Closes: https://lore.kernel.org/r/202404010211.ygidvMwa-lkp@intel.com/ Cc: Alexey Dobriyan <adobriyan@gmail.com> Cc: Hugh Dickins <hughd@google.com> Cc: Javier Carrasco <javier.carrasco.cruz@gmail.com> Cc: Shuah Khan <shuah@kernel.org> Cc: Swarup Laxman Kotiaklapudi <swarupkotikalapudi@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
1 parent 6f3283d commit 2d87af0

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

tools/testing/selftests/proc/proc-empty-vm.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -381,9 +381,6 @@ static int test_proc_pid_statm(pid_t pid)
381381

382382
assert(rv >= 0);
383383
assert(rv <= sizeof(buf));
384-
if (0) {
385-
write(1, buf, rv);
386-
}
387384

388385
const char *p = buf;
389386
const char *const end = p + rv;

0 commit comments

Comments
 (0)