Linux: hinting removal fallout

The removal of the hinting missed a few things - the prototype to
afs_linux_raw_open needs to be changed, as well as a few additional
call sites.

Change-Id: I006540cee574bca7155d9209c2d9b6702c4f6c94
Reviewed-on: http://gerrit.openafs.org/864
Tested-by: Marc Dionne <marc.c.dionne@gmail.com>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
Marc Dionne 2009-11-20 17:27:20 -05:00 committed by Derrick Brashear
parent 8ebade0e67
commit 85fd4e86af
2 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ extern afs_rwlock_t afs_xnfssrv;
extern afs_rwlock_t afs_xosi; extern afs_rwlock_t afs_xosi;
extern int osi_InitCacheInfo(char *aname); extern int osi_InitCacheInfo(char *aname);
extern int osi_rdwr(struct osi_file *osifile, uio_t * uiop, int rw); extern int osi_rdwr(struct osi_file *osifile, uio_t * uiop, int rw);
extern struct file *afs_linux_raw_open(afs_dcache_id_t *ainode, ino_t *hint); extern struct file *afs_linux_raw_open(afs_dcache_id_t *ainode);
/* osi_ioctl.c */ /* osi_ioctl.c */
extern void osi_ioctl_init(void); extern void osi_ioctl_init(void);

View File

@ -1559,7 +1559,7 @@ afs_linux_readpage_fastpath(struct file *fp, struct page *pp, int *codep)
/* XXX - I suspect we should be locking the inodes before we use them! */ /* XXX - I suspect we should be locking the inodes before we use them! */
AFS_GUNLOCK(); AFS_GUNLOCK();
cacheFp = afs_linux_raw_open(&tdc->f.inode, NULL); cacheFp = afs_linux_raw_open(&tdc->f.inode);
pagevec_init(&lrupv, 0); pagevec_init(&lrupv, 0);
code = afs_linux_read_cache(cacheFp, pp, tdc->f.chunk, &lrupv, NULL); code = afs_linux_read_cache(cacheFp, pp, tdc->f.chunk, &lrupv, NULL);
@ -1956,7 +1956,7 @@ afs_linux_readpages(struct file *fp, struct address_space *mapping,
} }
AFS_GUNLOCK(); AFS_GUNLOCK();
if (tdc) if (tdc)
cacheFp = afs_linux_raw_open(&tdc->f.inode, NULL); cacheFp = afs_linux_raw_open(&tdc->f.inode);
} }
if (tdc && !add_to_page_cache(page, mapping, page->index, if (tdc && !add_to_page_cache(page, mapping, page->index,