- Potential deadlock fixed in the fileserver.
- Better fileserver host tracking.
- Ubik fixes preventing database truncation on unreliable links.
+ * Add upstream delta to fix oops on startup with pre-2.6.25 kernels.
* Install the up man page as afs-up, matching our renaming, and update
its text accordingly. (Closes: #459635)
* Move openafs-client later in the shutdown sequence on new
* Uncomment and fix the watch rules for pre-releases and always scan for
both regular releases and prereleases.
- -- Russ Allbery <rra@debian.org> Mon, 03 Mar 2008 18:49:17 -0800
+ -- Russ Allbery <rra@debian.org> Wed, 26 Mar 2008 17:36:17 -0700
openafs (1.4.6.dfsg1-3) unstable; urgency=low
--- /dev/null
+Fixes an oops on startup for Linux 2.4.24 kernels.
+
+STABLE14-linux-restore-iget-cachemgr-20080326
+
+--- openafs.orig/src/afs/LINUX/osi_file.c
++++ openafs/src/afs/LINUX/osi_file.c
+@@ -64,6 +64,10 @@
+ memset(afile, 0, sizeof(struct osi_file));
+ #if defined(HAVE_IGET)
+ tip = iget(afs_cacheSBp, (u_long) ainode);
++ if (!tip)
++ osi_Panic("Can't get inode %d\n", ainode);
++
++ dp = d_alloc_anon(tip);
+ #else
+ fid.i32.ino = ainode;
+ fid.i32.gen = 0;