From: Rolf Eike Beer <eike-kernel@sf-tec.de>
To: Chris Wedgwood <cw@f00f.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
Andreas Gruenbacher <agruen@suse.de>,
Nathan Scott <nathans@sgi.com>
Subject: Re: [PATCH] 2.6.6 add qsort library function (UPDATED PATCH, symbol exported _GPL)
Date: Tue, 11 May 2004 16:55:11 +0200 [thread overview]
Message-ID: <200405111655.11623@bilbo.math.uni-mannheim.de> (raw)
In-Reply-To: <20040510071552.GB30834@taniwha.stupidest.org>
Am Montag, 10. Mai 2004 09:20 schrieb Chris Wedgwood:
> diff -Nru a/lib/qsort.c b/lib/qsort.c
> --- /dev/null Wed Dec 31 16:00:00 1969
> +++ b/lib/qsort.c Sun May 9 20:27:15 2004
> @@ -0,0 +1,239 @@
> +/*
> + * qsort implementation for the Linux kernel.
> + *
> + * Original implementation taken form glibc and credited to Douglas
> + * C. Schmidt (schmidt@ics.uci.edu).
> + *
> + * This source code is licensed under the GNU General Public License,
> + * Version 2. See the file COPYING for more details.
^^^^^^^^^
> + */
> +
> +/*
> + * If you consider tuning this algorithm, you should consult first:
> + * Engineering a sort function; Jon Bentley and M. Douglas McIlroy;
> + * Software - Practice and Experience; Vol. 23 (11), 1249-1265, 1993.
> + */
> +
> +# include <linux/module.h>
> +# include <linux/slab.h>
> +# include <linux/string.h>
> +
> +MODULE_LICENSE("GPL");
Shouldn't this be "GPLv2" then?
Eike
next prev parent reply other threads:[~2004-05-11 14:52 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-05-10 5:07 [PATCH] 2.6.6 add qsort library function Chris Wedgwood
2004-05-10 7:15 ` [PATCH] 2.6.6 add qsort library function (UPDATED PATCH, symbol exported _GPL) Chris Wedgwood
2004-05-11 14:55 ` Rolf Eike Beer [this message]
2004-06-04 2:37 ` Tim Bird
2004-06-04 4:51 ` Chris Wedgwood
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=200405111655.11623@bilbo.math.uni-mannheim.de \
--to=eike-kernel@sf-tec.de \
--cc=agruen@suse.de \
--cc=cw@f00f.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nathans@sgi.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.