All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xenomai] [PATCH, Xenomai 2.5.6]
@ 2012-07-27 12:45 dietmar.schindler
  2012-07-27 12:51 ` Philippe Gerum
  2012-07-27 15:53 ` Gilles Chanteperdrix
  0 siblings, 2 replies; 14+ messages in thread
From: dietmar.schindler @ 2012-07-27 12:45 UTC (permalink / raw)
  To: xenomai

These are patches for two files in ksrc/nucleus of Xenomai 2.5.6 to cure an incompatibility with Linux 2.4; if they are bad in form, please let me know.

Index: heap.c
===================================================================
--- heap.c      (revision 3587)
+++ heap.c      (revision 4276)
@@ -1127,7 +1127,12 @@
        return NULL;
 }

+#if HAVE_UNLOCKED_IOCTL
 static long xnheap_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
+#else
+static int xnheap_ioctl(struct inode *inode,
+                       struct file *file, unsigned int cmd, unsigned long arg)
+#endif
 {
        file->private_data = (void *)arg;
        return 0;

Index: pipe.c
===================================================================
--- pipe.c      (revision 3587)
+++ pipe.c      (revision 4276)
@@ -923,7 +923,12 @@
        return (ssize_t)count;
 }

+#if HAVE_UNLOCKED_IOCTL
 static long xnpipe_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
+#else
+static int xnpipe_ioctl(struct inode *inode,
+                       struct file *file, unsigned int cmd, unsigned long arg)
+#endif
 {
        struct xnpipe_state *state = file->private_data;
        int ret = 0;

--
Best regards,
Dietmar Schindler
________________________________________
manroland web systems GmbH -- Managing Director: Uwe Lüders
Registered Office: Augsburg -- Trade Register: AG Augsburg -- HRB-No. 26816 -- VAT: DE281389840

Confidentiality note:
This eMail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient, you are hereby notified that any use or dissemination of this communication is strictly prohibited. If you have received this eMail in error, then please delete this eMail.

- Please consider your environmental responsibility before printing this eMail
________________________________________

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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-07-27 12:45 [Xenomai] [PATCH, Xenomai 2.5.6] dietmar.schindler
@ 2012-07-27 12:51 ` Philippe Gerum
  2012-08-01  6:58   ` dietmar.schindler
  2012-07-27 15:53 ` Gilles Chanteperdrix
  1 sibling, 1 reply; 14+ messages in thread
From: Philippe Gerum @ 2012-07-27 12:51 UTC (permalink / raw)
  To: dietmar.schindler; +Cc: xenomai

On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:
> These are patches for two files in ksrc/nucleus of Xenomai 2.5.6 to cure an incompatibility with Linux 2.4; if they are bad in form, please let me know.
>

You should backport this patch from the 2.6 tree instead:
e3c13f0685c2edf2a2ce30cd239b3f

> Index: heap.c
> ===================================================================
> --- heap.c      (revision 3587)
> +++ heap.c      (revision 4276)
> @@ -1127,7 +1127,12 @@
>          return NULL;
>   }
>
> +#if HAVE_UNLOCKED_IOCTL
>   static long xnheap_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
> +#else
> +static int xnheap_ioctl(struct inode *inode,
> +                       struct file *file, unsigned int cmd, unsigned long arg)
> +#endif
>   {
>          file->private_data = (void *)arg;
>          return 0;
>
> Index: pipe.c
> ===================================================================
> --- pipe.c      (revision 3587)
> +++ pipe.c      (revision 4276)
> @@ -923,7 +923,12 @@
>          return (ssize_t)count;
>   }
>
> +#if HAVE_UNLOCKED_IOCTL
>   static long xnpipe_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
> +#else
> +static int xnpipe_ioctl(struct inode *inode,
> +                       struct file *file, unsigned int cmd, unsigned long arg)
> +#endif
>   {
>          struct xnpipe_state *state = file->private_data;
>          int ret = 0;
>
> --
> Best regards,
> Dietmar Schindler
> ________________________________________
> manroland web systems GmbH -- Managing Director: Uwe Lüders
> Registered Office: Augsburg -- Trade Register: AG Augsburg -- HRB-No. 26816 -- VAT: DE281389840
>
> Confidentiality note:
> This eMail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient, you are hereby notified that any use or dissemination of this communication is strictly prohibited. If you have received this eMail in error, then please delete this eMail.
>
> - Please consider your environmental responsibility before printing this eMail
> ________________________________________
> _______________________________________________
> Xenomai mailing list
> Xenomai@xenomai.org
> http://www.xenomai.org/mailman/listinfo/xenomai
>


-- 
Philippe.




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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-07-27 12:45 [Xenomai] [PATCH, Xenomai 2.5.6] dietmar.schindler
  2012-07-27 12:51 ` Philippe Gerum
@ 2012-07-27 15:53 ` Gilles Chanteperdrix
  2012-07-27 16:11   ` Philippe Gerum
  2012-07-30  6:42   ` dietmar.schindler
  1 sibling, 2 replies; 14+ messages in thread
From: Gilles Chanteperdrix @ 2012-07-27 15:53 UTC (permalink / raw)
  To: dietmar.schindler; +Cc: xenomai

On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:

> These are patches for two files in ksrc/nucleus of Xenomai 2.5.6 to
> cure an incompatibility with Linux 2.4; if they are bad in form,
> please let me know.


This is kind of you to provide the patch, but I do not think we are
going to issue any new release in the 2.5 branch.

Even though 2.6 is technically a new branch, with a different ABI, very
few things (actually, none that come to my mind) have changed in the
API, so, the update should be painless.

-- 
                                                                Gilles.


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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-07-27 15:53 ` Gilles Chanteperdrix
@ 2012-07-27 16:11   ` Philippe Gerum
  2012-07-30  6:42   ` dietmar.schindler
  1 sibling, 0 replies; 14+ messages in thread
From: Philippe Gerum @ 2012-07-27 16:11 UTC (permalink / raw)
  To: Gilles Chanteperdrix; +Cc: xenomai

On 07/27/2012 05:53 PM, Gilles Chanteperdrix wrote:
> On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:
>
>> These are patches for two files in ksrc/nucleus of Xenomai 2.5.6 to
>> cure an incompatibility with Linux 2.4; if they are bad in form,
>> please let me know.
>
>
> This is kind of you to provide the patch, but I do not think we are
> going to issue any new release in the 2.5 branch.
>

Actually, we have a set of commits lingering in the 2.5 maintenance 
tree, enough to close it for good with 2.5.7. But I agree, this would be 
an exception to the general rule.

> Even though 2.6 is technically a new branch, with a different ABI, very
> few things (actually, none that come to my mind) have changed in the
> API, so, the update should be painless.
>


-- 
Philippe.




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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-07-27 15:53 ` Gilles Chanteperdrix
  2012-07-27 16:11   ` Philippe Gerum
@ 2012-07-30  6:42   ` dietmar.schindler
  2012-07-30  6:53     ` Gilles Chanteperdrix
  1 sibling, 1 reply; 14+ messages in thread
From: dietmar.schindler @ 2012-07-30  6:42 UTC (permalink / raw)
  Cc: xenomai

> -----Original Message-----
> From: Gilles Chanteperdrix [mailto:gilles.chanteperdrix@xenomai.org]
> Sent: Friday, July 27, 2012 5:54 PM
>
> On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:
>
> > These are patches for two files in ksrc/nucleus of Xenomai 2.5.6 to
> > cure an incompatibility with Linux 2.4; if they are bad in form,
> > please let me know.
>
>
> This is kind of you to provide the patch, but I do not think we are
> going to issue any new release in the 2.5 branch.
>
> Even though 2.6 is technically a new branch, with a different ABI, very
> few things (actually, none that come to my mind) have changed in the
> API, so, the update should be painless.

At http://www.xenomai.org/index.php/Xenomai:News#2010-10-06_Xenomai_2.5.5.1 I read: "Note: Xenomai 2.5.5 is the last release to contain a patch for Linux 2.4 on x86 ..."; thence I blindly assumed that Xenomai 2.6 would not work with Linux 2.4 - did I go astray?
Besides that, with third-party software as e. g. ProConOS, it might not be easily possible to update the Xenomai branch.

--
Dietmar
________________________________________
manroland web systems GmbH -- Managing Director: Uwe Lüders
Registered Office: Augsburg -- Trade Register: AG Augsburg -- HRB-No. 26816 -- VAT: DE281389840

Confidentiality note:
This eMail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient, you are hereby notified that any use or dissemination of this communication is strictly prohibited. If you have received this eMail in error, then please delete this eMail.

- Please consider your environmental responsibility before printing this eMail
________________________________________

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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-07-30  6:42   ` dietmar.schindler
@ 2012-07-30  6:53     ` Gilles Chanteperdrix
  0 siblings, 0 replies; 14+ messages in thread
From: Gilles Chanteperdrix @ 2012-07-30  6:53 UTC (permalink / raw)
  To: dietmar.schindler; +Cc: xenomai

On 07/30/2012 08:42 AM, dietmar.schindler@manroland-web.com wrote:

>> -----Original Message----- From: Gilles Chanteperdrix
>> [mailto:gilles.chanteperdrix@xenomai.org] Sent: Friday, July 27,
>> 2012 5:54 PM
>> 
>> On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:
>> 
>>> These are patches for two files in ksrc/nucleus of Xenomai 2.5.6
>>> to cure an incompatibility with Linux 2.4; if they are bad in
>>> form, please let me know.
>> 
>> 
>> This is kind of you to provide the patch, but I do not think we
>> are going to issue any new release in the 2.5 branch.
>> 
>> Even though 2.6 is technically a new branch, with a different ABI,
>> very few things (actually, none that come to my mind) have changed
>> in the API, so, the update should be painless.
> 
> At
> http://www.xenomai.org/index.php/Xenomai:News#2010-10-06_Xenomai_2.5.5.1
> I read: "Note: Xenomai 2.5.5 is the last release to contain a patch
> for Linux 2.4 on x86 ..."; thence I blindly assumed that Xenomai 2.6
> would not work with Linux 2.4 - did I go astray?


Yes, xenomai 2.6 still works with Linux 2.4 (or is supposed to, we just
compile-test) even though it does not include the patch.

> Besides that, with
> third-party software as e. g. ProConOS, it might not be easily
> possible to update the Xenomai branch.


Unfortunately, there is nothing we can do about that. We let 6 months
between the 2.6.0 and 2.6.1 release, it can not be said that we release
to often.


-- 
                                                                Gilles.


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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-07-27 12:51 ` Philippe Gerum
@ 2012-08-01  6:58   ` dietmar.schindler
  2012-08-01  9:04     ` Philippe Gerum
  0 siblings, 1 reply; 14+ messages in thread
From: dietmar.schindler @ 2012-08-01  6:58 UTC (permalink / raw)
  Cc: xenomai

> -----Original Message-----
> From: Philippe Gerum [mailto:rpm@xenomai.org]
> Sent: Friday, July 27, 2012 2:52 PM
> To: Schindler, Dietmar RAEK1 MRA
> Cc: xenomai@xenomai.org
> Subject: Re: [Xenomai] [PATCH, Xenomai 2.5.6]
>
> On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:
> > These are patches for two files in ksrc/nucleus of Xenomai 2.5.6 to cure
> an incompatibility with Linux 2.4; if they are bad in form, please let me
> know.
> >
>
> You should backport this patch from the 2.6 tree instead:
> e3c13f0685c2edf2a2ce30cd239b3f

I'm sorry, I can't figure out how to locate this patch. However, I found the attached message where you pointed to another patch, just for Xenomai 2.5.6, so I'll use that one, and let's forget my surplus duplication of work.

--
Dietmar
________________________________________
manroland web systems GmbH -- Managing Director: Uwe Lüders
Registered Office: Augsburg -- Trade Register: AG Augsburg -- HRB-No. 26816 -- VAT: DE281389840

Confidentiality note:
This eMail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient, you are hereby notified that any use or dissemination of this communication is strictly prohibited. If you have received this eMail in error, then please delete this eMail.

- Please consider your environmental responsibility before printing this eMail
________________________________________
-------------- next part --------------
An embedded message was scrubbed...
From: <rpm@xenomai.org>
Subject: Re: [Xenomai-help] Xenomai 2.5.6 with PPC-Kernel 2.4.25
Date: Sat, 18 Jun 2011 08:50:52 +0000
Size: 10752
URL: <http://www.xenomai.org/pipermail/xenomai/attachments/20120801/8d87a614/attachment.mht>

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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-08-01  6:58   ` dietmar.schindler
@ 2012-08-01  9:04     ` Philippe Gerum
  2012-08-01  9:21       ` Gilles Chanteperdrix
  0 siblings, 1 reply; 14+ messages in thread
From: Philippe Gerum @ 2012-08-01  9:04 UTC (permalink / raw)
  To: dietmar.schindler; +Cc: xenomai

On 08/01/2012 08:58 AM, dietmar.schindler@manroland-web.com wrote:
>> -----Original Message-----
>> From: Philippe Gerum [mailto:rpm@xenomai.org]
>> Sent: Friday, July 27, 2012 2:52 PM
>> To: Schindler, Dietmar RAEK1 MRA
>> Cc: xenomai@xenomai.org
>> Subject: Re: [Xenomai] [PATCH, Xenomai 2.5.6]
>>
>> On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:
>>> These are patches for two files in ksrc/nucleus of Xenomai 2.5.6 to cure
>> an incompatibility with Linux 2.4; if they are bad in form, please let me
>> know.
>>>
>>
>> You should backport this patch from the 2.6 tree instead:
>> e3c13f0685c2edf2a2ce30cd239b3f
>
> I'm sorry, I can't figure out how to locate this patch.

 From this tree:
git://git.xenomai.org/xenomai-2.6.git

  However, I found the attached message where you pointed to another 
patch, just for Xenomai 2.5.6, so I'll use that one, and let's forget my 
surplus duplication of work.
>
> --
> Dietmar
> ________________________________________
> manroland web systems GmbH -- Managing Director: Uwe Lüders
> Registered Office: Augsburg -- Trade Register: AG Augsburg -- HRB-No. 26816 -- VAT: DE281389840
>
> Confidentiality note:
> This eMail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient, you are hereby notified that any use or dissemination of this communication is strictly prohibited. If you have received this eMail in error, then please delete this eMail.
>
> - Please consider your environmental responsibility before printing this eMail
> ________________________________________
> -------------- next part --------------
> An embedded message was scrubbed...
> From: <rpm@xenomai.org>
> Subject: Re: [Xenomai-help] Xenomai 2.5.6 with PPC-Kernel 2.4.25
> Date: Sat, 18 Jun 2011 08:50:52 +0000
> Size: 10752
> URL: <http://www.xenomai.org/pipermail/xenomai/attachments/20120801/8d87a614/attachment.mht>
> _______________________________________________
> Xenomai mailing list
> Xenomai@xenomai.org
> http://www.xenomai.org/mailman/listinfo/xenomai
>


-- 
Philippe.


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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-08-01  9:04     ` Philippe Gerum
@ 2012-08-01  9:21       ` Gilles Chanteperdrix
  2012-08-01  9:52         ` Philippe Gerum
  0 siblings, 1 reply; 14+ messages in thread
From: Gilles Chanteperdrix @ 2012-08-01  9:21 UTC (permalink / raw)
  To: Philippe Gerum; +Cc: xenomai

On 08/01/2012 11:04 AM, Philippe Gerum wrote:
> On 08/01/2012 08:58 AM, dietmar.schindler@manroland-web.com wrote:
>>> -----Original Message-----
>>> From: Philippe Gerum [mailto:rpm@xenomai.org]
>>> Sent: Friday, July 27, 2012 2:52 PM
>>> To: Schindler, Dietmar RAEK1 MRA
>>> Cc: xenomai@xenomai.org
>>> Subject: Re: [Xenomai] [PATCH, Xenomai 2.5.6]
>>>
>>> On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:
>>>> These are patches for two files in ksrc/nucleus of Xenomai 2.5.6 to cure
>>> an incompatibility with Linux 2.4; if they are bad in form, please let me
>>> know.
>>>>
>>>
>>> You should backport this patch from the 2.6 tree instead:
>>> e3c13f0685c2edf2a2ce30cd239b3f
>>
>> I'm sorry, I can't figure out how to locate this patch.
> 
>  From this tree:
> git://git.xenomai.org/xenomai-2.6.git
> 
>   However, I found the attached message where you pointed to another 
> patch, just for Xenomai 2.5.6, so I'll use that one, and let's forget my 
> surplus duplication of work.

I wonder if the 2.5 git does not already contain the fix:

http://git.xenomai.org/?p=xenomai-2.5.git;a=commit;h=c208eda73e263207fe32a01e35931e82e4a18321

-- 
					    Gilles.


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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-08-01  9:21       ` Gilles Chanteperdrix
@ 2012-08-01  9:52         ` Philippe Gerum
  2012-08-01  9:52           ` Philippe Gerum
  0 siblings, 1 reply; 14+ messages in thread
From: Philippe Gerum @ 2012-08-01  9:52 UTC (permalink / raw)
  To: Gilles Chanteperdrix; +Cc: xenomai

On 08/01/2012 11:21 AM, Gilles Chanteperdrix wrote:
> On 08/01/2012 11:04 AM, Philippe Gerum wrote:
>> On 08/01/2012 08:58 AM, dietmar.schindler@manroland-web.com wrote:
>>>> -----Original Message-----
>>>> From: Philippe Gerum [mailto:rpm@xenomai.org]
>>>> Sent: Friday, July 27, 2012 2:52 PM
>>>> To: Schindler, Dietmar RAEK1 MRA
>>>> Cc: xenomai@xenomai.org
>>>> Subject: Re: [Xenomai] [PATCH, Xenomai 2.5.6]
>>>>
>>>> On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:
>>>>> These are patches for two files in ksrc/nucleus of Xenomai 2.5.6 to cure
>>>> an incompatibility with Linux 2.4; if they are bad in form, please let me
>>>> know.
>>>>>
>>>>
>>>> You should backport this patch from the 2.6 tree instead:
>>>> e3c13f0685c2edf2a2ce30cd239b3f
>>>
>>> I'm sorry, I can't figure out how to locate this patch.
>>
>>   From this tree:
>> git://git.xenomai.org/xenomai-2.6.git
>>
>>    However, I found the attached message where you pointed to another
>> patch, just for Xenomai 2.5.6, so I'll use that one, and let's forget my
>> surplus duplication of work.
>
> I wonder if the 2.5 git does not already contain the fix:
>
> http://git.xenomai.org/?p=xenomai-2.5.git;a=commit;h=c208eda73e263207fe32a01e35931e82e4a18321
>

Yes, but non released, since this is on top of 2.5.6. It is part of the 
set of pending commits I mentioned lately, that should lead to 2.5.7, 
because we close that branch for good.

-- 
Philippe.


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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-08-01  9:52         ` Philippe Gerum
@ 2012-08-01  9:52           ` Philippe Gerum
  2012-08-01 11:59             ` Philippe Gerum
  0 siblings, 1 reply; 14+ messages in thread
From: Philippe Gerum @ 2012-08-01  9:52 UTC (permalink / raw)
  To: Gilles Chanteperdrix; +Cc: xenomai

On 08/01/2012 11:52 AM, Philippe Gerum wrote:
> On 08/01/2012 11:21 AM, Gilles Chanteperdrix wrote:
>> On 08/01/2012 11:04 AM, Philippe Gerum wrote:
>>> On 08/01/2012 08:58 AM, dietmar.schindler@manroland-web.com wrote:
>>>>> -----Original Message-----
>>>>> From: Philippe Gerum [mailto:rpm@xenomai.org]
>>>>> Sent: Friday, July 27, 2012 2:52 PM
>>>>> To: Schindler, Dietmar RAEK1 MRA
>>>>> Cc: xenomai@xenomai.org
>>>>> Subject: Re: [Xenomai] [PATCH, Xenomai 2.5.6]
>>>>>
>>>>> On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:
>>>>>> These are patches for two files in ksrc/nucleus of Xenomai 2.5.6
>>>>>> to cure
>>>>> an incompatibility with Linux 2.4; if they are bad in form, please
>>>>> let me
>>>>> know.
>>>>>>
>>>>>
>>>>> You should backport this patch from the 2.6 tree instead:
>>>>> e3c13f0685c2edf2a2ce30cd239b3f
>>>>
>>>> I'm sorry, I can't figure out how to locate this patch.
>>>
>>>   From this tree:
>>> git://git.xenomai.org/xenomai-2.6.git
>>>
>>>    However, I found the attached message where you pointed to another
>>> patch, just for Xenomai 2.5.6, so I'll use that one, and let's forget my
>>> surplus duplication of work.
>>
>> I wonder if the 2.5 git does not already contain the fix:
>>
>> http://git.xenomai.org/?p=xenomai-2.5.git;a=commit;h=c208eda73e263207fe32a01e35931e82e4a18321
>>
>>
>
> Yes, but non released, since this is on top of 2.5.6. It is part of the
> set of pending commits I mentioned lately, that should lead to 2.5.7,
> because

s,because,before,

  we close that branch for good.
>


-- 
Philippe.


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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-08-01  9:52           ` Philippe Gerum
@ 2012-08-01 11:59             ` Philippe Gerum
  2012-08-01 13:10               ` Gilles Chanteperdrix
  0 siblings, 1 reply; 14+ messages in thread
From: Philippe Gerum @ 2012-08-01 11:59 UTC (permalink / raw)
  To: Gilles Chanteperdrix; +Cc: xenomai

On 08/01/2012 11:52 AM, Philippe Gerum wrote:
> On 08/01/2012 11:52 AM, Philippe Gerum wrote:
>> On 08/01/2012 11:21 AM, Gilles Chanteperdrix wrote:
>>> On 08/01/2012 11:04 AM, Philippe Gerum wrote:
>>>> On 08/01/2012 08:58 AM, dietmar.schindler@manroland-web.com wrote:
>>>>>> -----Original Message-----
>>>>>> From: Philippe Gerum [mailto:rpm@xenomai.org]
>>>>>> Sent: Friday, July 27, 2012 2:52 PM
>>>>>> To: Schindler, Dietmar RAEK1 MRA
>>>>>> Cc: xenomai@xenomai.org
>>>>>> Subject: Re: [Xenomai] [PATCH, Xenomai 2.5.6]
>>>>>>
>>>>>> On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:
>>>>>>> These are patches for two files in ksrc/nucleus of Xenomai 2.5.6
>>>>>>> to cure
>>>>>> an incompatibility with Linux 2.4; if they are bad in form, please
>>>>>> let me
>>>>>> know.
>>>>>>>
>>>>>>
>>>>>> You should backport this patch from the 2.6 tree instead:
>>>>>> e3c13f0685c2edf2a2ce30cd239b3f
>>>>>
>>>>> I'm sorry, I can't figure out how to locate this patch.
>>>>
>>>>   From this tree:
>>>> git://git.xenomai.org/xenomai-2.6.git
>>>>
>>>>    However, I found the attached message where you pointed to another
>>>> patch, just for Xenomai 2.5.6, so I'll use that one, and let's
>>>> forget my
>>>> surplus duplication of work.
>>>
>>> I wonder if the 2.5 git does not already contain the fix:
>>>
>>> http://git.xenomai.org/?p=xenomai-2.5.git;a=commit;h=c208eda73e263207fe32a01e35931e82e4a18321
>>>
>>>
>>>
>>
>> Yes, but non released, since this is on top of 2.5.6. It is part of the
>> set of pending commits I mentioned lately, that should lead to 2.5.7,
>> because
>
> s,because,before,
>
>   we close that branch for good.
>>
>
>

Actually, 2.5.6.1 instead of 2.5.7 would make more sense.

-- 
Philippe.


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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-08-01 11:59             ` Philippe Gerum
@ 2012-08-01 13:10               ` Gilles Chanteperdrix
  2012-08-01 13:15                 ` Philippe Gerum
  0 siblings, 1 reply; 14+ messages in thread
From: Gilles Chanteperdrix @ 2012-08-01 13:10 UTC (permalink / raw)
  To: Philippe Gerum; +Cc: xenomai

On 08/01/2012 01:59 PM, Philippe Gerum wrote:
> On 08/01/2012 11:52 AM, Philippe Gerum wrote:
>> On 08/01/2012 11:52 AM, Philippe Gerum wrote:
>>> On 08/01/2012 11:21 AM, Gilles Chanteperdrix wrote:
>>>> On 08/01/2012 11:04 AM, Philippe Gerum wrote:
>>>>> On 08/01/2012 08:58 AM, dietmar.schindler@manroland-web.com wrote:
>>>>>>> -----Original Message-----
>>>>>>> From: Philippe Gerum [mailto:rpm@xenomai.org]
>>>>>>> Sent: Friday, July 27, 2012 2:52 PM
>>>>>>> To: Schindler, Dietmar RAEK1 MRA
>>>>>>> Cc: xenomai@xenomai.org
>>>>>>> Subject: Re: [Xenomai] [PATCH, Xenomai 2.5.6]
>>>>>>>
>>>>>>> On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:
>>>>>>>> These are patches for two files in ksrc/nucleus of Xenomai 2.5.6
>>>>>>>> to cure
>>>>>>> an incompatibility with Linux 2.4; if they are bad in form, please
>>>>>>> let me
>>>>>>> know.
>>>>>>>>
>>>>>>>
>>>>>>> You should backport this patch from the 2.6 tree instead:
>>>>>>> e3c13f0685c2edf2a2ce30cd239b3f
>>>>>>
>>>>>> I'm sorry, I can't figure out how to locate this patch.
>>>>>
>>>>>   From this tree:
>>>>> git://git.xenomai.org/xenomai-2.6.git
>>>>>
>>>>>    However, I found the attached message where you pointed to another
>>>>> patch, just for Xenomai 2.5.6, so I'll use that one, and let's
>>>>> forget my
>>>>> surplus duplication of work.
>>>>
>>>> I wonder if the 2.5 git does not already contain the fix:
>>>>
>>>> http://git.xenomai.org/?p=xenomai-2.5.git;a=commit;h=c208eda73e263207fe32a01e35931e82e4a18321
>>>>
>>>>
>>>>
>>>
>>> Yes, but non released, since this is on top of 2.5.6. It is part of the
>>> set of pending commits I mentioned lately, that should lead to 2.5.7,
>>> because
>>
>> s,because,before,
>>
>>   we close that branch for good.
>>>
>>
>>
> 
> Actually, 2.5.6.1 instead of 2.5.7 would make more sense.
> 
I guess we could upgrade the hal to get it to support more recent
patches (at least pre I-pipe core), then test the new patches, and go
for a 2.5.7.

-- 
					    Gilles.


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

* Re: [Xenomai] [PATCH, Xenomai 2.5.6]
  2012-08-01 13:10               ` Gilles Chanteperdrix
@ 2012-08-01 13:15                 ` Philippe Gerum
  0 siblings, 0 replies; 14+ messages in thread
From: Philippe Gerum @ 2012-08-01 13:15 UTC (permalink / raw)
  To: Gilles Chanteperdrix; +Cc: xenomai

On 08/01/2012 03:10 PM, Gilles Chanteperdrix wrote:
> On 08/01/2012 01:59 PM, Philippe Gerum wrote:
>> On 08/01/2012 11:52 AM, Philippe Gerum wrote:
>>> On 08/01/2012 11:52 AM, Philippe Gerum wrote:
>>>> On 08/01/2012 11:21 AM, Gilles Chanteperdrix wrote:
>>>>> On 08/01/2012 11:04 AM, Philippe Gerum wrote:
>>>>>> On 08/01/2012 08:58 AM, dietmar.schindler@manroland-web.com wrote:
>>>>>>>> -----Original Message-----
>>>>>>>> From: Philippe Gerum [mailto:rpm@xenomai.org]
>>>>>>>> Sent: Friday, July 27, 2012 2:52 PM
>>>>>>>> To: Schindler, Dietmar RAEK1 MRA
>>>>>>>> Cc: xenomai@xenomai.org
>>>>>>>> Subject: Re: [Xenomai] [PATCH, Xenomai 2.5.6]
>>>>>>>>
>>>>>>>> On 07/27/2012 02:45 PM, dietmar.schindler@manroland-web.com wrote:
>>>>>>>>> These are patches for two files in ksrc/nucleus of Xenomai 2.5.6
>>>>>>>>> to cure
>>>>>>>> an incompatibility with Linux 2.4; if they are bad in form, please
>>>>>>>> let me
>>>>>>>> know.
>>>>>>>>>
>>>>>>>>
>>>>>>>> You should backport this patch from the 2.6 tree instead:
>>>>>>>> e3c13f0685c2edf2a2ce30cd239b3f
>>>>>>>
>>>>>>> I'm sorry, I can't figure out how to locate this patch.
>>>>>>
>>>>>>    From this tree:
>>>>>> git://git.xenomai.org/xenomai-2.6.git
>>>>>>
>>>>>>     However, I found the attached message where you pointed to another
>>>>>> patch, just for Xenomai 2.5.6, so I'll use that one, and let's
>>>>>> forget my
>>>>>> surplus duplication of work.
>>>>>
>>>>> I wonder if the 2.5 git does not already contain the fix:
>>>>>
>>>>> http://git.xenomai.org/?p=xenomai-2.5.git;a=commit;h=c208eda73e263207fe32a01e35931e82e4a18321
>>>>>
>>>>>
>>>>>
>>>>
>>>> Yes, but non released, since this is on top of 2.5.6. It is part of the
>>>> set of pending commits I mentioned lately, that should lead to 2.5.7,
>>>> because
>>>
>>> s,because,before,
>>>
>>>    we close that branch for good.
>>>>
>>>
>>>
>>
>> Actually, 2.5.6.1 instead of 2.5.7 would make more sense.
>>
> I guess we could upgrade the hal to get it to support more recent
> patches (at least pre I-pipe core), then test the new patches, and go
> for a 2.5.7.
>

I'm unsure. Do we really have the resources for maintaining two major 
branches and developing the new architecture?

-- 
Philippe.


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

end of thread, other threads:[~2012-08-01 13:15 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-27 12:45 [Xenomai] [PATCH, Xenomai 2.5.6] dietmar.schindler
2012-07-27 12:51 ` Philippe Gerum
2012-08-01  6:58   ` dietmar.schindler
2012-08-01  9:04     ` Philippe Gerum
2012-08-01  9:21       ` Gilles Chanteperdrix
2012-08-01  9:52         ` Philippe Gerum
2012-08-01  9:52           ` Philippe Gerum
2012-08-01 11:59             ` Philippe Gerum
2012-08-01 13:10               ` Gilles Chanteperdrix
2012-08-01 13:15                 ` Philippe Gerum
2012-07-27 15:53 ` Gilles Chanteperdrix
2012-07-27 16:11   ` Philippe Gerum
2012-07-30  6:42   ` dietmar.schindler
2012-07-30  6:53     ` Gilles Chanteperdrix

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.