diff options
Diffstat (limited to 'fs/coda/upcall.c')
-rw-r--r-- | fs/coda/upcall.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/coda/upcall.c b/fs/coda/upcall.c index 5faacdb1a479..1651b918219a 100644 --- a/fs/coda/upcall.c +++ b/fs/coda/upcall.c | |||
@@ -251,12 +251,12 @@ int venus_open(struct super_block *sb, struct CodaFid *fid, | |||
251 | insize = SIZE(open_by_fd); | 251 | insize = SIZE(open_by_fd); |
252 | UPARG(CODA_OPEN_BY_FD); | 252 | UPARG(CODA_OPEN_BY_FD); |
253 | 253 | ||
254 | inp->coda_open.VFid = *fid; | 254 | inp->coda_open_by_fd.VFid = *fid; |
255 | inp->coda_open.flags = flags; | 255 | inp->coda_open_by_fd.flags = flags; |
256 | 256 | ||
257 | error = coda_upcall(coda_sbp(sb), insize, &outsize, inp); | 257 | error = coda_upcall(coda_sbp(sb), insize, &outsize, inp); |
258 | 258 | if (!error) | |
259 | *fh = outp->coda_open_by_fd.fh; | 259 | *fh = outp->coda_open_by_fd.fh; |
260 | 260 | ||
261 | CODA_FREE(inp, insize); | 261 | CODA_FREE(inp, insize); |
262 | return error; | 262 | return error; |