All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [Resend PATCH] zram03: drop obsolete sysfs interfaces
@ 2018-05-31 19:07 Yang Shi
  2018-06-05  3:55 ` Li Wang
  0 siblings, 1 reply; 3+ messages in thread
From: Yang Shi @ 2018-05-31 19:07 UTC (permalink / raw)
  To: ltp

Due to upstream linux commit c87d1655c29500b459fb135258a93f8309ada9c7
("zram: remove obsolete sysfs attrs"), some sysfs interfaces are not
available anymore. Remove dumping them to avoid test case failure.

Signed-off-by: Yang Shi <yang.shi@linux.alibaba.com>
---
Subscribed LTP mailing list to resend the patch, so that all subscribers
can see it and get reviewed.

 testcases/kernel/device-drivers/zram/zram03.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/testcases/kernel/device-drivers/zram/zram03.c b/testcases/kernel/device-drivers/zram/zram03.c
index 3f7ab4e..f2c166c 100644
--- a/testcases/kernel/device-drivers/zram/zram03.c
+++ b/testcases/kernel/device-drivers/zram/zram03.c
@@ -185,11 +185,5 @@ static void print(char *string)
 static void dump_info(void)
 {
 	print("initstate");
-	print("compr_data_size");
-	print("orig_data_size");
 	print("disksize");
-	print("mem_used_total");
-	print("num_reads");
-	print("num_writes");
-	print("zero_pages");
 }
-- 
1.8.3.1


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

* [LTP] [Resend PATCH] zram03: drop obsolete sysfs interfaces
  2018-05-31 19:07 [LTP] [Resend PATCH] zram03: drop obsolete sysfs interfaces Yang Shi
@ 2018-06-05  3:55 ` Li Wang
  2018-06-05 16:33   ` Yang Shi
  0 siblings, 1 reply; 3+ messages in thread
From: Li Wang @ 2018-06-05  3:55 UTC (permalink / raw)
  To: ltp

On Fri, Jun 1, 2018 at 3:07 AM, Yang Shi <yang.shi@linux.alibaba.com> wrote:

> Due to upstream linux commit c87d1655c29500b459fb135258a93f8309ada9c7
> ("zram: remove obsolete sysfs attrs"), some sysfs interfaces are not
> available anymore. Remove dumping them to avoid test case failure.
>
> Signed-off-by: Yang Shi <yang.shi@linux.alibaba.com>
>

​Since the commit is merged from kernel-v4.10, how about changing like this:

--- a/testcases/kernel/device-drivers/zram/zram03.c
+++ b/testcases/kernel/device-drivers/zram/zram03.c
@@ -184,12 +184,17 @@ static void print(char *string)

 static void dump_info(void)
 {
-       print("initstate");
-       print("compr_data_size");
-       print("orig_data_size");
-       print("disksize");
-       print("mem_used_total");
-       print("num_reads");
-       print("num_writes");
-       print("zero_pages");
+       if ((tst_kvercmp(4, 10, 0)) >= 0) {
+               print("initstate");
+               print("disksize");
+       } else {
+               print("initstate");
+               print("compr_data_size");
+               print("orig_data_size");
+               print("disksize");
+               print("mem_used_total");
+               print("num_reads");
+               print("num_writes");
+               print("zero_pages");
+       }
 }
​



> ---
> Subscribed LTP mailing list to resend the patch, so that all subscribers
> can see it and get reviewed.
>
>  testcases/kernel/device-drivers/zram/zram03.c | 6 ------
>  1 file changed, 6 deletions(-)
>
> diff --git a/testcases/kernel/device-drivers/zram/zram03.c
> b/testcases/kernel/device-drivers/zram/zram03.c
> index 3f7ab4e..f2c166c 100644
> --- a/testcases/kernel/device-drivers/zram/zram03.c
> +++ b/testcases/kernel/device-drivers/zram/zram03.c
> @@ -185,11 +185,5 @@ static void print(char *string)
>  static void dump_info(void)
>  {
>         print("initstate");
> -       print("compr_data_size");
> -       print("orig_data_size");
>         print("disksize");
> -       print("mem_used_total");
> -       print("num_reads");
> -       print("num_writes");
> -       print("zero_pages");
>  }
> --
> 1.8.3.1
>
>
> --
> Mailing list info: https://lists.linux.it/listinfo/ltp
>



-- 
Regards,
Li Wang
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.linux.it/pipermail/ltp/attachments/20180605/34a0d12c/attachment.html>

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

* [LTP] [Resend PATCH] zram03: drop obsolete sysfs interfaces
  2018-06-05  3:55 ` Li Wang
