diff options
author | Tiezhu Yang <yangtiezhu@loongson.cn> | 2020-04-30 14:36:24 +0200 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2020-04-30 16:30:44 +0200 |
commit | 44220fd84f3fa25208a441ae7a2cf0cf44699655 (patch) | |
tree | a1a339854ad860362d050942f5cc0b518f0a9717 /arch/mips/tools | |
parent | MIPS: ingenic: Drop obsolete code, merge the rest in setup.c (diff) | |
download | linux-44220fd84f3fa25208a441ae7a2cf0cf44699655.tar.xz linux-44220fd84f3fa25208a441ae7a2cf0cf44699655.zip |
MIPS: tools: Show result for loongson3-llsc-check
It is better to show the result before loongson3-llsc-check exit,
otherwise we can see nothing if the return status is EXIT_SUCCESS,
it seems confusing.
E.g. without this patch:
[loongson@localhost tools]$ ./loongson3-llsc-check ../../../vmlinux
[loongson@localhost tools]$
With this patch:
[loongson@localhost tools]$ ./loongson3-llsc-check ../../../vmlinux
loongson3-llsc-check returns success
[loongson@localhost tools]$
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips/tools')
-rw-r--r-- | arch/mips/tools/loongson3-llsc-check.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/tools/loongson3-llsc-check.c b/arch/mips/tools/loongson3-llsc-check.c index 0ebddd0ae46f..facd016dc51d 100644 --- a/arch/mips/tools/loongson3-llsc-check.c +++ b/arch/mips/tools/loongson3-llsc-check.c @@ -303,5 +303,7 @@ out_munmap: out_close: close(vmlinux_fd); out_ret: + fprintf(stdout, "loongson3-llsc-check %s\n", + status ? "returns failure" : "returns success"); return status; } |