openafs (1.4.2~fc4-3) unstable; urgency=low
+ * Apply patch from Chaskiel Grundman to fix kernel panics when loading
+ the kernel module into AMD64 2.6.18 kernels. (Closes: #390653)
* Apply upstream patch to fix klog segfaults. (Closes: #390940)
* The UTS_RELEASE string is no longer found in linux/version.h in
2.6.18, so fall back on looking in config/kernel.release. Thanks to
Marcus Watts for the patch.
- -- Russ Allbery <rra@stanford.edu> Wed, 4 Oct 2006 11:52:20 -0700
+ -- Russ Allbery <rra@debian.org> Thu, 5 Oct 2006 13:02:50 -0700
openafs (1.4.2~fc4-2) unstable; urgency=low
#else
ptr = aptr;
#endif
+ if ((unsigned long)ptr < init_mm.start_code ||
+ (unsigned long)ptr > init_mm.end_data) {
+ continue;
+ }
+
ret = check_table(P, ptr);
if (ret >= 0) {
/* return value is number of entries to skip */
printk("<7>osi_probe: %s try_harder\n", P->symbol);
#endif
for (offset = 0; offset < datalen; offset++, ptr++) {
+ if ((unsigned long)ptr < init_mm.start_code ||
+ (unsigned long)ptr > init_mm.end_data) {
+ continue;
+ }
ret = check_table(P, ptr);
if (ret >= 0) {
/* return value is number of entries to skip */