public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC] Move InfiniBand .h files
@ 2005-08-04 17:32 Roland Dreier
  2005-08-04 17:48 ` [openib-general] " Tom Duffy
                   ` (5 more replies)
  0 siblings, 6 replies; 19+ messages in thread
From: Roland Dreier @ 2005-08-04 17:32 UTC (permalink / raw)
  To: openib-general, linux-kernel

I would like to get people's reactions to moving the InfiniBand .h
files from their current location in drivers/infiniband/include/ to
include/linux/rdma/.  If we agree that this is a good idea then I'll
push this change as soon as 2.6.14 starts.

The advantages of doing this are:

  - The headers become more easily accessible to other parts of the
    tree that might want to use IB support.  For example, an NFS/RDMA
    client probably wants to live under fs/
  - It makes it easier to build IB modules outside the tree, since
    include/linux gets put in /lib/modules/<ver>/build.  I realize
    that we don't really care about out-of-tree modules, but it is
    convenient to be able to develop and distribute new drivers that
    build against someone's existing kernels.
  - We can kill off the ugly

        EXTRA_CFLAGS += -Idrivers/infiniband/include

    lines in our Makefiles.

The disadvantages are:

  - It's churn with little technical merit.
  - It makes it a little harder to pull the OpenIB svn tree into a
    kernel tree, since one would have to link both drivers/infiniband
    and include/linux/rdma instead of just drivers/infiniband.  This
    problem goes away if/when OpenIB shifts over to a new source code
    control system.

Thanks,
  Roland

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

* Re: [openib-general] [RFC] Move InfiniBand .h files
  2005-08-04 17:32 [RFC] Move InfiniBand .h files Roland Dreier
@ 2005-08-04 17:48 ` Tom Duffy
  2005-08-04 17:53 ` Arjan van de Ven
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 19+ messages in thread
From: Tom Duffy @ 2005-08-04 17:48 UTC (permalink / raw)
  To: Roland Dreier; +Cc: openib-general, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1136 bytes --]

On Thu, 2005-08-04 at 10:32 -0700, Roland Dreier wrote:
> I would like to get people's reactions to moving the InfiniBand .h
> files from their current location in drivers/infiniband/include/ to
> include/linux/rdma/.  If we agree that this is a good idea then I'll
> push this change as soon as 2.6.14 starts.

I think it is a great idea.

> The advantages of doing this are:
> 
>   - The headers become more easily accessible to other parts of the
>     tree that might want to use IB support.  For example, an NFS/RDMA
>     client probably wants to live under fs/
>   - It makes it easier to build IB modules outside the tree, since
>     include/linux gets put in /lib/modules/<ver>/build.  I realize
>     that we don't really care about out-of-tree modules, but it is
>     convenient to be able to develop and distribute new drivers that
>     build against someone's existing kernels.
>   - We can kill off the ugly
> 
>         EXTRA_CFLAGS += -Idrivers/infiniband/include
> 
>     lines in our Makefiles.

One more advantage:

   - It shows our willingness to push past just infiniband.

-tduffy

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: [RFC] Move InfiniBand .h files
  2005-08-04 17:32 [RFC] Move InfiniBand .h files Roland Dreier
  2005-08-04 17:48 ` [openib-general] " Tom Duffy
@ 2005-08-04 17:53 ` Arjan van de Ven
  2005-08-04 18:26   ` [openib-general] " Grant Grundler
  2005-08-04 18:31   ` Roland Dreier
  2005-08-04 18:11 ` [openib-general] " Steve Wise
                   ` (3 subsequent siblings)
  5 siblings, 2 replies; 19+ messages in thread
From: Arjan van de Ven @ 2005-08-04 17:53 UTC (permalink / raw)
  To: Roland Dreier; +Cc: openib-general, linux-kernel

On Thu, 2005-08-04 at 10:32 -0700, Roland Dreier wrote:
> I would like to get people's reactions to moving the InfiniBand .h
> files from their current location in drivers/infiniband/include/ to
> include/linux/rdma/.  If we agree that this is a good idea then I'll
> push this change as soon as 2.6.14 starts.

please only put userspace clean headers here; the rest is more or less
private headers for your subsystem. 

