unslung-kernel: patch ppp-mppe.c to remove errant floating point computation
authorMike Westerhof <mwester@dls.net>
Tue, 18 Apr 2006 04:00:50 +0000 (04:00 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Tue, 18 Apr 2006 04:00:50 +0000 (04:00 +0000)
packages/linux/unslung-kernel/ppp_mppe_no_fp_in_kernel.patch [new file with mode: 0644]
packages/linux/unslung-kernel_2.4.22.l2.3r63.bb

diff --git a/packages/linux/unslung-kernel/ppp_mppe_no_fp_in_kernel.patch b/packages/linux/unslung-kernel/ppp_mppe_no_fp_in_kernel.patch
new file mode 100644 (file)
index 0000000..b068a5a
--- /dev/null
@@ -0,0 +1,13 @@
+--- linux-2.4.22/drivers/net/ppp_mppe.c~       2006-04-15 12:23:04.000000000 -0500
++++ linux-2.4.22/drivers/net/ppp_mppe.c        2006-04-17 20:24:39.000000000 -0500
+@@ -507,7 +507,10 @@
+     (state->stats).bytes_out = (state->stats).comp_bytes;
+     /* this _SHOULD_ always be 1 */
++#if 0
++    /* the kernel may not do floating point calculations, so don't do this. */
+     (state->stats).ratio = (state->stats).in_count/(state->stats).bytes_out;
++#endif
+     *stats = state->stats;
+    
index 60b83ba..8aa07e8 100644 (file)
@@ -4,7 +4,7 @@ include nslu2-linksys-kernel_2.4.22.bb
 
 DESCRIPTION = "Unslung kernel for the Linksys NSLU2 device"
 MAINTAINER = "NSLU2 Linux <www.nlsu2-linux.org>"
-PR = "r11"
+PR = "r12"
 
 KERNEL_SUFFIX = "unslung"
 
@@ -23,6 +23,7 @@ SRC_URI += "file://linux-kernel-R25_to_R29.patch;patch=1 \
            file://nfs-blocksize.patch;patch=1 \
            file://pl2303.patch;patch=1 \
            file://netconsole.patch;patch=1 \
+           file://ppp_mppe_no_fp_in_kernel.patch;patch=1 \
            ${UNSLUNG_KERNEL_EXTRA_SRC_URI}"
 
 FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/unslung-kernel', '${FILE_DIRNAME}/nslu2-linksys-kernel-2.4.22', '${FILE_DIRNAME}/files', '${FILE_DIRNAME}' ], d)}"