Linux Device Mapper development
 help / color / mirror / Atom feed
From: Martin Wilck <mwilck@suse.com>
To: tang.junhui@zte.com.cn, dm-devel@redhat.com
Subject: [PATCH] uevent_can_discard: optimize devpath check
Date: Wed,  1 Mar 2017 18:22:19 +0100	[thread overview]
Message-ID: <20170301172219.9683-1-mwilck@suse.com> (raw)

This uses roughly 10% cycles of the sscanf-based implementation.

Improves: ee8888f0 "multipath-tools: improve processing efficiency..."
Signed-off-by: Martin Wilck <mwilck@suse.com>
---
 libmultipath/uevent.c | 37 +++++++++++++++++++++++--------------
 1 file changed, 23 insertions(+), 14 deletions(-)

diff --git a/libmultipath/uevent.c b/libmultipath/uevent.c
index 6e2527bd..367e129a 100644
--- a/libmultipath/uevent.c
+++ b/libmultipath/uevent.c
@@ -143,26 +143,35 @@ uevent_need_merge(void)
 	return need_merge;
 }
 
+static bool
+uevent_can_discard_by_devpath(const char *devpath)
+{
+	static const char BLOCK[] = "/block/";
+	const char *tmp = strstr(devpath, BLOCK);
+
+	if (tmp == NULL) {
+		condlog(4, "no /block/ in '%s'", devpath);
+		return true;
+	}
+	tmp += sizeof(BLOCK) - 1;
+	if (*tmp == '\0')
+		/* just ".../block/" - discard */
+		return true;
+	/*
+	 * If there are more path elements after ".../block/xyz",
+	 * it's a partition - discard it; but don't discard ".../block/sda/".
+	 */
+	tmp = strchr(tmp, '/');
+	return tmp != NULL && *(tmp + 1) != '\0';
+}
+
 bool
 uevent_can_discard(struct uevent *uev)
 {
-	char *tmp;
-	char a[11], b[11];
 	struct config * conf;
 
-	/*
-	 * keep only block devices, discard partitions
-	 */
-	tmp = strstr(uev->devpath, "/block/");
-	if (tmp == NULL){
-		condlog(4, "no /block/ in '%s'", uev->devpath);
+	if (uevent_can_discard_by_devpath(uev->devpath))
 		return true;
-	}
-	if (sscanf(tmp, "/block/%10s", a) != 1 ||
-	    sscanf(tmp, "/block/%10[^/]/%10s", a, b) == 2) {
-		condlog(4, "discard event on %s", uev->devpath);
-		return true;
-	}
 
 	/* 
 	 * do not filter dm devices by devnode
-- 
2.12.0

             reply	other threads:[~2017-03-01 17:22 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-01 17:22 Martin Wilck [this message]
2017-03-16  6:42 ` [PATCH] uevent_can_discard: optimize devpath check Christophe Varoqui
  -- strict thread matches above, loose matches on Subject: below --
2017-03-02  8:35 tang.junhui

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170301172219.9683-1-mwilck@suse.com \
    --to=mwilck@suse.com \
    --cc=dm-devel@redhat.com \
    --cc=tang.junhui@zte.com.cn \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox