~ubuntu-branches/ubuntu/karmic/openafs/karmic-updates

« back to all changes in this revision

Viewing changes to src/rx/rx_multi.c

  • Committer: Bazaar Package Importer
  • Author(s): Russ Allbery
  • Date: 2008-09-22 19:07:02 UTC
  • mfrom: (12.1.14 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080922190702-59m13d7kn6gkw32d
Tags: 1.4.7.dfsg1-6
* Apply upstream patch to free /proc entries in the correct order.
  Thanks, Marc Dionne.  (Closes: #493914)
* Apply upstream deltas to support 2.6.27 kernels and to stop using
  COMMON_KERN_CFLAGS for all 2.6 kernels uniformly, which fixes
  problems on amd64 with newer kernels.  Thanks, Björn Torkelsson.
  (LP: #267504)
* Translation updates:
  - Swedish, thanks Martin Bagge.  (Closes: #493120)

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
#include <afs/param.h>
12
12
 
13
13
RCSID
14
 
    ("$Header: /cvs/openafs/src/rx/rx_multi.c,v 1.8.2.1 2004/12/07 06:10:06 shadow Exp $");
 
14
    ("$Header: /cvs/openafs/src/rx/rx_multi.c,v 1.8.2.2 2008/02/08 21:25:14 shadow Exp $");
15
15
 
16
16
#ifdef  KERNEL
17
17
#include "afs/sysincludes.h"
55
55
    for (i = 0; i < nConns; i++) {
56
56
        register struct rx_call *call;
57
57
        call = mh->calls[i] = rx_NewCall(conns[i]);
58
 
        rx_SetArrivalProc(call, multi_Ready, (VOID *) mh, i);
 
58
        rx_SetArrivalProc(call, multi_Ready, (void *) mh, i);
59
59
    }
60
60
    return mh;
61
61
}
95
95
 
96
96
/* Called by Rx when the first reply packet of a call is received, or the call is aborted. */
97
97
void
98
 
multi_Ready(register struct rx_call *call, register VOID *amh,
 
98
multi_Ready(register struct rx_call *call, register void *amh,
99
99
            register int index)
100
100
{
101
101
    register struct multi_handle *mh = (struct multi_handle *)amh;