public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Unexport of blk_get_queue and blk_put_queue
@ 2008-04-18 11:43 Bart Van Assche
  2008-04-21 12:24 ` Adrian Bunk
  0 siblings, 1 reply; 4+ messages in thread
From: Bart Van Assche @ 2008-04-18 11:43 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: Philipp Reisner, Linux Kernel Mailing List

Hello Adrian,

I noticed that blk_get_queue and blk_put_queue were unexported in the
2.6.25 kernel. Are you aware that this breaks DRBD (an out-of-tree
kernel module) ?

Bart.

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

* Re: Unexport of blk_get_queue and blk_put_queue
  2008-04-18 11:43 Unexport of blk_get_queue and blk_put_queue Bart Van Assche
@ 2008-04-21 12:24 ` Adrian Bunk
  2008-04-23  6:12   ` Bart Van Assche
  0 siblings, 1 reply; 4+ messages in thread
From: Adrian Bunk @ 2008-04-21 12:24 UTC (permalink / raw)
  To: Bart Van Assche; +Cc: Philipp Reisner, Linux Kernel Mailing List

On Fri, Apr 18, 2008 at 01:43:17PM +0200, Bart Van Assche wrote:
> Hello Adrian,

Hi Bart,

> I noticed that blk_get_queue and blk_put_queue were unexported in the
> 2.6.25 kernel. Are you aware that this breaks DRBD (an out-of-tree
> kernel module) ?

no, I verify that my patches don't break Linus' tree and often also peek 
at -mm, but not at external modules.

And I'm a proponent of "no stable kernel API, but as many external 
modules as reasonably possible should be part of the kernel", so emails 
like yours are always a good point to start asking why the code isn't in 
Linus' tree.

What happened to DRBD?
It didn't seem that far from getting merged half a year ago.

> Bart.

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


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

* Re: Unexport of blk_get_queue and blk_put_queue
  2008-04-21 12:24 ` Adrian Bunk
@ 2008-04-23  6:12   ` Bart Van Assche
  2008-04-23  8:06     ` Philipp Reisner
  0 siblings, 1 reply; 4+ messages in thread
From: Bart Van Assche @ 2008-04-23  6:12 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: Philipp Reisner, Linux Kernel Mailing List, Lars Ellenberg

On Mon, Apr 21, 2008 at 2:24 PM, Adrian Bunk <bunk@kernel.org> wrote:
> On Fri, Apr 18, 2008 at 01:43:17PM +0200, Bart Van Assche wrote:
>  > I noticed that blk_get_queue and blk_put_queue were unexported in the
>  > 2.6.25 kernel. Are you aware that this breaks DRBD (an out-of-tree
>  > kernel module) ?
>
>  no, I verify that my patches don't break Linus' tree and often also peek
>  at -mm, but not at external modules.
>
>  And I'm a proponent of "no stable kernel API, but as many external
>  modules as reasonably possible should be part of the kernel", so emails
>  like yours are always a good point to start asking why the code isn't in
>  Linus' tree.
>
>  What happened to DRBD?
>  It didn't seem that far from getting merged half a year ago.

You mean this message: http://lkml.org/lkml/2007/7/21/255 ?
(Added Lars Ellenberg in CC.)

Bart.

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

* Re: Unexport of blk_get_queue and blk_put_queue
  2008-04-23  6:12   ` Bart Van Assche
@ 2008-04-23  8:06     ` Philipp Reisner
  0 siblings, 0 replies; 4+ messages in thread
From: Philipp Reisner @ 2008-04-23  8:06 UTC (permalink / raw)
  To: Bart Van Assche; +Cc: Adrian Bunk, Linux Kernel Mailing List, Lars Ellenberg

Am Mittwoch, 23. April 2008 08:12:41 schrieb Bart Van Assche:
> On Mon, Apr 21, 2008 at 2:24 PM, Adrian Bunk <bunk@kernel.org> wrote:
> > On Fri, Apr 18, 2008 at 01:43:17PM +0200, Bart Van Assche wrote:
> >  > I noticed that blk_get_queue and blk_put_queue were unexported in the
> >  > 2.6.25 kernel. Are you aware that this breaks DRBD (an out-of-tree
> >  > kernel module) ?
> >
> >  no, I verify that my patches don't break Linus' tree and often also peek
> >  at -mm, but not at external modules.
> >
> >  And I'm a proponent of "no stable kernel API, but as many external
> >  modules as reasonably possible should be part of the kernel", so emails
> >  like yours are always a good point to start asking why the code isn't in
> >  Linus' tree.
> >
> >  What happened to DRBD?
> >  It didn't seem that far from getting merged half a year ago.
>
> You mean this message: http://lkml.org/lkml/2007/7/21/255 ?
> (Added Lars Ellenberg in CC.)

Hi,

The removal of blk_put_queue() broke DRBD as it was, but it turned out
that we can (and should) use blk_cleanup_queue() instead. That will be
release with drbd-8.0.12, which is scheduled for release tomorrow 
2008-4-24.

Regarding the kernel inclusion. Well yes we still want to go that road,
but we where distracted from that with other tasks.

 (At some point we even hoped that Adrian will be of help in that process
  but that did not worked out as we thought)

We will renew our effort for main line inclusion in the next months somewhen.

-Phil
-- 
: Dipl-Ing Philipp Reisner                      Tel +43-1-8178292-50 :
: LINBIT Information Technologies GmbH          Fax +43-1-8178292-82 :
: Vivenotgasse 48, 1120 Vienna, Austria        http://www.linbit.com :

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

end of thread, other threads:[~2008-04-23  8:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-18 11:43 Unexport of blk_get_queue and blk_put_queue Bart Van Assche
2008-04-21 12:24 ` Adrian Bunk
2008-04-23  6:12   ` Bart Van Assche
2008-04-23  8:06     ` Philipp Reisner

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