qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] checkpatch: add a warning for basename/dirname
@ 2018-03-02  8:22 Julia Suvorova
  2018-03-02  8:25 ` no-reply
  2018-03-02  8:56 ` Paolo Bonzini
  0 siblings, 2 replies; 4+ messages in thread
From: Julia Suvorova @ 2018-03-02  8:22 UTC (permalink / raw)
  To: qemu-devel, Stefan Hajnoczi
  Cc: Jim Mussared, Joel Stanley, Paolo Bonzini, Cornelia Huck,
	Marc-André Lureau, Julia Suvorova

Signed-off-by: Julia Suvorova <jusual@mail.ru>
---
 scripts/checkpatch.pl | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 1b4b812..6c4fb42 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2584,6 +2584,11 @@ sub process {
 			ERROR("__func__ should be used instead of gcc specific __FUNCTION__\n"  . $herecurr);
 		}
 
+# recommend g_path_get_* over basename(3) and dirname(3)
+		if ($line =~ /\b(basename|dirname)\s*\(/) {
+			WARN("consider using g_path_get_$1 in preference to $1(3)\n" . $herecurr);
+		}
+
 # recommend qemu_strto* over strto* for numeric conversions
 		if ($line =~ /\b(strto[^kd].*?)\s*\(/) {
 			ERROR("consider using qemu_$1 in preference to $1\n" . $herecurr);
-- 
2.1.4

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

end of thread, other threads:[~2018-03-02  9:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-02  8:22 [Qemu-devel] [PATCH] checkpatch: add a warning for basename/dirname Julia Suvorova
2018-03-02  8:25 ` no-reply
2018-03-02  8:56 ` Paolo Bonzini
2018-03-02  9:27   ` Julia Suvorova

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