linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tools/time: access /sys/kernel/debug/udelay_test before test.
@ 2020-10-16 18:05 Hui Su
       [not found] ` <CAASgrz1FoQDz55m6F_raEYKoxX0GrUHif0Rm0DvWsR9WTqpBKg@mail.gmail.com>
  0 siblings, 1 reply; 2+ messages in thread
From: Hui Su @ 2020-10-16 18:05 UTC (permalink / raw)
  To: davidriley, akpm, linux-kernel, sh_def

before(when i did not compile udelay_test.ko):
sh@ubuntu:~/workspace/compile/tools/time$ sudo ./udelay_test.sh
./udelay_test.sh: line 25: /sys/kernel/debug/udelay_test: Permission denied
./udelay_test.sh: line 26: /sys/kernel/debug/udelay_test: No such file or directory
./udelay_test.sh: line 25: /sys/kernel/debug/udelay_test: Permission denied
./udelay_test.sh: line 26: /sys/kernel/debug/udelay_test: No such file or directory
...
about two hundreds lines.

we access '/sys/kernel/debug/udelay_test' the before starting the
udelay_test.

now(when i did not compile udelay_test.ko):
sh@ubuntu:~/workspace/linux-stable/tools/time$ sudo ./udelay_test.sh
modprobe: FATAL: Module udelay_test not found in directory /lib/modules/5.4.44
ERROR, can not access /sys/kernel/debug/udelay_test.
modprobe: FATAL: Module udelay_test not found.

Signed-off-by: Hui Su <sh_def@163.com>
---
 tools/time/udelay_test.sh | 51 +++++++++++++++++++++++++--------------
 1 file changed, 33 insertions(+), 18 deletions(-)

diff --git a/tools/time/udelay_test.sh b/tools/time/udelay_test.sh
index 6779d7e55d85..853ba04e4149 100755
--- a/tools/time/udelay_test.sh
+++ b/tools/time/udelay_test.sh
@@ -12,10 +12,11 @@
 
 MODULE_NAME=udelay_test
 UDELAY_PATH=/sys/kernel/debug/udelay_test
+retcode=0
 
 setup()
 {
-	/sbin/modprobe -q $MODULE_NAME
+	/sbin/modprobe $MODULE_NAME
 	tmp_file=`mktemp`
 }
 
@@ -31,29 +32,43 @@ cleanup()
 	if [ -f $tmp_file ]; then
 		rm $tmp_file
 	fi
-	/sbin/modprobe -q -r $MODULE_NAME
+	/sbin/modprobe -r $MODULE_NAME
+}
+
+debug_file_exist()
+{
+	if [ ! -d "$UDELAY_PATH" ]; then
+		return 1
+	fi
+	return 0
 }
 
 trap cleanup EXIT
 setup
+debug_file_exist
 
-# Delay for a variety of times.
-# 1..200, 200..500 (by 10), 500..2000 (by 100)
-for (( delay = 1; delay < 200; delay += 1 )); do
-	test_one $delay
-done
-for (( delay = 200; delay < 500; delay += 10 )); do
-	test_one $delay
-done
-for (( delay = 500; delay <= 2000; delay += 100 )); do
-	test_one $delay
-done
-
-# Search for failures
-count=`grep -c FAIL $tmp_file`
-if [ $? -eq "0" ]; then
-	echo "ERROR: $count delays failed to delay long enough"
+if [ $? -eq 1 ]; then
 	retcode=1
+	echo "ERROR, can not access $UDELAY_PATH."
+else
+	# Delay for a variety of times.
+	# 1..200, 200..500 (by 10), 500..2000 (by 100)
+	for (( delay = 1; delay < 200; delay += 1 )); do
+		test_one $delay
+	done
+	for (( delay = 200; delay < 500; delay += 10 )); do
+		test_one $delay
+	done
+	for (( delay = 500; delay <= 2000; delay += 100 )); do
+		test_one $delay
+	done
+
+	# Search for failures
+	count=`grep -c FAIL $tmp_file`
+	if [ $? -eq "0" ]; then
+		echo "ERROR: $count delays failed to delay long enough"
+		retcode=1
+	fi
 fi
 
 exit $retcode
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] tools/time: access /sys/kernel/debug/udelay_test before test.
       [not found] ` <CAASgrz1FoQDz55m6F_raEYKoxX0GrUHif0Rm0DvWsR9WTqpBKg@mail.gmail.com>
