Gentoo Archives: gentoo-commits

From: "George Kadianakis (asn)" <asn@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] linux-patches r1548 - genpatches-2.6/trunk/2.6.28
Date: Sat, 25 Apr 2009 01:49:00
Message-Id: E1LxX0k-0006Pz-53@stork.gentoo.org
1 Author: asn
2 Date: 2009-04-25 01:48:57 +0000 (Sat, 25 Apr 2009)
3 New Revision: 1548
4
5 Added:
6 genpatches-2.6/trunk/2.6.28/2405_rt2x00-disable-hw-crypto.patch
7 Modified:
8 genpatches-2.6/trunk/2.6.28/0000_README
9 Log:
10 Fixes crashes caused by the rt61pci/rt73usb drivers by disabling HW crypto functionality.
11
12 Modified: genpatches-2.6/trunk/2.6.28/0000_README
13 ===================================================================
14 --- genpatches-2.6/trunk/2.6.28/0000_README 2009-04-24 01:05:59 UTC (rev 1547)
15 +++ genpatches-2.6/trunk/2.6.28/0000_README 2009-04-25 01:48:57 UTC (rev 1548)
16 @@ -123,6 +123,10 @@
17 From: http://bugs.gentoo.org/254586
18 Desc: Fix adhoc disconnect issue in iwl3945
19
20 +Patch: 2405_rt2x00-disable-hw-crypto.patch
21 +From: http://bugs.gentoo.org/262862
22 +Desc: Fixes crashes caused by the rt61pci/rt73usb drivers by disabling HW crypto functionality.
23 +
24 Patch: 2505_macpower-wrong-capacity.patch
25 From: http://bugs.gentoo.org/250789
26 Desc: Fix capacity reported by Macpower hard drive
27
28 Added: genpatches-2.6/trunk/2.6.28/2405_rt2x00-disable-hw-crypto.patch
29 ===================================================================
30 --- genpatches-2.6/trunk/2.6.28/2405_rt2x00-disable-hw-crypto.patch (rev 0)
31 +++ genpatches-2.6/trunk/2.6.28/2405_rt2x00-disable-hw-crypto.patch 2009-04-25 01:48:57 UTC (rev 1548)
32 @@ -0,0 +1,25 @@
33 +diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c
34 +index 4346cd1..1e1bf5c 100644
35 +--- a/drivers/net/wireless/rt2x00/rt61pci.c
36 ++++ b/drivers/net/wireless/rt2x00/rt61pci.c
37 +@@ -40,6 +40,6 @@
38 + /*
39 + * Allow hardware encryption to be disabled.
40 + */
41 +-static int modparam_nohwcrypt = 0;
42 ++static int modparam_nohwcrypt = 1;
43 + module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
44 + MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
45 +
46 +diff --git a/drivers/net/wireless/rt2x00/rt73usb.c b/drivers/net/wireless/rt2x00/rt73usb.c
47 +index 853b2b2..48a109a 100644
48 +--- a/drivers/net/wireless/rt2x00/rt73usb.c
49 ++++ b/drivers/net/wireless/rt2x00/rt73usb.c
50 +@@ -39,7 +39,7 @@
51 + /*
52 + * Allow hardware encryption to be disabled.
53 + */
54 +-static int modparam_nohwcrypt = 0;
55 ++static int modparam_nohwcrypt = 1;
56 + module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
57 + MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");