All of lore.kernel.org
 help / color / mirror / Atom feed
From: Neil Brown <neilb@suse.de>
To: David Woodhouse <dwmw2@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>,
	linux-raid@vger.kernel.org, linux-kernel@vger.kernel.org,
	dm-devel@redhat.com
Subject: Re: [REVISED PULL REQUEST] md updates for 2.6.36
Date: Thu, 12 Aug 2010 06:49:26 +1000	[thread overview]
Message-ID: <20100812064926.15dafbf7@notabene> (raw)
In-Reply-To: <1281482611.5887.38.camel@localhost>

On Wed, 11 Aug 2010 00:23:31 +0100
David Woodhouse <dwmw2@infradead.org> wrote:

> On Tue, 2010-08-10 at 15:47 -0700, Linus Torvalds wrote:
> > 
> > Hmm. Why "lib/raid6/raid6sse2.c" and friends? Why "raid6" twice? You
> > don't mean "raid6+1" (mirrored raid6 ;), so why not just remove the
> > second "raid6", and call it "lib/raid6/sse2.c"
> > 
> > But I pulled. Just in case there was some logic to the duplication. 
> 
> No particular reason -- I just wanted the initial move to be as simple
> as possible. Since it all gets built into raid6_pq.ko and we never see
> these filenames even in module names, it does make sense to rename them.
> 
> If Neil approves, git://git.infradead.org/~dwmw2/libraid-2.6.git

Looks good,thanks.  There are a few comments still say "raid6xxx.c" and there
is a .h file (raid6x86.h) which you didn't rename but probably should be.

I've added a patch to clean these up.

> 
> The userspace test/ (neé raid6test/) directory doesn't build, but it
> didn't before. At least I fixed the awk incantations.
> 
Yep, there is some bit rot in there.  Fixed that too.

Linus, you can get all this from
    git://neil.brown.name/md for-linus

Thanks.

The following changes since commit 3d30701b58970425e1d45994d6cb82f828924fdd:

  Merge branch 'for-linus' of git://neil.brown.name/md (2010-08-10 15:38:19 -0700)

are available in the git repository at:

  git://neil.brown.name/md for-linus

David Woodhouse (1):
      Rename raid6 files now they're in a 'raid6' directory.

NeilBrown (2):
      Make lib/raid6/test build correctly.
      Further tidyup of raid6 naming in lib/raid6

 include/linux/raid/pq.h                   |    2 +
 lib/raid6/Makefile                        |   81 ++++++++++++++---------------
 lib/raid6/{raid6algos.c => algos.c}       |    4 +-
 lib/raid6/{raid6altivec.uc => altivec.uc} |    0
 lib/raid6/{raid6int.uc => int.uc}         |    0
 lib/raid6/{raid6mmx.c => mmx.c}           |    6 +-
 lib/raid6/raid6test/Makefile              |   75 --------------------------
 lib/raid6/{raid6recov.c => recov.c}       |    2 +-
 lib/raid6/{raid6sse1.c => sse1.c}         |    6 +-
 lib/raid6/{raid6sse2.c => sse2.c}         |    4 +-
 lib/raid6/test/Makefile                   |   72 +++++++++++++++++++++++++
 lib/raid6/{raid6test => test}/test.c      |    0
 lib/raid6/{raid6x86.h => x86.h}           |    2 +-
 13 files changed, 125 insertions(+), 129 deletions(-)
 rename lib/raid6/{raid6algos.c => algos.c} (99%)
 rename lib/raid6/{raid6altivec.uc => altivec.uc} (100%)
 rename lib/raid6/{raid6int.uc => int.uc} (100%)
 rename lib/raid6/{raid6mmx.c => mmx.c} (98%)
 delete mode 100644 lib/raid6/raid6test/Makefile
 rename lib/raid6/{raid6recov.c => recov.c} (99%)
 rename lib/raid6/{raid6sse1.c => sse1.c} (98%)
 rename lib/raid6/{raid6sse2.c => sse2.c} (99%)
 create mode 100644 lib/raid6/test/Makefile
 rename lib/raid6/{raid6test => test}/test.c (100%)
 rename lib/raid6/{raid6x86.h => x86.h} (99%)
--
To unsubscribe from this list: send the line "unsubscribe linux-raid" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: Neil Brown <neilb@suse.de>
To: David Woodhouse <dwmw2@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>,
	linux-raid@vger.kernel.org, linux-kernel@vger.kernel.org,
	dm-devel@redhat.com