At minimum the headers should be split in separate files for
shared-userspace and kernel (eg no overlap at all), but I'd vote for
keeping the headers in your own dir.


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

* RE: [openib-general] [RFC] Move InfiniBand .h files
  2005-08-04 17:32 [RFC] Move InfiniBand .h files Roland Dreier
  2005-08-04 17:48 ` [openib-general] " Tom Duffy
  2005-08-04 17:53 ` Arjan van de Ven
@ 2005-08-04 18:11 ` Steve Wise
  2005-08-04 18:20 ` Grant Grundler
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 19+ messages in thread
From: Steve Wise @ 2005-08-04 18:11 UTC (permalink / raw)
  To: 'Roland Dreier', openib-general, linux-kernel

Seems reasonable to me...


Steve.

 

> -----Original Message-----
> From: openib-general-bounces@openib.org 
> [mailto:openib-general-bounces@openib.org] On Behalf Of Roland Dreier
> Sent: Thursday, August 04, 2005 12:32 PM
> To: openib-general@openib.org; linux-kernel@vger.kernel.org
> Subject: [openib-general] [RFC] Move InfiniBand .h files
> 
> I would like to get people's reactions to moving the InfiniBand .h
> files from their current location in drivers/infiniband/include/ to
> include/linux/rdma/.  If we agree that this is a good idea then I'll
> push this change as soon as 2.6.14 starts.
> 
> The advantages of doing this are:
> 
>   - The headers become more easily accessible to other parts of the
>     tree that might want to use IB support.  For example, an NFS/RDMA
>     client probably wants to live under fs/
>   - It makes it easier to build IB modules outside the tree, since
>     include/linux gets put in /lib/modules/<ver>/build.  I realize
>     that we don't really care about out-of-tree modules, but it is
>     convenient to be able to develop and distribute new drivers that
>     build against someone's existing kernels.
>   - We can kill off the ugly
> 
>         EXTRA_CFLAGS += -Idrivers/infiniband/include
> 
>     lines in our Makefiles.
> 
> The disadvantages are:
> 
>   - It's churn with little technical merit.
>   - It makes it a little harder to pull the OpenIB svn tree into a
>     kernel tree, since one would have to link both drivers/infiniband
>     and include/linux/rdma instead of just drivers/infiniband.  This
>     problem goes away if/when OpenIB shifts over to a new source code
>     control system.
> 
> Thanks,
>   Roland
> _______________________________________________
> openib-general mailing list
> openib-general@openib.org
> http://openib.org/mailman/listinfo/openib-general
> 
> To unsubscribe, please visit 
> http://openib.org/mailman/listinfo/openib-general
> 


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

* Re: [openib-general] [RFC] Move InfiniBand .h files
  2005-08-04 17:32 [RFC] Move InfiniBand .h files Roland Dreier
                   ` (2 preceding siblings ...)
  2005-08-04 18:11 ` [openib-general] " Steve Wise
@ 2005-08-04 18:20 ` Grant Grundler
  2005-08-04 18:32   ` Roland Dreier
  2005-08-04 21:38 ` James Lentini
  2005-08-05  9:22 ` Christoph Hellwig
  5 siblings, 1 reply; 19+ messages in thread
From: Grant Grundler @ 2005-08-04 18:20 UTC (permalink / raw)
  To: Roland Dreier; +Cc: openib-general, linux-kernel

On Thu, Aug 04, 2005 at 10:32:14AM -0700, Roland Dreier wrote:
...
I agree with the rename/relocation of the header files for
the reasons you mentioned.

>   - It makes it a little harder to pull the OpenIB svn tree into a
>     kernel tree, since one would have to link both drivers/infiniband
>     and include/linux/rdma instead of just drivers/infiniband.  This
>     problem goes away if/when OpenIB shifts over to a new source code
>     control system.

Any thoughts on renaming drivers/infiniband to drivers/rdma
at the same time?

If you are going to churn...don't be shy about it :^)

grant

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

* Re: [openib-general] Re: [RFC] Move InfiniBand .h files
  2005-08-04 17:53 ` Arjan van de Ven
@ 2005-08-04 18:26   ` Grant Grundler
  2005-08-04 19:51     ` Arjan van de Ven
  2005-08-04 18:31   ` Roland Dreier
  1 sibling, 1 reply; 19+ messages in thread
