~ubuntu-branches/ubuntu/feisty/openafs/feisty

« back to all changes in this revision

Viewing changes to src/afs/LINUX/osi_file.c

  • Committer: Package Import Robot
  • Author(s): Russ Allbery
  • Date: 2007-03-26 18:56:55 UTC
  • Revision ID: package-import@ubuntu.com-20070326185655-osce8n0y0dptgurh
* New upstream release.  (Closes: #415699)
  - Support newer Linux kernels.  (Closes: #409797, #410120)
  - Add aklog fallbacks for null realms to support the referral
    capability in MIT Kerberos 1.6 and later.  (Closes: #410314)
* Apply patch from Thomas Sesselmann to support setting options to pass
  to bosserver in /etc/default/openafs-fileserver.  (Closes: #409357)
* Remove the rx_Init calls in the PAM module.  The internal counters
  that had to be initialized that way have been removed.
* Now that we're running regen.sh as part of the build process, only
  patch the Autoconf source files and not the generated output to make
  the diff easier to audit.

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/afs/LINUX/osi_file.c,v 1.19.2.10 2006/08/11 21:43:38 shadow Exp $");
 
14
    ("$Header: /cvs/openafs/src/afs/LINUX/osi_file.c,v 1.19.2.11 2006/11/09 23:26:26 shadow Exp $");
15
15
 
16
16
#ifdef AFS_LINUX24_ENV
17
17
#include "h/module.h" /* early to avoid printf->printk mapping */
137
137
    AFS_STATCNT(osi_Stat);
138
138
    MObtainWriteLock(&afs_xosi, 320);
139
139
    astat->size = OSIFILE_INODE(afile)->i_size;
140
 
#ifdef STRUCT_INODE_HAS_I_BLKSIZE
141
 
    astat->blksize = OSIFILE_INODE(afile)->i_blksize;
142
 
#endif
143
140
#if defined(AFS_LINUX26_ENV)
144
141
    astat->mtime = OSIFILE_INODE(afile)->i_mtime.tv_sec;
145
142
    astat->atime = OSIFILE_INODE(afile)->i_atime.tv_sec;