@ 2018-06-05 16:33   ` Yang Shi
  0 siblings, 0 replies; 3+ messages in thread
From: Yang Shi @ 2018-06-05 16:33 UTC (permalink / raw)
  To: ltp



On 6/4/18 8:55 PM, Li Wang wrote:
>
>
> On Fri, Jun 1, 2018 at 3:07 AM, Yang Shi <yang.shi@linux.alibaba.com 
> <mailto:yang.shi@linux.alibaba.com>> wrote:
>
>     Due to upstream linux commit c87d1655c29500b459fb135258a93f8309ada9c7
>     ("zram: remove obsolete sysfs attrs"), some sysfs interfaces are not
>     available anymore. Remove dumping them to avoid test case failure.
>
>     Signed-off-by: Yang Shi <yang.shi@linux.alibaba.com
>     <mailto:yang.shi@linux.alibaba.com>>
>
>
> ​Since the commit is merged from kernel-v4.10, how about changing like 
> this:
>
> --- a/testcases/kernel/device-drivers/zram/zram03.c
> +++ b/testcases/kernel/device-drivers/zram/zram03.c
> @@ -184,12 +184,17 @@ static void print(char *string)
>
>  static void dump_info(void)
>  {
> -       print("initstate");
> -       print("compr_data_size");
> -       print("orig_data_size");
> -       print("disksize");
> -       print("mem_used_total");
> -       print("num_reads");
> -       print("num_writes");
> -       print("zero_pages");
> +       if ((tst_kvercmp(4, 10, 0)) >= 0) {
> +               print("initstate");
> +               print("disksize");
> +       } else {
> +               print("initstate");
> +               print("compr_data_size");
> +               print("orig_data_size");
> +               print("disksize");
> +               print("mem_used_total");
> +               print("num_reads");
> +               print("num_writes");
> +               print("zero_pages");
> +       }

Yes, sure. Will fix in v2. Thanks for your suggestion.

Yang

>  }
> ​
>
>     ---
>     Subscribed LTP mailing list to resend the patch, so that all
>     subscribers
>     can see it and get reviewed.
>
>      testcases/kernel/device-drivers/zram/zram03.c | 6 ------
>      1 file changed, 6 deletions(-)
>
>     diff --git a/testcases/kernel/device-drivers/zram/zram03.c
>     b/testcases/kernel/device-drivers/zram/zram03.c
>     index 3f7ab4e..f2c166c 100644
>     --- a/testcases/kernel/device-drivers/zram/zram03.c
>     +++ b/testcases/kernel/device-drivers/zram/zram03.c
>     @@ -185,11 +185,5 @@ static void print(char *string)
>      static void dump_info(void)
>      {
>             print("initstate");
>     -       print("compr_data_size");
>     -       print("orig_data_size");
>             print("disksize");
>     -       print("mem_used_total");
>     -       print("num_reads");
>     -       print("num_writes");
>     -       print("zero_pages");
>      }
>     -- 
>     1.8.3.1
>
>
>     -- 
>     Mailing list info: https://lists.linux.it/listinfo/ltp
>     <https://lists.linux.it/listinfo/ltp>
>
>
>
>
> -- 
> Regards,
> Li Wang

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.linux.it/pipermail/ltp/attachments/20180605/c62d8341/attachment.html>

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

end of thread, other threads:[~2018-06-05 16:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-31 19:07 [LTP] [Resend PATCH] zram03: drop obsolete sysfs interfaces Yang Shi
2018-06-05  3:55 ` Li Wang
2018-06-05 16:33   ` Yang Shi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.