Re: [dpdk-dev] [PATCH] checkpatch: enable volatile warning

2021-08-16 Thread Dharmik Thakkar
Hi, Apologies for the delayed response! > On Mar 10, 2021, at 9:10 AM, Stephen Hemminger > wrote: > > On Wed, 10 Mar 2021 12:10:01 +0100 > Thomas Monjalon wrote: > >> 10/03/2021 12:04, Dharmik Thakkar: >>> Enable volatile considered harmful warning since use of volatile >>> is suspect. >>>

Re: [dpdk-dev] [PATCH] checkpatch: enable volatile warning

2021-03-10 Thread Stephen Hemminger
On Wed, 10 Mar 2021 12:10:01 +0100 Thomas Monjalon wrote: > 10/03/2021 12:04, Dharmik Thakkar: > > Enable volatile considered harmful warning since use of volatile > > is suspect. > > > > Suggested-by: Stephen Hemminger > > Signed-off-by: Dharmik Thakkar > > Reviewed-by: Ruifeng Wang > > g

Re: [dpdk-dev] [PATCH] checkpatch: enable volatile warning

2021-03-10 Thread Thomas Monjalon
10/03/2021 12:04, Dharmik Thakkar: > Enable volatile considered harmful warning since use of volatile > is suspect. > > Suggested-by: Stephen Hemminger > Signed-off-by: Dharmik Thakkar > Reviewed-by: Ruifeng Wang git grep -w volatile | wc -l 1796 How much is it suspect?

[dpdk-dev] [PATCH] checkpatch: enable volatile warning

2021-03-10 Thread Dharmik Thakkar
Enable volatile considered harmful warning since use of volatile is suspect. Suggested-by: Stephen Hemminger Signed-off-by: Dharmik Thakkar Reviewed-by: Ruifeng Wang --- devtools/checkpatches.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/checkpatches.sh b/devt