From: Grant Grundler @ 2005-08-04 18:26 UTC (permalink / raw)
  To: Arjan van de Ven; +Cc: Roland Dreier, linux-kernel, openib-general

On Thu, Aug 04, 2005 at 07:53:58PM +0200, Arjan van de Ven wrote:
> On Thu, 2005-08-04 at 10:32 -0700, Roland Dreier wrote:
> > I would like to get people's reactions to moving the InfiniBand .h
> > files from their current location in drivers/infiniband/include/ to
> > include/linux/rdma/.  If we agree that this is a good idea then I'll
> > push this change as soon as 2.6.14 starts.
> 
> please only put userspace clean headers here; the rest is more or less
> private headers for your subsystem. 

Sorry...this smells like a rathole...but does this mean
linus agrees the kernel subsystems should export headers suitable for
both user space and kernel driver modules?

Historical, I thought glibc and other user space libs were expected to
maintain their own set of header files. Maybe I'm just confused...

thanks,
grant

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

* Re: [RFC] Move InfiniBand .h files
  2005-08-04 17:53 ` Arjan van de Ven
  2005-08-04 18:26   ` [openib-general] " Grant Grundler
@ 2005-08-04 18:31   ` Roland Dreier
  2005-08-04 18:38     ` Arjan van de Ven
  1 sibling, 1 reply; 19+ messages in thread
From: Roland Dreier @ 2005-08-04 18:31 UTC (permalink / raw)
  To: Arjan van de Ven; +Cc: openib-general, linux-kernel

    Arjan> At minimum the headers should be split in separate files
    Arjan> for shared-userspace and kernel (eg no overlap at all), but
    Arjan> I'd vote for keeping the headers in your own dir.

This is already done -- the userspace ABI is defined in ib_user_mad.h,
ib_user_verbs.h, etc.

The problem with keeping subsystem headers under drivers/infiniband is
that it's ugly for, say, fs/nfs/Makefile to have to add
-Idrivers/infiniband/include to its CFLAGS just because it's
implementing NFS/RDMA.

Also, drivers/infiniband/include doesn't get put into the
/lib/modules/<ver>/build directory, so it's a pain for people
developing new drivers (this is a real complaint that came to me from
a vendor developing a driver for a new piece of IB hardware).

Thanks,
  Roland

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

* Re: [openib-general] [RFC] Move InfiniBand .h files
  2005-08-04 18:20 ` Grant Grundler
@ 2005-08-04 18:32   ` Roland Dreier
  0 siblings, 0 replies; 19+ messages in thread
From: Roland Dreier @ 2005-08-04 18:32 UTC (permalink / raw)
  To: Grant Grundler; +Cc: openib-general, linux-kernel

    Grant> Any thoughts on renaming drivers/infiniband to drivers/rdma
    Grant> at the same time?

    Grant> If you are going to churn...don't be shy about it :^)

Well, I'd rather avoid churn for purely political reasons.  The main
point of my proposal is to move the includes from drivers/ to
include/, but while we're at it me might as well pick a more neutral
directory name.

Moving drivers/infiniband to drivers/rdma has no technical merit right
now, so I'd rather wait and see how it makes sense to organize the
code we end up with.

 - R.

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

* Re: [RFC] Move InfiniBand .h files
  2005-08-04 18:31   ` Roland Dreier
@ 2005-08-04 18:38     ` Arjan van de Ven
  2005-08-04 18:57       ` Roland Dreier
  0 siblings, 1 reply; 19+ messages in thread
From: Arjan van de Ven @ 2005-08-04 18:38 UTC (permalink / raw)
  To: Roland Dreier; +Cc: openib-general, linux-kernel


> Also, drivers/infiniband/include doesn't get put into the
> /lib/modules/<ver>/build directory,

that is a symlink not a directory, and a symlink to the full source...



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

* Re: [RFC] Move InfiniBand .h files
  2005-08-04 18:38     ` Arjan van de Ven
