Distributed Replicated Block Device (DRBD) development
 help / color / mirror / Atom feed
* [Drbd-dev] make KDIR=... kernel-patch fails
@ 2007-03-09 22:16 Andreas John
  2007-03-10 11:42 ` Lars Ellenberg
  0 siblings, 1 reply; 7+ messages in thread
From: Andreas John @ 2007-03-09 22:16 UTC (permalink / raw)
  To: drbd-dev

Hello,
I try to patch drbd into the kernel. IIRC this is not longer possible
since late 0.7.x released (>=.22 ??).

Currently even on 8.0.0 and 8.0.1 the helper scrips fails on a 2.6.20.1:

----
buildbox-etch:/usr/src/linux-vserver/linux-2.6.20.1/drbd-8.0.1# make
KDIR=/usr/src/linux-vserver/linux-2.6.20.1 kernel-patch
make -C drbd drbd_buildtag.c
make[1]: Entering directory
`/usr/src/linux-vserver/linux-2.6.20.1/drbd-8.0.1/drbd'
make[1]: Leaving directory
`/usr/src/linux-vserver/linux-2.6.20.1/drbd-8.0.1/drbd'
set -o errexit; \
        kbase=$(basename /usr/src/linux-vserver/linux-2.6.20.1); \
        d=patch-$kbase-drbd-8.0.1; \
        test -e $d && cp -fav --backup=numbered $d $d; \
        bash scripts/patch-kernel /usr/src/linux-vserver/linux-2.6.20.1
. > $d
rm: cannot remove `linux-2.6.20.1-drbd/drivers/block/drbd/mempool*': No
such file or directory
make: *** [kernel-patch] Error 1
-----

I can supress the error by patching two lines in the
scripts/patch-kernel script:


-------
--- scripts/patch-kernel.sav    2007-02-25 16:25:42.000000000 +0100
+++ scripts/patch-kernel        2007-02-25 16:26:02.000000000 +0100
@@ -100,9 +100,10 @@
 cp -a $DRBD/drbd/Makefile-2.$KDIR_PATCHLEVEL  $DRBD_SUB/Makefile

 # remove some backports
-test "$KDIR_PATCHLEVEL" = 6 && rm $DRBD_SUB/mempool*
+# remove some backports
+test "$KDIR_PATCHLEVEL" = 6 && if [ -e $DRBD_SUB/mempool* ]; then rm
$DRBD_SUB/mempool*; fi
 grep "HLIST_HEAD_INIT" $KERNEL/include/linux/list.h >/dev/null &&
-       rm $DRBD_SUB/hlist.h
+        if [ -e $DRBD_SUB/hlist.h ]; then rm $DRBD_SUB/hlist.h; fi

 # disable __arch_um__ to_virt() hack
 sed -e 's/^#ifdef __arch_um__/#if 0/' \
---------

The generated patch applies fine, but when compiling the kernel with
drdb as module, the compile runs fails. I assume some part of the patch
is missing.

Kernel Hacking is out-of-scope of my skills, so I simply report here
what I found out.

rgds,
Andreas




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

* Re: [Drbd-dev] make KDIR=... kernel-patch fails
  2007-03-09 22:16 [Drbd-dev] make KDIR=... kernel-patch fails Andreas John
@ 2007-03-10 11:42 ` Lars Ellenberg
  2007-03-13 22:59   ` Lars Ellenberg
  0 siblings, 1 reply; 7+ messages in thread
From: Lars Ellenberg @ 2007-03-10 11:42 UTC (permalink / raw)
  To: drbd-dev

