[OpenAFS] Problems with OpenAFS 1.4.1.
Rainer Toebbicke
rtb@pclella.cern.ch
Fri, 16 Jun 2006 13:38:00 +0200
This is a multi-part message in MIME format.
--------------070203060705070502080403
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Beam Davis wrote:
> I was running an IBM AFS cell on IBM pSeries (RS/6000) hardware (on the
> server side). I have clients running IBM AFS on IBM pSeries machines
> (AIX 5.1) and OpenAFS on both Linux & a few legacy Solaris machines. It
> was decided to migrate to OpenAFS 1.4.1 database & file servers running
> Linux (2.6.14, 64-bit). I've moved over to the new Linux servers
> without much difficulty, but...
>
I might have misunderstood as it was a bit long... but if you're
backing up on a x86_64 Linux then you need the attached patch.
It's in CVS (DELTA backup-dump-parameter-fix-20060411), but wasn't yet
in 1.4.1. (another integer passed when a pointer was intended).
--
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Rainer Toebbicke
European Laboratory for Particle Physics(CERN) - Geneva, Switzerland
Phone: +41 22 767 8985 Fax: +41 22 767 7155
--------------070203060705070502080403
Content-Type: text/plain;
name="patch_backup_64bit"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="patch_backup_64bit"
--- openafs/src/bucoord/commands.c.o141 2005-07-11 21:29:33.000000000 +0200
+++ openafs/src/bucoord/commands.c 2006-04-11 17:27:09.000000000 +0200
@@ -1964,7 +1964,7 @@
code = bc_StartDmpRst(bc_globalConfig, dumpPath, vsName, volsToDump,
/*destServer */ 0, /*destPartition */ 0,
/*fromDate */ 0,
- /*newExt */ 0, /*oldFlag */ 0,
+ /*newExt */ NULL, /*oldFlag */ 0,
parent, level, bc_Dumper, portp, /*portCount */ 1,
baseds, doAppend, dontExecute);
if (code)
--------------070203060705070502080403--