@ 2005-08-04 18:57       ` Roland Dreier
  2005-08-04 19:22         ` Sam Ravnborg
  2005-08-04 19:51         ` Arjan van de Ven
  0 siblings, 2 replies; 19+ messages in thread
From: Roland Dreier @ 2005-08-04 18:57 UTC (permalink / raw)
  To: Arjan van de Ven; +Cc: openib-general, linux-kernel

    Roland> Also, drivers/infiniband/include doesn't get put into the
    Roland> /lib/modules/<ver>/build directory,

    Arjan> that is a symlink not a directory, and a symlink to the
    Arjan> full source...

Sorry, I was too terse about the problem.  You're right, but typical
distros don't ship full kernel source in their "support kernel builds"
package.  And if I use an external build directory (ie "O=") then
the symlink just points to my external build directory, which doesn't
include the source to drivers/, just links to include/

 - R.

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

* Re: [RFC] Move InfiniBand .h files
  2005-08-04 18:57       ` Roland Dreier
@ 2005-08-04 19:22         ` Sam Ravnborg
  2005-08-04 19:54           ` Christopher Friesen
  2005-08-04 19:51         ` Arjan van de Ven
  1 sibling, 1 reply; 19+ messages in thread
From: Sam Ravnborg @ 2005-08-04 19:22 UTC (permalink / raw)
  To: Roland Dreier; +Cc: Arjan van de Ven, openib-general, linux-kernel

On Thu, Aug 04, 2005 at 11:57:55AM -0700, Roland Dreier wrote:
>     Roland> Also, drivers/infiniband/include doesn't get put into the
>     Roland> /lib/modules/<ver>/build directory,
> 
>     Arjan> that is a symlink not a directory, and a symlink to the
>     Arjan> full source...
> 
> Sorry, I was too terse about the problem.  You're right, but typical
> distros don't ship full kernel source in their "support kernel builds"
> package.  And if I use an external build directory (ie "O=") then
> the symlink just points to my external build directory, which doesn't
> include the source to drivers/, just links to include/

If the external module uses a Kbuild file as explained in
Documentation/kbuild/makefiles.txt and then uses both O= and M=
when compiling the module there is no issue.

With respect to moving the .h files - please do so.
drivers/infiniband should only include header used in that same
directory. Not header files potentially uased by fs/.

	Sam

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

* Re: [openib-general] Re: [RFC] Move InfiniBand .h files
  2005-08-04 18:26   ` [openib-general] " Grant Grundler
@ 2005-08-04 19:51     ` Arjan van de Ven
  0 siblings, 0 replies; 19+ messages in thread
From: Arjan van de Ven @ 2005-08-04 19:51 UTC (permalink / raw)
  To: Grant Grundler; +Cc: Roland Dreier, linux-kernel, openib-general

On Thu, 2005-08-04 at 11:26 -0700, Grant Grundler wrote:
> On Thu, Aug 04, 2005 at 07:53:58PM +0200, Arjan van de Ven wrote:
> > On Thu, 2005-08-04 at 10:32 -0700, Roland Dreier wrote:
> > > I would like to get people's reactions to moving the InfiniBand .h
> > > files from their current location in drivers/infiniband/include/ to
> > > include/linux/rdma/.  If we agree that this is a good idea then I'll
> > > push this change as soon as 2.6.14 starts.
> > 
> > please only put userspace clean headers here; the rest is more or less
> > private headers for your subsystem. 
> 
> Sorry...this smells like a rathole...but does this mean
> linus agrees the kernel subsystems should export headers suitable for
> both user space and kernel driver modules?
> 
> Historical, I thought glibc and other user space libs were expected to
> maintain their own set of header files. Maybe I'm just confused...

there is a definite requirement for the kernel to expose SOME things to
userspace. Well for SOMETHING to expose them. Right now most distros
ship a hacked up version of the kernel headers (eg removed of all the
kernel specific stuff and all the gpl inline code etc). A good part of
making such an external project possible is to make a clean separation
between userspace shared stuff and pure kernel internals.



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

* Re: [RFC] Move InfiniBand .h files
  2005-08-04 18:57       ` Roland Dreier
  2005-08-04 19:22         ` Sam Ravnborg
@ 2005-08-04 19:51         ` Arjan van de Ven
  1 sibling, 0 replies; 19+ messages in thread
From: Arjan van de Ven @ 2005-08-04 19:51 UTC (permalink / raw)
  To: Roland Dreier; +Cc: openib-general, linux-kernel

