diff options
Diffstat (limited to 'fs/coda/upcall.c')
-rw-r--r-- | fs/coda/upcall.c | 49 |
1 files changed, 1 insertions, 48 deletions
diff --git a/fs/coda/upcall.c b/fs/coda/upcall.c index cd561d2e90b0..cdb4c07a7870 100644 --- a/fs/coda/upcall.c +++ b/fs/coda/upcall.c | |||
@@ -160,55 +160,8 @@ int venus_lookup(struct super_block *sb, struct CodaFid *fid, | |||
160 | return error; | 160 | return error; |
161 | } | 161 | } |
162 | 162 | ||
163 | int venus_store(struct super_block *sb, struct CodaFid *fid, int flags, | ||
164 | vuid_t uid) | ||
165 | { | ||
166 | union inputArgs *inp; | ||
167 | union outputArgs *outp; | ||
168 | int insize, outsize, error; | ||
169 | #ifdef CONFIG_CODA_FS_OLD_API | ||
170 | struct coda_cred cred = { 0, }; | ||
171 | cred.cr_fsuid = uid; | ||
172 | #endif | ||
173 | |||
174 | insize = SIZE(store); | ||
175 | UPARG(CODA_STORE); | ||
176 | |||
177 | #ifdef CONFIG_CODA_FS_OLD_API | ||
178 | memcpy(&(inp->ih.cred), &cred, sizeof(cred)); | ||
179 | #else | ||
180 | inp->ih.uid = uid; | ||
181 | #endif | ||
182 | |||
183 | inp->coda_store.VFid = *fid; | ||
184 | inp->coda_store.flags = flags; | ||
185 | |||
186 | error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); | ||
187 | |||
188 | CODA_FREE(inp, insize); | ||
189 | return error; | ||
190 | } | ||
191 | |||
192 | int venus_release(struct super_block *sb, struct CodaFid *fid, int flags) | ||
193 | { | ||
194 | union inputArgs *inp; | ||
195 | union outputArgs *outp; | ||
196 | int insize, outsize, error; | ||
197 | |||
198 | insize = SIZE(release); | ||
199 | UPARG(CODA_RELEASE); | ||
200 | |||
201 | inp->coda_release.VFid = *fid; | ||
202 | inp->coda_release.flags = flags; | ||
203 | |||
204 | error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); | ||
205 | |||
206 | CODA_FREE(inp, insize); | ||
207 | return error; | ||
208 | } | ||
209 | |||
210 | int venus_close(struct super_block *sb, struct CodaFid *fid, int flags, | 163 | int venus_close(struct super_block *sb, struct CodaFid *fid, int flags, |
211 | vuid_t uid) | 164 | vuid_t uid) |
212 | { | 165 | { |
213 | union inputArgs *inp; | 166 | union inputArgs *inp; |
214 | union outputArgs *outp; | 167 | union outputArgs *outp; |