Subject: Re: [REVISED PULL REQUEST] md updates for 2.6.36
Date: Thu, 12 Aug 2010 06:49:26 +1000	[thread overview]
Message-ID: <20100812064926.15dafbf7@notabene> (raw)
In-Reply-To: <1281482611.5887.38.camel@localhost>

On Wed, 11 Aug 2010 00:23:31 +0100
David Woodhouse <dwmw2@infradead.org> wrote:

> On Tue, 2010-08-10 at 15:47 -0700, Linus Torvalds wrote:
> > 
> > Hmm. Why "lib/raid6/raid6sse2.c" and friends? Why "raid6" twice? You
> > don't mean "raid6+1" (mirrored raid6 ;), so why not just remove the
> > second "raid6", and call it "lib/raid6/sse2.c"
> > 
> > But I pulled. Just in case there was some logic to the duplication. 
> 
> No particular reason -- I just wanted the initial move to be as simple
> as possible. Since it all gets built into raid6_pq.ko and we never see
> these filenames even in module names, it does make sense to rename them.
> 
> If Neil approves, git://git.infradead.org/~dwmw2/libraid-2.6.git

Looks good,thanks.  There are a few comments still say "raid6xxx.c" and there
is a .h file (raid6x86.h) which you didn't rename but probably should be.

I've added a patch to clean these up.

> 
> The userspace test/ (neé raid6test/) directory doesn't build, but it
> didn't before. At least I fixed the awk incantations.
> 
Yep, there is some bit rot in there.  Fixed that too.

Linus, you can get all this from
    git://neil.brown.name/md for-linus

Thanks.

The following changes since commit 3d30701b58970425e1d45994d6cb82f828924fdd:

  Merge branch 'for-linus' of git://neil.brown.name/md (2010-08-10 15:38:19 -0700)

are available in the git repository at:

  git://neil.brown.name/md for-linus

David Woodhouse (1):
      Rename raid6 files now they're in a 'raid6' directory.

NeilBrown (2):
      Make lib/raid6/test build correctly.
      Further tidyup of raid6 naming in lib/raid6

 include/linux/raid/pq.h                   |    2 +
 lib/raid6/Makefile                        |   81 ++++++++++++++---------------
 lib/raid6/{raid6algos.c => algos.c}       |    4 +-
 lib/raid6/{raid6altivec.uc => altivec.uc} |    0
 lib/raid6/{raid6int.uc => int.uc}         |    0
 lib/raid6/{raid6mmx.c => mmx.c}           |    6 +-
 lib/raid6/raid6test/Makefile              |   75 --------------------------
 lib/raid6/{raid6recov.c => recov.c}       |    2 +-
 lib/raid6/{raid6sse1.c => sse1.c}         |    6 +-
 lib/raid6/{raid6sse2.c => sse2.c}         |    4 +-
 lib/raid6/test/Makefile                   |   72 +++++++++++++++++++++++++
 lib/raid6/{raid6test => test}/test.c      |    0
 lib/raid6/{raid6x86.h => x86.h}           |    2 +-
 13 files changed, 125 insertions(+), 129 deletions(-)
 rename lib/raid6/{raid6algos.c => algos.c} (99%)
 rename lib/raid6/{raid6altivec.uc => altivec.uc} (100%)
 rename lib/raid6/{raid6int.uc => int.uc} (100%)
 rename lib/raid6/{raid6mmx.c => mmx.c} (98%)
 delete mode 100644 lib/raid6/raid6test/Makefile
 rename lib/raid6/{raid6recov.c => recov.c} (99%)
 rename lib/raid6/{raid6sse1.c => sse1.c} (98%)
 rename lib/raid6/{raid6sse2.c => sse2.c} (99%)
 create mode 100644 lib/raid6/test/Makefile
 rename lib/raid6/{raid6test => test}/test.c (100%)
 rename lib/raid6/{raid6x86.h => x86.h} (99%)

  reply	other threads:[~2010-08-11 20:49 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-10  0:14 [REVISED PULL REQUEST] md updates for 2.6.36 Neil Brown
2010-08-10  0:14 ` Neil Brown
2010-08-10 22:47 ` Linus Torvalds
2010-08-10 22:47   ` Linus Torvalds
2010-08-10 23:23   ` David Woodhouse
2010-08-10 23:23     ` David Woodhouse
2010-08-11 20:49     ` Neil Brown [this message]
2010-08-11 20:49       ` Neil Brown

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=20100812064926.15dafbf7@notabene \
    --to=neilb@suse.de \
    --cc=dm-devel@redhat.com \
    --cc=dwmw2@infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-raid@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /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.