On Thu, 2005-08-04 at 11:57 -0700, Roland Dreier wrote:
>     Roland> Also, drivers/infiniband/include doesn't get put into the
>     Roland> /lib/modules/<ver>/build directory,
> 
>     Arjan> that is a symlink not a directory, and a symlink to the
>     Arjan> full source...
> 
> Sorry, I was too terse about the problem.  You're right, but typical
> distros don't ship full kernel source in their "support kernel builds"
> package.

so what makes you think they will ship include/infiniband ?



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

* Re: [RFC] Move InfiniBand .h files
  2005-08-04 19:22         ` Sam Ravnborg
@ 2005-08-04 19:54           ` Christopher Friesen
  2005-08-04 20:02             ` Sam Ravnborg
  0 siblings, 1 reply; 19+ messages in thread
From: Christopher Friesen @ 2005-08-04 19:54 UTC (permalink / raw)
  To: Sam Ravnborg
  Cc: Roland Dreier, Arjan van de Ven, openib-general, linux-kernel

Sam Ravnborg wrote:
> On Thu, Aug 04, 2005 at 11:57:55AM -0700, Roland Dreier wrote:

>>Sorry, I was too terse about the problem.  You're right, but typical
>>distros don't ship full kernel source in their "support kernel builds"
>>package.  And if I use an external build directory (ie "O=") then
>>the symlink just points to my external build directory, which doesn't
>>include the source to drivers/, just links to include/
> 
> 
> If the external module uses a Kbuild file as explained in
> Documentation/kbuild/makefiles.txt and then uses both O= and M=
> when compiling the module there is no issue.
> 
> With respect to moving the .h files - please do so.
> drivers/infiniband should only include header used in that same
> directory. Not header files potentially uased by fs/.

I think Roland was talking about the case where the running kernel was 
built with "O=", in which case the /lib/modules.../build symlink points 
to the build directory rather than the original source tree.

Does Kbuild handle this case properly?

Chris

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

* Re: [RFC] Move InfiniBand .h files
  2005-08-04 19:54           ` Christopher Friesen
@ 2005-08-04 20:02             ` Sam Ravnborg
  0 siblings, 0 replies; 19+ messages in thread
From: Sam Ravnborg @ 2005-08-04 20:02 UTC (permalink / raw)
  To: Christopher Friesen
  Cc: Roland Dreier, Arjan van de Ven, openib-general, linux-kernel

On Thu, Aug 04, 2005 at 01:54:56PM -0600, Christopher Friesen wrote:
> Sam Ravnborg wrote:
> >On Thu, Aug 04, 2005 at 11:57:55AM -0700, Roland Dreier wrote:
> 
> >>Sorry, I was too terse about the problem.  You're right, but typical
> >>distros don't ship full kernel source in their "support kernel builds"
> >>package.  And if I use an external build directory (ie "O=") then
> >>the symlink just points to my external build directory, which doesn't
> >>include the source to drivers/, just links to include/
> >
> >
> >If the external module uses a Kbuild file as explained in
> >Documentation/kbuild/makefiles.txt and then uses both O= and M=
> >when compiling the module there is no issue.
> >
> >With respect to moving the .h files - please do so.
> >drivers/infiniband should only include header used in that same
> >directory. Not header files potentially uased by fs/.
> 
> I think Roland was talking about the case where the running kernel was 
> built with "O=", in which case the /lib/modules.../build symlink points 
> to the build directory rather than the original source tree.
> 
> Does Kbuild handle this case properly?

Yes it does.
/lib/modules/.../ contains two symlinks these days:

build -> always point to the directory containing the output of the build
source -> always point to the kernel source

In the 'make' case where the kernel is built without using O= they point
to the same directory.
In the 'make O=' case they point to different directories.

SUSE does ship with a make O= build kernel these days.
Fedora IIRC has done an ugly hack and just copied over a number of files
so a compile works in most cases - but then also use both symlink.

It has never been easier to build a module if the target is only the
running kernel. Only when you adds backwards compatibility it gets messy :-(

	Sam

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

* Re: [openib-general] [RFC] Move InfiniBand .h files
  2005-08-04 17:32 [RFC] Move InfiniBand .h files Roland Dreier
                   ` (3 preceding siblings ...)
  2005-08-04 18:20 ` Grant Grundler
@ 2005-08-04 21:38 ` James Lentini
  2005-08-05  9:22 ` Christoph Hellwig
  5 siblings, 0 replies; 19+ messages in thread
From: James Lentini @ 2005-08-04 21:38 UTC (permalink / raw)
  To: Roland Dreier; +Cc: openib-general, linux-kernel



On Thu, 4 Aug 2005, Roland Dreier wrote:

> I would like to get people's reactions to moving the InfiniBand .h
> files from their current location in drivers/infiniband/include/ to
> include/linux/rdma/.  If we agree that this is a good idea then I'll
> push this change as soon as 2.6.14 starts.

I think it is a good idea.

> The advantages of doing this are:
>
>  - The headers become more easily accessible to other parts of the
>    tree that might want to use IB support.  For example, an NFS/RDMA
>    client probably wants to live under fs/

net/sunrpc/ has also been proposed.

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

* Re: [RFC] Move InfiniBand .h files
  2005-08-04 17:32 [RFC] Move InfiniBand .h files Roland Dreier
                   ` (4 preceding siblings ...)
  2005-08-04 21:38 ` James Lentini
@ 2005-08-05  9:22 ` Christoph Hellwig
  2005-08-05 16:08   ` Roland Dreier
  5 siblings, 1 reply; 19+ messages in thread
From: Christoph Hellwig @ 2005-08-05  9:22 UTC (permalink / raw)
  To: Roland Dreier; +Cc: openib-general, linux-kernel

On Thu, Aug 04, 2005 at 10:32:14AM -0700, Roland Dreier wrote:
> I would like to get people's reactions to moving the InfiniBand .h
> files from their current location in drivers/infiniband/include/ to
> include/linux/rdma/.  If we agree that this is a good idea then I'll
> push this change as soon as 2.6.14 starts.

include/rmda, please.  not need for the linux/ component.

> 
> The advantages of doing this are:
> 

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

* Re: [RFC] Move InfiniBand .h files
  2005-08-05  9:22 ` Christoph Hellwig