/ 2007-03-09 23:16:23 +0100
\ Andreas John:
> Hello,
> I try to patch drbd into the kernel. IIRC this is not longer possible
> since late 0.7.x released (>=.22 ??).
> 
> Currently even on 8.0.0 and 8.0.1 the helper scrips fails on a 2.6.20.1:
> 
> ----
> buildbox-etch:/usr/src/linux-vserver/linux-2.6.20.1/drbd-8.0.1# make
> KDIR=/usr/src/linux-vserver/linux-2.6.20.1 kernel-patch
> make -C drbd drbd_buildtag.c
> make[1]: Entering directory
> `/usr/src/linux-vserver/linux-2.6.20.1/drbd-8.0.1/drbd'
> make[1]: Leaving directory
> `/usr/src/linux-vserver/linux-2.6.20.1/drbd-8.0.1/drbd'
> set -o errexit; \
>         kbase=$(basename /usr/src/linux-vserver/linux-2.6.20.1); \
>         d=patch-$kbase-drbd-8.0.1; \
>         test -e $d && cp -fav --backup=numbered $d $d; \
>         bash scripts/patch-kernel /usr/src/linux-vserver/linux-2.6.20.1
> . > $d
> rm: cannot remove `linux-2.6.20.1-drbd/drivers/block/drbd/mempool*': No
> such file or directory
> make: *** [kernel-patch] Error 1
> -----
> 
> I can supress the error by patching two lines in the
> scripts/patch-kernel script:
> 
> 
> -------
> --- scripts/patch-kernel.sav    2007-02-25 16:25:42.000000000 +0100
> +++ scripts/patch-kernel        2007-02-25 16:26:02.000000000 +0100
> @@ -100,9 +100,10 @@
>  cp -a $DRBD/drbd/Makefile-2.$KDIR_PATCHLEVEL  $DRBD_SUB/Makefile
> 
>  # remove some backports
> -test "$KDIR_PATCHLEVEL" = 6 && rm $DRBD_SUB/mempool*
> +# remove some backports
> +test "$KDIR_PATCHLEVEL" = 6 && if [ -e $DRBD_SUB/mempool* ]; then rm
> $DRBD_SUB/mempool*; fi
>  grep "HLIST_HEAD_INIT" $KERNEL/include/linux/list.h >/dev/null &&
> -       rm $DRBD_SUB/hlist.h
> +        if [ -e $DRBD_SUB/hlist.h ]; then rm $DRBD_SUB/hlist.h; fi
> 
>  # disable __arch_um__ to_virt() hack
>  sed -e 's/^#ifdef __arch_um__/#if 0/' \
> ---------
> 
> The generated patch applies fine,

I even removed those lines altogether.
we no longer have these files,
they have been kernel 2.4 compatibility.

> but when compiling the kernel with
> drdb as module, the compile runs fails. I assume some part of the patch
> is missing.
> 
> Kernel Hacking is out-of-scope of my skills, so I simply report here
> what I found out.

thanks for the report.
sorry, but I "officially don't care" right now.
though, we will do some effort later this year
to try and get drbd into the kernel.org kernel.
so when I have time, I'll have a look.

-- 
: Lars Ellenberg                            Tel +43-1-8178292-55 :
: LINBIT Information Technologies GmbH      Fax +43-1-8178292-82 :
: Vivenotgasse 48, A-1120 Vienna/Europe    http://www.linbit.com :

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

* Re: [Drbd-dev] make KDIR=... kernel-patch fails
  2007-03-10 11:42 ` Lars Ellenberg
@ 2007-03-13 22:59   ` Lars Ellenberg
  2007-03-18  8:47     ` Andreas John
  0 siblings, 1 reply; 7+ messages in thread
From: Lars Ellenberg @ 2007-03-13 22:59 UTC (permalink / raw)
  To: drbd-dev

/ 2007-03-10 12:42:46 +0100
\ Lars Ellenberg:
> / 2007-03-09 23:16:23 +0100
> \ Andreas John:

> > buildbox-etch:/usr/src/linux-vserver/linux-2.6.20.1/drbd-8.0.1# make
> > KDIR=/usr/src/linux-vserver/linux-2.6.20.1 kernel-patch

> > scripts/patch-kernel

> thanks for the report.
> sorry, but I "officially don't care" right now.
> though, we will do some effort later this year
> to try and get drbd into the kernel.org kernel.
> so when I have time, I'll have a look.

please try again with current svn.

-- 
: Lars Ellenberg                            Tel +43-1-8178292-55 :
: LINBIT Information Technologies GmbH      Fax +43-1-8178292-82 :
: Vivenotgasse 48, A-1120 Vienna/Europe    http://www.linbit.com :

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

