~ubuntu-branches/ubuntu/oneiric/openafs/oneiric-201305130334

« back to all changes in this revision

Viewing changes to src/afs/VNOPS/afs_vnop_attrs.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:
24
24
#include "afs/param.h"
25
25
 
26
26
RCSID
27
 
    ("$Header: /cvs/openafs/src/afs/VNOPS/afs_vnop_attrs.c,v 1.27.2.10 2005/10/23 06:31:23 shadow Exp $");
 
27
    ("$Header: /cvs/openafs/src/afs/VNOPS/afs_vnop_attrs.c,v 1.27.2.11 2006/11/10 00:08:57 shadow Exp $");
28
28
 
29
29
#include "afs/sysincludes.h"    /* Standard vendor system headers */
30
30
#include "afsincludes.h"        /* Afs-based standard headers */
144
144
    attrs->va_flags = 0;
145
145
#endif
146
146
#if defined(AFS_SGI_ENV) || defined(AFS_SUN5_ENV)
147
 
    attrs->va_blksize = PAGESIZE;       /* XXX Was 8192 XXX */
 
147
    attrs->va_blksize = AFS_BLKSIZE;    /* XXX Was 8192 XXX */
148
148
#else
149
 
    attrs->va_blocksize = PAGESIZE;     /* XXX Was 8192 XXX */
 
149
    attrs->va_blocksize = AFS_BLKSIZE;  /* XXX Was 8192 XXX */
150
150
#endif
151
151
    attrs->va_rdev = 1;
152
152
#if defined(AFS_HPUX110_ENV)