@ 2005-08-05 16:08   ` Roland Dreier
  2005-08-05 21:06     ` Sam Ravnborg
  0 siblings, 1 reply; 19+ messages in thread
From: Roland Dreier @ 2005-08-05 16:08 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: openib-general, linux-kernel

    Christoph> include/rmda, please.  not need for the linux/ component.

OK, fair enough.  Any objection to this?

 - R.

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

* Re: [RFC] Move InfiniBand .h files
  2005-08-05 16:08   ` Roland Dreier
@ 2005-08-05 21:06     ` Sam Ravnborg
  0 siblings, 0 replies; 19+ messages in thread
From: Sam Ravnborg @ 2005-08-05 21:06 UTC (permalink / raw)
  To: Roland Dreier; +Cc: Christoph Hellwig, openib-general, linux-kernel

On Fri, Aug 05, 2005 at 09:08:41AM -0700, Roland Dreier wrote:
>     Christoph> include/rmda, please.  not need for the linux/ component.
> 
> OK, fair enough.  Any objection to this?
No, makes sense.

	Sam

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

end of thread, other threads:[~2005-08-05 21:06 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-04 17:32 [RFC] Move InfiniBand .h files Roland Dreier
2005-08-04 17:48 ` [openib-general] " Tom Duffy
2005-08-04 17:53 ` Arjan van de Ven
2005-08-04 18:26   ` [openib-general] " Grant Grundler
2005-08-04 19:51     ` Arjan van de Ven
2005-08-04 18:31   ` Roland Dreier
2005-08-04 18:38     ` Arjan van de Ven
2005-08-04 18:57       ` Roland Dreier
2005-08-04 19:22         ` Sam Ravnborg
2005-08-04 19:54           ` Christopher Friesen
2005-08-04 20:02             ` Sam Ravnborg
2005-08-04 19:51         ` Arjan van de Ven
2005-08-04 18:11 ` [openib-general] " Steve Wise
2005-08-04 18:20 ` Grant Grundler
2005-08-04 18:32   ` Roland Dreier
2005-08-04 21:38 ` James Lentini
2005-08-05  9:22 ` Christoph Hellwig
2005-08-05 16:08   ` Roland Dreier
2005-08-05 21:06     ` Sam Ravnborg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox