2010-11-12 18:48:01

by Felix Fietkau

[permalink] [raw]
Subject: [PATCH] compat: fix a typo in pm_qos_update_request for 2.6.35

Signed-off-by: Felix Fietkau <[email protected]>
---
--- a/include/linux/compat-2.6.36.h
+++ b/include/linux/compat-2.6.36.h
@@ -83,7 +83,7 @@ struct pm_qos_request_list {
} while (0)

#define pm_qos_update_request(_req, _value) \
- pm_qos_update_request((_req)->request, (_value)
+ pm_qos_update_request((_req)->request, (_value))

#define pm_qos_remove_request(_req) \
pm_qos_remove_request((_req)->request)


2010-11-12 19:16:41

by Luis R. Rodriguez

[permalink] [raw]
Subject: Re: [PATCH] compat: fix a typo in pm_qos_update_request for 2.6.35

On Fri, Nov 12, 2010 at 10:47 AM, Felix Fietkau <[email protected]> wrote:
> Signed-off-by: Felix Fietkau <[email protected]>

Applied and pushed, thanks!

Luis

2011-01-07 21:34:12

by Luis R. Rodriguez

[permalink] [raw]
Subject: Re: [PATCH] compat: fix a typo in pm_qos_update_request for 2.6.35

On Fri, Jan 07, 2011 at 12:42:05PM -0800, Jason Andryuk wrote:
> On Fri, Nov 12, 2010 at 2:16 PM, Luis R. Rodriguez
> <[email protected]> wrote:
> > On Fri, Nov 12, 2010 at 10:47 AM, Felix Fietkau <[email protected]> wrote:
> >> Signed-off-by: Felix Fietkau <[email protected]>
> >
> > Applied and pushed, thanks!
> >
> > ?Luis
>
> This patch is to compile compat-wireless-2.6.37-2-sn.tar.bz2 on Ubuntu
> 10.10 2.6.35-24-generic.

I just sucked these two:

commit 7010ed051959df86a772dd730b8ea5921cc350d8
Author: Felix Fietkau <[email protected]>
Date: Fri Nov 12 11:15:28 2010 -0800

compat: fix a typo in pm_qos_update_request for 2.6.35

Signed-off-by: Felix Fietkau <[email protected]>

commit e8f244e7399eb4eb0ef6930bbcefe6fea74b4a73
Author: Felix Fietkau <[email protected]>
Date: Fri Nov 12 11:14:44 2010 -0800

compat: fix pm_qos_params compile error on 2.6.35

Linux 2.6.35 pm_qos_params.h is missing a #ifndef/define/endif around
its header file contents, causing a compile error when its functions
are overwritten by macros in the compat header files.
Fix this by adding these to the compat version of this header file.

Signed-off-by: Felix Fietkau <[email protected]>

into these releases:

http://www.orbit-lab.org/kernel/compat-wireless-2.6-stable/v2.6.37/compat-wireless-2.6.37-3.tar.bz2
http://www.orbit-lab.org/kernel/compat-wireless-2.6-stable/v2.6.37/compat-wireless-2.6.37-3-sn.tar.bz2

Please test and let me know if that fixes your woes.

Luis

2011-01-07 20:42:05

by Jason Andryuk

[permalink] [raw]
Subject: Re: [PATCH] compat: fix a typo in pm_qos_update_request for 2.6.35

On Fri, Nov 12, 2010 at 2:16 PM, Luis R. Rodriguez
<[email protected]> wrote:
> On Fri, Nov 12, 2010 at 10:47 AM, Felix Fietkau <[email protected]> wrote:
>> Signed-off-by: Felix Fietkau <[email protected]>
>
> Applied and pushed, thanks!
>
>  Luis

This patch is to compile compat-wireless-2.6.37-2-sn.tar.bz2 on Ubuntu
10.10 2.6.35-24-generic.

Jason

2011-01-08 18:25:50

by Jason Andryuk

[permalink] [raw]
Subject: Re: [PATCH] compat: fix a typo in pm_qos_update_request for 2.6.35

On Fri, Jan 7, 2011 at 4:34 PM, Luis R. Rodriguez
<[email protected]> wrote:
> On Fri, Jan 07, 2011 at 12:42:05PM -0800, Jason Andryuk wrote:
>> On Fri, Nov 12, 2010 at 2:16 PM, Luis R. Rodriguez
>> <[email protected]> wrote:
>> > On Fri, Nov 12, 2010 at 10:47 AM, Felix Fietkau <[email protected]> wrote:
>> >> Signed-off-by: Felix Fietkau <[email protected]>
>> >
>> > Applied and pushed, thanks!
>> >
>> >  Luis
>>
>> This patch is to compile compat-wireless-2.6.37-2-sn.tar.bz2 on Ubuntu
>> 10.10 2.6.35-24-generic.
>
> I just sucked these two:
>
> commit 7010ed051959df86a772dd730b8ea5921cc350d8
> Author: Felix Fietkau <[email protected]>
> Date:   Fri Nov 12 11:15:28 2010 -0800
>
>    compat: fix a typo in pm_qos_update_request for 2.6.35
>
>    Signed-off-by: Felix Fietkau <[email protected]>
>
> commit e8f244e7399eb4eb0ef6930bbcefe6fea74b4a73
> Author: Felix Fietkau <[email protected]>
> Date:   Fri Nov 12 11:14:44 2010 -0800
>
>    compat: fix pm_qos_params compile error on 2.6.35
>
>    Linux 2.6.35 pm_qos_params.h is missing a #ifndef/define/endif around
>    its header file contents, causing a compile error when its functions
>    are overwritten by macros in the compat header files.
>    Fix this by adding these to the compat version of this header file.
>
>    Signed-off-by: Felix Fietkau <[email protected]>
>
> into these releases:
>
> http://www.orbit-lab.org/kernel/compat-wireless-2.6-stable/v2.6.37/compat-wireless-2.6.37-3.tar.bz2
> http://www.orbit-lab.org/kernel/compat-wireless-2.6-stable/v2.6.37/compat-wireless-2.6.37-3-sn.tar.bz2
>
> Please test and let me know if that fixes your woes.
>
>  Luis

compat-wireless-2.6.37-3-sn.tar.bz2 successfully compiled and installed for me.

Thanks,

Jason