linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Configuring COCCI parameter as a directory is supportted
@ 2019-10-23  8:32 zhongshiqi
  2019-10-23  8:55 ` Julia Lawall
  2019-10-23 13:20 ` Markus Elfring
  0 siblings, 2 replies; 4+ messages in thread
From: zhongshiqi @ 2019-10-23  8:32 UTC (permalink / raw)
  To: Julia.Lawall
  Cc: Gilles.Muller, nicolas.palix, michal.lkml, cocci, linux-kernel,
	xue.zhihong, wang.yi59, cheng.shengyu, zhongshiqi

This patch puts a modification in scripts/coccicheck which supports users
in configuring COCCI parameter as a directory to traverse files in
directory. 

Signed-off-by: zhongshiqi <zhong.shiqi@zte.com.cn>
---
 scripts/coccicheck | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/scripts/coccicheck b/scripts/coccicheck
index e04d328..a1c4197 100755
--- a/scripts/coccicheck
+++ b/scripts/coccicheck
@@ -257,6 +257,10 @@ if [ "$COCCI" = "" ] ; then
     for f in `find $srctree/scripts/coccinelle/ -name '*.cocci' -type f | sort`; do
 	coccinelle $f
     done
+elif [ -d "$COCCI" ] ; then
+    for f in `find $COCCI/ -name '*.cocci' -type f | sort`; do
+	coccinelle $f
+    done
 else
     coccinelle $COCCI
 fi
-- 
2.9.5


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

* Re: [PATCH] Configuring COCCI parameter as a directory is supportted
  2019-10-23  8:32 [PATCH] Configuring COCCI parameter as a directory is supportted zhongshiqi
@ 2019-10-23  8:55 ` Julia Lawall
  2019-10-23 14:08   ` [PATCH] coccicheck: Configuring COCCI parameter for supporting a directory search Markus Elfring
  2019-10-23 13:20 ` Markus Elfring
  1 sibling, 1 reply; 4+ messages in thread
From: Julia Lawall @ 2019-10-23  8:55 UTC (permalink / raw)
  To: zhongshiqi
  Cc: Julia.Lawall, Gilles Muller, nicolas.palix, michal.lkml, cocci,
	linux-kernel, xue.zhihong, wang.yi59, cheng.shengyu,
	yamada.masahiro



On Wed, 23 Oct 2019, zhongshiqi wrote:

> This patch puts a modification in scripts/coccicheck which supports users
> in configuring COCCI parameter as a directory to traverse files in
> directory.
>
> Signed-off-by: zhongshiqi <zhong.shiqi@zte.com.cn>
> ---
>  scripts/coccicheck | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/scripts/coccicheck b/scripts/coccicheck
> index e04d328..a1c4197 100755
> --- a/scripts/coccicheck
> +++ b/scripts/coccicheck
> @@ -257,6 +257,10 @@ if [ "$COCCI" = "" ] ; then
>      for f in `find $srctree/scripts/coccinelle/ -name '*.cocci' -type f | sort`; do
>  	coccinelle $f
>      done
> +elif [ -d "$COCCI" ] ; then
> +    for f in `find $COCCI/ -name '*.cocci' -type f | sort`; do
> +	coccinelle $f
> +    done
>  else
>      coccinelle $COCCI
>  fi

Thanks for the contribution.  I'm not that knowledgeable about these
scripts.  What is the relation between the last two if branches?  If the
first one fails, does that mean that $COCCI has no definition?  In that
case, is the final else useful?

thanks,
julia

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

* Re: [PATCH] coccicheck: Configuring COCCI parameter for supporting a directory search
  2019-10-23  8:32 [PATCH] Configuring COCCI parameter as a directory is supportted zhongshiqi
  2019-10-23  8:55 ` Julia Lawall
@ 2019-10-23 13:20 ` Markus Elfring
  1 sibling, 0 replies; 4+ messages in thread
From: Markus Elfring @ 2019-10-23 13:20 UTC (permalink / raw)
  To: zhongshiqi, cocci
  Cc: linux-kernel, kernel-janitors, Cheng Shengyu, Gilles Muller,
	Julia Lawall, Masahiro Yamada, Michal Marek, Nicolas Palix,
	Yi Wang, Xue Zhihong

> This patch puts a modification in scripts/coccicheck which supports users
> in configuring COCCI parameter as a directory to traverse files in directory.

* I suggest to improve this change description according to a recommended
  “imperative mood”.
  https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?id=13b86bc4cd648eae69fdcf3d04b2750c76350053#n151

* Please fix your patch subject.

Regards,
Markus

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

* Re: [PATCH] coccicheck: Configuring COCCI parameter for supporting a directory search
  2019-10-23  8:55 ` Julia Lawall
@ 2019-10-23 14:08   ` Markus Elfring
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Elfring @ 2019-10-23 14:08 UTC (permalink / raw)
  To: Julia Lawall, cocci
  Cc: kernel-janitors, linux-kernel, Cheng Shengyu, Gilles Muller,
	Masahiro Yamada, Michal Marek, Nicolas Palix, Yi Wang,
	Xue Zhihong, zhongshiqi

> What is the relation between the last two if branches?

A small addition is proposed for this bash script.


> If the first one fails, does that mean that $COCCI has no definition?

No. - It was checked if an empty sting was passed.
A file system check is tried then to determine if a valid directory was specified.
This parameter could be used then for the specification of a specific start
directory for calling the tool “find”, couldn't it?


> In that case, is the final else useful?

Hopefully, yes.

Which software behaviour do you expect for a string which would not
be recognised as an usable directory in a specific moment
during script execution?

Regards,
Markus

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

end of thread, other threads:[~2019-10-23 14:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-23  8:32 [PATCH] Configuring COCCI parameter as a directory is supportted zhongshiqi
2019-10-23  8:55 ` Julia Lawall
2019-10-23 14:08   ` [PATCH] coccicheck: Configuring COCCI parameter for supporting a directory search Markus Elfring
2019-10-23 13:20 ` Markus Elfring

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).