* Re: [Drbd-dev] make KDIR=... kernel-patch fails
  2007-03-13 22:59   ` Lars Ellenberg
@ 2007-03-18  8:47     ` Andreas John
  2007-04-11 13:49       ` Andreas John
  0 siblings, 1 reply; 7+ messages in thread
From: Andreas John @ 2007-03-18  8:47 UTC (permalink / raw)
  To: drbd-dev; +Cc: Lars Ellenberg

(Resent, the ML doesnt like /me :/ )

Hello Lars,

still there is one "file missing" ?

See below for the beginning of my build log.

rgds,
Andreas

  CC [M]  drivers/block/drbd/drbd_strings.o
  CC [M]  drivers/block/drbd/drbd_nl.o
  CC [M]  fs/hfs/dir.o
drivers/block/drbd/drbd_nl.c:38:22: error: drbd_int.h: No such file or
directory
In file included from drivers/block/drbd/drbd_nl.c:85:
include/linux/drbd_nl.h:14: error: expected â)â before â*â token
include/linux/drbd_nl.h:18: error: expected â)â before â*â token
include/linux/drbd_nl.h:20: error: expected â)â before â*â token
include/linux/drbd_nl.h:30: error: expected â)â before â*â token
include/linux/drbd_nl.h:32: error: expected â)â before â*â token
include/linux/drbd_nl.h:56: error: expected â)â before â*â token
include/linux/drbd_nl.h:58: error: expected â)â before â*â token
include/linux/drbd_nl.h:62: error: expected â)â before â*â token
include/linux/drbd_nl.h:68: error: expected â)â before â*â token
include/linux/drbd_nl.h:69: error: expected â)â before â*â token
include/linux/drbd_nl.h:70: error: expected â)â before â*â token
include/linux/drbd_nl.h:71: error: expected â)â before â*â token
include/linux/drbd_nl.h:72: error: expected â)â before â*â token
include/linux/drbd_nl.h:73: error: expected â)â before â*â token
include/linux/drbd_nl.h:74: error: expected â)â before â*â token
include/linux/drbd_nl.h:75: error: expected â)â before â*â token
include/linux/drbd_nl.h:76: error: expected â)â before â*â token
include/linux/drbd_nl.h:80: error: expected â)â before â*â token
include/linux/drbd_nl.h:85: error: expected â)â before â*â token
include/linux/drbd_nl.h:89: error: expected â)â before â*â token
In file included from drivers/block/drbd/drbd_nl.c:116:
include/linux/drbd_nl.h:14: error: expected â)â before â*â token
include/linux/drbd_nl.h:18: error: expected â)â before â*â token
include/linux/drbd_nl.h:20: error: expected â)â before â*â token
include/linux/drbd_nl.h:30: error: expected â)â before â*â token
include/linux/drbd_nl.h:32: error: expected â)â before â*â token
include/linux/drbd_nl.h:56: error: expected â)â before â*â token
include/linux/drbd_nl.h:58: error: expected â)â before â*â token
include/linux/drbd_nl.h:62: error: expected â)â before â*â token
include/linux/drbd_nl.h:68: error: expected â)â before â*â token
include/linux/drbd_nl.h:69: error: expected â)â before â*â token
include/linux/drbd_nl.h:70: error: expected â)â before â*â token
include/linux/drbd_nl.h:71: error: expected â)â before â*â token
include/linux/drbd_nl.h:72: error: expected â)â before â*â token
include/linux/drbd_nl.h:73: error: expected â)â before â*â token
include/linux/drbd_nl.h:74: error: expected â)â before â*â token
include/linux/drbd_nl.h:75: error: expected â)â before â*â token
include/linux/drbd_nl.h:76: error: expected â)â before â*â token
include/linux/drbd_nl.h:80: error: expected â)â before â*â token
include/linux/drbd_nl.h:85: error: expected â)â before â*â token
include/linux/drbd_nl.h:89: error: expected â)â before â*â token
drivers/block/drbd/drbd_nl.c:118: error: expected â)â before â*â token
drivers/block/drbd/drbd_nl.c:119: error: expected â)â before â*â token
drivers/block/drbd/drbd_nl.c: In function ânl_trace_packetâ:
drivers/block/drbd/drbd_nl.c:143: error: expected â)â before âDEVICE_NAMEâ
drivers/block/drbd/drbd_nl.c:141: warning: unused variable ânlpâ
drivers/block/drbd/drbd_nl.c: In function ânl_trace_replyâ:
drivers/block/drbd/drbd_nl.c:155: error: expected â)â before âDEVICE_NAMEâ
drivers/block/drbd/drbd_nl.c:153: warning: unused variable ânlpâ
drivers/block/drbd/drbd_nl.c: At top level:
drivers/block/drbd/drbd_nl.c:164: error: expected â)â before â*â token
drivers/block/drbd/drbd_nl.c:179: error: expected â)â before â*â token
drivers/block/drbd/drbd_nl.c:234: error: expected â)â before â*â token
drivers/block/drbd/drbd_nl.c:358: error: expected â=â, â,â, â;â, âasmâ
or â__attribute__â before âintâ
drivers/block/drbd/drbd_nl.c:374: error: expected â=â, â,â, â;â, âasmâ
or â__attribute__â before âintâ
drivers/block/drbd/drbd_nl.c:384: error: expected â=â, â,â, â;â, âasmâ
or â__attribute__â before âvoidâ
drivers/block/drbd/drbd_nl.c:442: warning: âstruct Drbd_Confâ declared
inside parameter list
drivers/block/drbd/drbd_nl.c:442: warning: its scope is only this
definition or declaration, which is probably not what you want
drivers/block/drbd/drbd_nl.c: In function âdrbd_determin_dev_sizeâ:
drivers/block/drbd/drbd_nl.c:452: warning: implicit declaration of
function âlc_try_lockâ
drivers/block/drbd/drbd_nl.c:452: error: dereferencing pointer to
incomplete type
drivers/block/drbd/drbd_nl.c:452: error: dereferencing pointer to
incomplete type
drivers/block/drbd/drbd_nl.c:452: error: dereferencing pointer to
incomplete type
drivers/block/drbd/drbd_nl.c:452: error: dereferencing pointer to
incomplete type
drivers/block/drbd/drbd_nl.c:454: warning: implicit declaration of
function âdrbd_md_first_sectorâ
drivers/block/drbd/drbd_nl.c:454: error: dereferencing pointer to
incomplete type
drivers/block/drbd/drbd_nl.c:455: error: dereferencing pointer to
incomplete type
drivers/block/drbd/drbd_nl.c:456: error: dereferencing pointer to
incomplete type
drivers/block/drbd/drbd_nl.c:459: warning: implicit declaration of
function âdrbd_md_set_sector_offsetsâ
drivers/block/drbd/drbd_nl.c:459: error: dereferencing pointer to
incomplete type
drivers/block/drbd/drbd_nl.c:461: warning: implicit declaration of
function âdrbd_new_dev_sizeâ
drivers/block/drbd/drbd_nl.c:461: error: dereferencing pointer to
incomplete type
drivers/block/drbd/drbd_nl.c:463: warning: implicit declaration of
function âdrbd_get_capacityâ
drivers/block/drbd/drbd_nl.c:463: error: dereferencing pointer to
incomplete type
drivers/block/drbd/drbd_nl.c:464: warning: implicit declaration of
function âdrbd_bm_capacityâ
drivers/block/drbd/drbd_nl.c:466: warning: implicit declaration of
function âdrbd_bm_resizeâ
drivers/block/drbd/drbd_nl.c:471: warning: implicit declaration of


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

* Re: [Drbd-dev] make KDIR=... kernel-patch fails
  2007-03-18  8:47     ` Andreas John
