Re: [Linux-decnet-user] X and Decnet
Brought to you by:
chrissie_c,
ph3-der-loewe
|
From: Patrick C. <pa...@ty...> - 2003-04-30 07:25:38
|
On Tue, Apr 29, 2003 at 09:38:16PM +0200, BASSIR Mohcine wrote:
>
> So,
>
> What is it the patch for the kernel 2.4 because i have do nothing on the
> kernel version that is installed by
> the Mandrake 9.1 version. I have only recompile the Xserver with the
> decnet support.
I posted a partial patch for this when you first reported the problem last
Novemeber. A better one (which was forwarded to me but not to the list for some
reason) is below:
--- net/decnet/af_decnet.c.old 2002-11-04 14:12:26.000000000 -0200
+++ net/decnet/af_decnet.c 2002-11-04 12:45:24.000000000 -0200
@@ -1771,7 +1771,7 @@
goto out;
if (signal_pending(current)) {
- rv = -ERESTARTSYS;
+ rv = -EAGAIN;
goto out;
}
@@ -1964,7 +1964,8 @@
goto out;
if (signal_pending(current)) {
- err = -ERESTARTSYS;
+ /* VMH - testing X crash - printk("DECnet 6\n"); */
+ err = -EAGAIN;
goto out;
}
> If i want to passed the kernel 2.5, what is it the version that i can
> used with my mandrake distrib. And it is
> possible to find an rpm version ?
I have no idea about Mandrake at all I'm afraid. I get all my kernels from
ftp.uk.kernel.org
patrick
|