mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Rusty Russell <rusty@rustcorp.com.au>
To: torvalds@transmeta.com
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH] Module loader against 2.5.46: 4/9
Date: Tue, 05 Nov 2002 11:31:41 +1100	[thread overview]
Message-ID: <20021105005213.EC9672C0F1@lists.samba.org> (raw)
In-Reply-To: Your message of "Tue, 05 Nov 2002 11:21:48 +1100." <20021105002215.8EEE22C0F8@lists.samba.org>

Now we reintroduce features: first a trivial patch to implement
"strcspn" for module parameter parsing.

Linus, please apply,
Rusty.
--
  Anyone who quotes me in their sig is an idiot. -- Rusty Russell.

Name: strcspn patch
Author: Rusty Russell
Status: Experimental

D: This patch implements a generic strcspn.

diff -urpN --exclude TAGS -X /home/rusty/devel/kernel/kernel-patches/current-dontdiff --minimal .17889-2.5.36-param.pre/include/linux/string.h .17889-2.5.36-param/include/linux/string.h
--- .17889-2.5.36-param.pre/include/linux/string.h	2002-06-06 21:38:40.000000000 +1000
+++ .17889-2.5.36-param/include/linux/string.h	2002-09-19 16:15:20.000000000 +1000
@@ -15,7 +15,7 @@ extern "C" {
 extern char * strpbrk(const char *,const char *);
 extern char * strsep(char **,const char *);
 extern __kernel_size_t strspn(const char *,const char *);
-
+extern __kernel_size_t strcspn(const char *,const char *);
 
 /*
  * Include machine specific inline routines
diff -urpN --exclude TAGS -X /home/rusty/devel/kernel/kernel-patches/current-dontdiff --minimal .17889-2.5.36-param.pre/lib/string.c .17889-2.5.36-param/lib/string.c
--- .17889-2.5.36-param.pre/lib/string.c	2002-05-24 15:20:35.000000000 +1000
+++ .17889-2.5.36-param/lib/string.c	2002-09-19 16:15:20.000000000 +1000
@@ -272,6 +272,29 @@ size_t strspn(const char *s, const char 
 }
 #endif
 
+/**
+ * strcspn - Calculate the length of the initial substring of @s which does
+ * 	not contain letters in @reject
+ * @s: The string to be searched
+ * @reject: The string to avoid
+ */
+size_t strcspn(const char *s, const char *reject)
+{
+	const char *p;
+	const char *r;
+	size_t count = 0;
+
+	for (p = s; *p != '\0'; ++p) {
+		for (r = reject; *r != '\0'; ++r) {
+			if (*p == *r)
+				return count;
+		}
+		++count;
+	}
+
+	return count;
+}	
+
 #ifndef __HAVE_ARCH_STRPBRK
 /**
  * strpbrk - Find the first occurrence of a set of characters

  parent reply	other threads:[~2002-11-05  0:48 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-11-05  0:21 [PATCH] Module loader against 2.5.46: 1/9 Rusty Russell
2002-11-05  0:29 ` [PATCH] Module loader against 2.5.46: 3/9 Rusty Russell
2002-11-05  0:31 ` Rusty Russell [this message]
2002-11-05  0:35 ` [PATCH] Module loader against 2.5.46: 5/9 Rusty Russell
2002-11-05  0:36 ` [PATCH] Module loader against 2.5.46: 6/9 Rusty Russell
2002-11-05  0:41 ` [PATCH] Module loader against 2.5.46: 7/9 Rusty Russell
2002-11-05  0:43 ` [PATCH] Module loader against 2.5.46: 8/9 Rusty Russell
2002-11-05  3:19   ` Werner Almesberger
2002-11-05  3:51     ` Rusty Russell
2002-11-05  4:08       ` Werner Almesberger
2002-11-05  4:24         ` Rusty Russell
2002-11-06 16:45       ` Bill Davidsen
2002-11-07 11:24         ` Rusty Russell
2002-11-08  3:15           ` Randy.Dunlap
2002-11-08 21:15           ` Bill Davidsen
2002-11-09 12:24             ` Mark H. Wood
2002-11-10  3:21               ` Rusty Russell
2002-11-11 12:03             ` Horst von Brand
2002-11-11 12:35               ` Richard B. Johnson
2002-11-05  0:47 ` [PATCH] Module loader against 2.5.46: 9/9 Rusty Russell
2002-11-06 12:43   ` Keith Owens
2002-11-07 11:08     ` Rusty Russell
2002-11-08  9:35       ` Russell King
2002-11-09  3:01         ` Rusty Russell

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=20021105005213.EC9672C0F1@lists.samba.org \
    --to=rusty@rustcorp.com.au \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@transmeta.com \
    /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

all inboxes | Powered by JetHome®