@ 2007-04-11 13:49       ` Andreas John
  2007-04-11 14:06         ` Lars Ellenberg
  0 siblings, 1 reply; 7+ messages in thread
From: Andreas John @ 2007-04-11 13:49 UTC (permalink / raw)
  To: drbd-dev; +Cc: Lars Ellenberg

Hello All,
Hello Lars,

I don't want to bug you, but is there are chance that the problem gets
fixed?

Rgds,
Andreas

Andreas John schrieb:
> (Resent, the ML doesnt like /me :/ )
> 
> Hello Lars,
> 
> still there is one "file missing" ?
> 
> See below for the beginning of my build log.
> 
> rgds,
> Andreas
> 
>   CC [M]  drivers/block/drbd/drbd_strings.o
>   CC [M]  drivers/block/drbd/drbd_nl.o
>   CC [M]  fs/hfs/dir.o
> drivers/block/drbd/drbd_nl.c:38:22: error: drbd_int.h: No such file or
> directory
> In file included from drivers/block/drbd/drbd_nl.c:85:
> include/linux/drbd_nl.h:14: error: expected â)â before â*â token
> include/linux/drbd_nl.h:18: error: expected â)â before â*â token
> include/linux/drbd_nl.h:20: error: expected â)â before â*â token
> include/linux/drbd_nl.h:30: error: expected â)â before â*â token
> include/linux/drbd_nl.h:32: error: expected â)â before â*â token
> include/linux/drbd_nl.h:56: error: expected â)â before â*â token
> include/linux/drbd_nl.h:58: error: expected â)â before â*â token
> include/linux/drbd_nl.h:62: error: expected â)â before â*â token
> include/linux/drbd_nl.h:68: error: expected â)â before â*â token
> include/linux/drbd_nl.h:69: error: expected â)â before â*â token
> include/linux/drbd_nl.h:70: error: expected â)â before â*â token
> include/linux/drbd_nl.h:71: error: expected â)â before â*â token
> include/linux/drbd_nl.h:72: error: expected â)â before â*â token
> include/linux/drbd_nl.h:73: error: expected â)â before â*â token
> include/linux/drbd_nl.h:74: error: expected â)â before â*â token
> include/linux/drbd_nl.h:75: error: expected â)â before â*â token
> include/linux/drbd_nl.h:76: error: expected â)â before â*â token
> include/linux/drbd_nl.h:80: error: expected â)â before â*â token
> include/linux/drbd_nl.h:85: error: expected â)â before â*â token
> include/linux/drbd_nl.h:89: error: expected â)â before â*â token
> In file included from drivers/block/drbd/drbd_nl.c:116:
> include/linux/drbd_nl.h:14: error: expected â)â before â*â token
> include/linux/drbd_nl.h:18: error: expected â)â before â*â token
> include/linux/drbd_nl.h:20: error: expected â)â before â*â token
> include/linux/drbd_nl.h:30: error: expected â)â before â*â token
> include/linux/drbd_nl.h:32: error: expected â)â before â*â token
> include/linux/drbd_nl.h:56: error: expected â)â before â*â token
> include/linux/drbd_nl.h:58: error: expected â)â before â*â token
> include/linux/drbd_nl.h:62: error: expected â)â before â*â token
> include/linux/drbd_nl.h:68: error: expected â)â before â*â token
> include/linux/drbd_nl.h:69: error: expected â)â before â*â token
> include/linux/drbd_nl.h:70: error: expected â)â before â*â token
> include/linux/drbd_nl.h:71: error: expected â)â before â*â token
> include/linux/drbd_nl.h:72: error: expected â)â before â*â token
> include/linux/drbd_nl.h:73: error: expected â)â before â*â token
> include/linux/drbd_nl.h:74: error: expected â)â before â*â token
> include/linux/drbd_nl.h:75: error: expected â)â before â*â token
> include/linux/drbd_nl.h:76: error: expected â)â before â*â token
> include/linux/drbd_nl.h:80: error: expected â)â before â*â token
> include/linux/drbd_nl.h:85: error: expected â)â before â*â token
> include/linux/drbd_nl.h:89: error: expected â)â before â*â token
> drivers/block/drbd/drbd_nl.c:118: error: expected â)â before â*â token
> drivers/block/drbd/drbd_nl.c:119: error: expected â)â before â*â token
> drivers/block/drbd/drbd_nl.c: In function ânl_trace_packetâ:
> drivers/block/drbd/drbd_nl.c:143: error: expected â)â before âDEVICE_NAMEâ
> drivers/block/drbd/drbd_nl.c:141: warning: unused variable ânlpâ
> drivers/block/drbd/drbd_nl.c: In function ânl_trace_replyâ:
> drivers/block/drbd/drbd_nl.c:155: error: expected â)â before âDEVICE_NAMEâ
> drivers/block/drbd/drbd_nl.c:153: warning: unused variable ânlpâ
> drivers/block/drbd/drbd_nl.c: At top level:
> drivers/block/drbd/drbd_nl.c:164: error: expected â)â before â*â token
> drivers/block/drbd/drbd_nl.c:179: error: expected â)â before â*â token
> drivers/block/drbd/drbd_nl.c:234: error: expected â)â before â*â token
> drivers/block/drbd/drbd_nl.c:358: error: expected â=â, â,â, â;â, âasmâ
> or â__attribute__â before âintâ
> drivers/block/drbd/drbd_nl.c:374: error: expected â=â, â,â, â;â, âasmâ
> or â__attribute__â before âintâ
> drivers/block/drbd/drbd_nl.c:384: error: expected â=â, â,â, â;â, âasmâ
> or â__attribute__â before âvoidâ
> drivers/block/drbd/drbd_nl.c:442: warning: âstruct Drbd_Confâ declared
> inside parameter list
> drivers/block/drbd/drbd_nl.c:442: warning: its scope is only this
> definition or declaration, which is probably not what you want
> drivers/block/drbd/drbd_nl.c: In function âdrbd_determin_dev_sizeâ:
> drivers/block/drbd/drbd_nl.c:452: warning: implicit declaration of
> function âlc_try_lockâ
> drivers/block/drbd/drbd_nl.c:452: error: dereferencing pointer to
> incomplete type
> drivers/block/drbd/drbd_nl.c:452: error: dereferencing pointer to
> incomplete type
> drivers/block/drbd/drbd_nl.c:452: error: dereferencing pointer to
> incomplete type
> drivers/block/drbd/drbd_nl.c:452: error: dereferencing pointer to
> incomplete type
> drivers/block/drbd/drbd_nl.c:454: warning: implicit declaration of
> function âdrbd_md_first_sectorâ
> drivers/block/drbd/drbd_nl.c:454: error: dereferencing pointer to
> incomplete type
> drivers/block/drbd/drbd_nl.c:455: error: dereferencing pointer to
> incomplete type
> drivers/block/drbd/drbd_nl.c:456: error: dereferencing pointer to
> incomplete type
> drivers/block/drbd/drbd_nl.c:459: warning: implicit declaration of
> function âdrbd_md_set_sector_offsetsâ
> drivers/block/drbd/drbd_nl.c:459: error: dereferencing pointer to
> incomplete type
> drivers/block/drbd/drbd_nl.c:461: warning: implicit declaration of
> function âdrbd_new_dev_sizeâ
> drivers/block/drbd/drbd_nl.c:461: error: dereferencing pointer to
> incomplete type
> drivers/block/drbd/drbd_nl.c:463: warning: implicit declaration of
> function âdrbd_get_capacityâ
> drivers/block/drbd/drbd_nl.c:463: error: dereferencing pointer to
> incomplete type
> drivers/block/drbd/drbd_nl.c:464: warning: implicit declaration of
> function âdrbd_bm_capacityâ
> drivers/block/drbd/drbd_nl.c:466: warning: implicit declaration of
> function âdrbd_bm_resizeâ
> drivers/block/drbd/drbd_nl.c:471: warning: implicit declaration of
> 
> _______________________________________________
> drbd-dev mailing list
> drbd-dev@lists.linbit.com
> http://lists.linbit.com/mailman/listinfo/drbd-dev
> 


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

