mirror of
https://github.com/torvalds/linux.git
synced 2026-04-30 04:22:32 -04:00
This follow-up patch completes centralization of kselftest.h and ksefltest_harness.h includes in remaining seltests files, replacing all relative paths with a non-relative paths using shared -I include path in lib.mk Tested with gcc-13.3 and clang-18.1, and cross-compiled successfully on riscv, arm64, x86_64 and powerpc arch. [reddybalavignesh9979@gmail.com: add selftests include path for kselftest.h] Link: https://lkml.kernel.org/r/20251017090201.317521-1-reddybalavignesh9979@gmail.com Link: https://lkml.kernel.org/r/20251016104409.68985-1-reddybalavignesh9979@gmail.com Signed-off-by: Bala-Vignesh-Reddy <reddybalavignesh9979@gmail.com> Suggested-by: Andrew Morton <akpm@linux-foundation.org> Link: https://lore.kernel.org/lkml/20250820143954.33d95635e504e94df01930d0@linux-foundation.org/ Reviewed-by: Wei Yang <richard.weiyang@gmail.com> Cc: David Hildenbrand <david@redhat.com> Cc: David S. Miller <davem@davemloft.net> Cc: Eric Dumazet <edumazet@google.com> Cc: Günther Noack <gnoack@google.com> Cc: Jakub Kacinski <kuba@kernel.org> Cc: Liam Howlett <liam.howlett@oracle.com> Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com> Cc: Michal Hocko <mhocko@suse.com> Cc: Mickael Salaun <mic@digikod.net> Cc: Ming Lei <ming.lei@redhat.com> Cc: Paolo Abeni <pabeni@redhat.com> Cc: Shuah Khan <shuah@kernel.org> Cc: Simon Horman <horms@kernel.org> Cc: Suren Baghdasaryan <surenb@google.com> Cc: Vlastimil Babka <vbabka@suse.cz> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
94 lines
2.0 KiB
C
94 lines
2.0 KiB
C
/* ADJ_FREQ Skew change test
|
|
* by: john stultz (johnstul@us.ibm.com)
|
|
* (C) Copyright IBM 2012
|
|
* Licensed under the GPLv2
|
|
*
|
|
* NOTE: This is a meta-test which cranks the ADJ_FREQ knob and
|
|
* then uses other tests to detect problems. Thus this test requires
|
|
* that the raw_skew, inconsistency-check and nanosleep tests be
|
|
* present in the same directory it is run from.
|
|
*
|
|
* To build:
|
|
* $ gcc change_skew.c -o change_skew -lrt
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/time.h>
|
|
#include <sys/timex.h>
|
|
#include <time.h>
|
|
#include "kselftest.h"
|
|
|
|
int change_skew_test(int ppm)
|
|
{
|
|
struct timex tx;
|
|
int ret;
|
|
|
|
tx.modes = ADJ_FREQUENCY;
|
|
tx.freq = ppm << 16;
|
|
|
|
ret = adjtimex(&tx);
|
|
if (ret < 0) {
|
|
printf("Error adjusting freq\n");
|
|
return ret;
|
|
}
|
|
|
|
ret = system("./raw_skew");
|
|
ret |= system("./inconsistency-check");
|
|
ret |= system("./nanosleep");
|
|
|
|
return ret;
|
|
}
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
struct timex tx;
|
|
int i, ret;
|
|
|
|
int ppm[5] = {0, 250, 500, -250, -500};
|
|
|
|
/* Kill ntpd */
|
|
ret = system("killall -9 ntpd");
|
|
|
|
/* Make sure there's no offset adjustment going on */
|
|
tx.modes = ADJ_OFFSET;
|
|
tx.offset = 0;
|
|
ret = adjtimex(&tx);
|
|
|
|
if (ret < 0) {
|
|
printf("Maybe you're not running as root?\n");
|
|
return -1;
|
|
}
|
|
|
|
for (i = 0; i < 5; i++) {
|
|
printf("Using %i ppm adjustment\n", ppm[i]);
|
|
ret = change_skew_test(ppm[i]);
|
|
if (ret)
|
|
break;
|
|
}
|
|
|
|
/* Set things back */
|
|
tx.modes = ADJ_FREQUENCY;
|
|
tx.offset = 0;
|
|
adjtimex(&tx);
|
|
|
|
if (ret) {
|
|
printf("[FAIL]");
|
|
ksft_exit_fail();
|
|
}
|
|
printf("[OK]");
|
|
ksft_exit_pass();
|
|
}
|