mirror of
https://git.openafs.org/openafs.git
synced 2025-01-22 08:50:17 +00:00
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:
parent
8ebade0e67
commit
85fd4e86af
@ -38,7 +38,7 @@ extern afs_rwlock_t afs_xnfssrv;
|
||||
extern afs_rwlock_t afs_xosi;
|
||||
extern int osi_InitCacheInfo(char *aname);
|
||||
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 */
|
||||
extern void osi_ioctl_init(void);
|
||||
|
@ -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! */
|
||||
AFS_GUNLOCK();
|
||||
cacheFp = afs_linux_raw_open(&tdc->f.inode, NULL);
|
||||
cacheFp = afs_linux_raw_open(&tdc->f.inode);
|
||||
pagevec_init(&lrupv, 0);
|
||||
|
||||
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();
|
||||
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,
|
||||
|
Loading…
Reference in New Issue
Block a user