* Re: [Drbd-dev] make KDIR=... kernel-patch fails
  2007-04-11 13:49       ` Andreas John
@ 2007-04-11 14:06         ` Lars Ellenberg
  2007-05-15 10:41           ` Andreas John
  0 siblings, 1 reply; 7+ messages in thread
From: Lars Ellenberg @ 2007-04-11 14:06 UTC (permalink / raw)
  To: drbd-dev

On Wed, Apr 11, 2007 at 03:49:14PM +0200, Andreas John wrote:
> Hello All,
> Hello Lars,
> 
> I don't want to bug you, but is there are chance that the problem gets
> fixed?

works for me.

-- 
: Lars Ellenberg                            Tel +43-1-8178292-0  :
: LINBIT Information Technologies GmbH      Fax +43-1-8178292-82 :
: Vivenotgasse 48, A-1120 Vienna/Europe    http://www.linbit.com :
__
please use the "List-Reply" function of your email client.

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

* Re: [Drbd-dev] make KDIR=... kernel-patch fails
  2007-04-11 14:06         ` Lars Ellenberg
@ 2007-05-15 10:41           ` Andreas John
  0 siblings, 0 replies; 7+ messages in thread
From: Andreas John @ 2007-05-15 10:41 UTC (permalink / raw)
  To: drbd-dev

Hey Lars,

confirmed. Runs here, too.

rgds + THX,
Andreas


Lars Ellenberg schrieb:
> On Wed, Apr 11, 2007 at 03:49:14PM +0200, Andreas John wrote:
>> Hello All,
>> Hello Lars,
>>
>> I don't want to bug you, but is there are chance that the problem gets
>> fixed?
> 
> works for me.
> 


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

end of thread, other threads:[~2007-05-15 10:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-09 22:16 [Drbd-dev] make KDIR=... kernel-patch fails Andreas John
2007-03-10 11:42 ` Lars Ellenberg
2007-03-13 22:59   ` Lars Ellenberg
2007-03-18  8:47     ` Andreas John
2007-04-11 13:49       ` Andreas John
2007-04-11 14:06         ` Lars Ellenberg
2007-05-15 10:41           ` Andreas John

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