@ 2020-10-21 14:19   ` Hui Su
  0 siblings, 0 replies; 2+ messages in thread
From: Hui Su @ 2020-10-21 14:19 UTC (permalink / raw)
  To: David Riley; +Cc: akpm, linux-kernel

On Tue, Oct 20, 2020 at 10:27:05AM -0700, David Riley wrote:
> I don't think it's worth making debug_file_exist a separate function.  It's
> more clear to just do the check for the file, especially since you then log
> that path in the failure case.
> 
> On Fri, Oct 16, 2020 at 11:05 AM Hui Su <sh_def@163.com> wrote:
> 
> > before(when i did not compile udelay_test.ko):
> > sh@ubuntu:~/workspace/compile/tools/time$ sudo ./udelay_test.sh
> > ./udelay_test.sh: line 25: /sys/kernel/debug/udelay_test: Permission denied
> > ./udelay_test.sh: line 26: /sys/kernel/debug/udelay_test: No such file or
> > directory
> > ./udelay_test.sh: line 25: /sys/kernel/debug/udelay_test: Permission denied
> > ./udelay_test.sh: line 26: /sys/kernel/debug/udelay_test: No such file or
> > directory
> > ...
> > about two hundreds lines.
> >
> > we access '/sys/kernel/debug/udelay_test' the before starting the
> > udelay_test.
> >
> > now(when i did not compile udelay_test.ko):
> > sh@ubuntu:~/workspace/linux-stable/tools/time$ sudo ./udelay_test.sh
> > modprobe: FATAL: Module udelay_test not found in directory
> > /lib/modules/5.4.44
> > ERROR, can not access /sys/kernel/debug/udelay_test.
> > modprobe: FATAL: Module udelay_test not found.
> >
> > Signed-off-by: Hui Su <sh_def@163.com>
> > ---
> >  tools/time/udelay_test.sh | 51 +++++++++++++++++++++++++--------------
> >  1 file changed, 33 insertions(+), 18 deletions(-)
> >
> > diff --git a/tools/time/udelay_test.sh b/tools/time/udelay_test.sh
> > index 6779d7e55d85..853ba04e4149 100755
> > --- a/tools/time/udelay_test.sh
> > +++ b/tools/time/udelay_test.sh
> > @@ -12,10 +12,11 @@
> >
> >  MODULE_NAME=udelay_test
> >  UDELAY_PATH=/sys/kernel/debug/udelay_test
> > +retcode=0
> >
> >  setup()
> >  {
> > -       /sbin/modprobe -q $MODULE_NAME
> > +       /sbin/modprobe $MODULE_NAME
> >         tmp_file=`mktemp`
> >  }
> >
> > @@ -31,29 +32,43 @@ cleanup()
> >         if [ -f $tmp_file ]; then
> >                 rm $tmp_file
> >         fi
> > -       /sbin/modprobe -q -r $MODULE_NAME
> > +       /sbin/modprobe -r $MODULE_NAME
> > +}
> > +
> > +debug_file_exist()
> > +{
> > +       if [ ! -d "$UDELAY_PATH" ]; then
> > +               return 1
> > +       fi
> > +       return 0
> >  }
> >
> >  trap cleanup EXIT
> >  setup
> > +debug_file_exist
> >
> > -# Delay for a variety of times.
> > -# 1..200, 200..500 (by 10), 500..2000 (by 100)
> > -for (( delay = 1; delay < 200; delay += 1 )); do
> > -       test_one $delay
> > -done
> > -for (( delay = 200; delay < 500; delay += 10 )); do
> > -       test_one $delay
> > -done
> > -for (( delay = 500; delay <= 2000; delay += 100 )); do
> > -       test_one $delay
> > -done
> > -
> > -# Search for failures
> > -count=`grep -c FAIL $tmp_file`
> > -if [ $? -eq "0" ]; then
> > -       echo "ERROR: $count delays failed to delay long enough"
> > +if [ $? -eq 1 ]; then
> >         retcode=1
> > +       echo "ERROR, can not access $UDELAY_PATH."
> > +else
> > +       # Delay for a variety of times.
> > +       # 1..200, 200..500 (by 10), 500..2000 (by 100)
> > +       for (( delay = 1; delay < 200; delay += 1 )); do
> > +               test_one $delay
> > +       done
> > +       for (( delay = 200; delay < 500; delay += 10 )); do
> > +               test_one $delay
> > +       done
> > +       for (( delay = 500; delay <= 2000; delay += 100 )); do
> > +               test_one $delay
> > +       done
> > +
> > +       # Search for failures
> > +       count=`grep -c FAIL $tmp_file`
> > +       if [ $? -eq "0" ]; then
> > +               echo "ERROR: $count delays failed to delay long enough"
> > +               retcode=1
> > +       fi
> >  fi
> >
> >  exit $retcode
> > --
> > 2.25.1
> >
> >
> >

Yeah, i will send PATCH V2 after changing like you said.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-10-21 18:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-16 18:05 [PATCH] tools/time: access /sys/kernel/debug/udelay_test before test Hui Su
     [not found] ` <CAASgrz1FoQDz55m6F_raEYKoxX0GrUHif0Rm0DvWsR9WTqpBKg@mail.gmail.com>
2020-10-21 14:19   ` Hui Su

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).