Whamcloud - gitweb
Land b_smallfix onto HEAD (20040213_1402)
[fs/lustre-release.git] / lustre / llite / llite_lib.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Lustre Light Super operations
5  *
6  *  Copyright (c) 2002, 2003 Cluster File Systems, Inc.
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 #define DEBUG_SUBSYSTEM S_LLITE
25
26 #include <linux/module.h>
27 #include <linux/random.h>
28 #include <linux/version.h>
29
30 #include <linux/lustre_lite.h>
31 #include <linux/lustre_ha.h>
32 #include <linux/lustre_dlm.h>
33 #include <linux/lprocfs_status.h>
34 #include "llite_internal.h"
35
36 kmem_cache_t *ll_file_data_slab;
37
38 extern struct address_space_operations ll_aops;
39 extern struct address_space_operations ll_dir_aops;
40 extern struct super_operations ll_super_operations;
41
42 #ifndef log2
43 #define log2(n) ffz(~(n))
44 #endif
45
46 struct ll_sb_info *lustre_init_sbi(struct super_block *sb) 
47 {
48         struct ll_sb_info *sbi = NULL;
49         class_uuid_t uuid;
50         ENTRY;
51
52         OBD_ALLOC(sbi, sizeof(*sbi));
53         if (!sbi)
54                 RETURN(NULL);
55
56         spin_lock_init(&sbi->ll_pglist_lock);
57         INIT_LIST_HEAD(&sbi->ll_pglist);
58         sbi->ll_pglist_gen = 0;
59         INIT_LIST_HEAD(&sbi->ll_conn_chain);
60         INIT_HLIST_HEAD(&sbi->ll_orphan_dentry_list);
61         ll_s2sbi(sb) = sbi;
62
63         generate_random_uuid(uuid);
64         class_uuid_unparse(uuid, &sbi->ll_sb_uuid);
65         RETURN(sbi);
66 }
67
68 void lustre_free_sbi(struct super_block *sb) 
69 {
70         struct ll_sb_info *sbi = ll_s2sbi(sb);
71         ENTRY;
72
73         if (sbi != NULL)
74                 OBD_FREE(sbi, sizeof(*sbi));
75         ll_s2sbi(sb) = NULL;
76         EXIT;
77 }
78
79 int lustre_common_fill_super(struct super_block *sb, char *mdc, char *osc)
80 {
81         struct inode *root = 0;
82         struct ll_sb_info *sbi = ll_s2sbi(sb);
83         struct obd_device *obd;
84         struct ll_fid rootfid;
85         struct obd_statfs osfs;
86         struct ptlrpc_request *request = NULL;
87         struct lustre_handle osc_conn = {0, };
88         struct lustre_handle mdc_conn = {0, };
89         struct lustre_md md;
90         kdev_t devno;
91         int err;
92
93         obd = class_name2obd(mdc);
94         if (!obd) {
95                 CERROR("MDC %s: not setup or attached\n", mdc);
96                 RETURN(-EINVAL);
97         }
98
99         if (proc_lustre_fs_root) {
100                 err = lprocfs_register_mountpoint(proc_lustre_fs_root, sb,
101                                                   osc, mdc);
102                 if (err < 0)
103                         CERROR("could not register mount in /proc/lustre");
104         }
105
106         mdc_init_ea_size(obd, osc);
107
108         err = obd_connect(&mdc_conn, obd, &sbi->ll_sb_uuid);
109         if (err == -EBUSY) {
110                 CERROR("An MDS (mdc %s) is performing recovery, of which this"
111                        " client is not a part.  Please wait for recovery to "
112                        "complete, abort, or time out.\n", mdc);
113                 GOTO(out, err);
114         } else if (err) {
115                 CERROR("cannot connect to %s: rc = %d\n", mdc, err);
116                 GOTO(out, err);
117         }
118         sbi->ll_mdc_exp = class_conn2export(&mdc_conn);
119
120         err = obd_statfs(obd, &osfs, jiffies - HZ);
121         if (err)
122                 GOTO(out_mdc, err);
123
124         LASSERT(osfs.os_bsize);
125         sb->s_blocksize = osfs.os_bsize;
126         sb->s_blocksize_bits = log2(osfs.os_bsize);
127         sb->s_magic = LL_SUPER_MAGIC;
128         sb->s_maxbytes = PAGE_CACHE_MAXBYTES;
129         
130         devno = get_uuid2int(sbi2mdc(sbi)->cl_import->imp_target_uuid.uuid, 
131                              strlen(sbi2mdc(sbi)->cl_import->imp_target_uuid.uuid));
132         sb->s_dev = devno;
133
134         obd = class_name2obd(osc);
135         if (!obd) {
136                 CERROR("OSC %s: not setup or attached\n", osc);
137                 GOTO(out_mdc, err);
138         }
139
140         err = obd_connect(&osc_conn, obd, &sbi->ll_sb_uuid);
141         if (err == -EBUSY) {
142                 CERROR("An OST (osc %s) is performing recovery, of which this"
143                        " client is not a part.  Please wait for recovery to "
144                        "complete, abort, or time out.\n", osc);
145                 GOTO(out, err);
146         } else if (err) {
147                 CERROR("cannot connect to %s: rc = %d\n", osc, err);
148                 GOTO(out_mdc, err);
149         }
150         sbi->ll_osc_exp = class_conn2export(&osc_conn);
151
152         err = mdc_getstatus(sbi->ll_mdc_exp, &rootfid);
153         if (err) {
154                 CERROR("cannot mds_connect: rc = %d\n", err);
155                 GOTO(out_osc, err);
156         }
157         CDEBUG(D_SUPER, "rootfid "LPU64"\n", rootfid.id);
158         sbi->ll_rootino = rootfid.id;
159
160         sb->s_op = &lustre_super_operations;
161
162         /* make root inode 
163          * XXX: move this to after cbd setup? */
164         err = mdc_getattr(sbi->ll_mdc_exp, &rootfid,
165                           OBD_MD_FLNOTOBD|OBD_MD_FLBLOCKS, 0, &request);
166         if (err) {
167                 CERROR("mdc_getattr failed for root: rc = %d\n", err);
168                 GOTO(out_osc, err);
169         }
170
171         err = mdc_req2lustre_md(request, 0, sbi->ll_osc_exp, &md);
172         if (err) {
173                 CERROR("failed to understand root inode md: rc = %d\n",err);
174                 ptlrpc_req_finished (request);
175                 GOTO(out_osc, err);
176         }
177
178         LASSERT(sbi->ll_rootino != 0);
179         root = ll_iget(sb, sbi->ll_rootino, &md);
180
181         ptlrpc_req_finished(request);
182
183         if (root == NULL || is_bad_inode(root)) {
184                 /* XXX might need iput() for bad inode */
185                 CERROR("lustre_lite: bad iget4 for root\n");
186                 GOTO(out_root, err = -EBADF);
187         }
188
189         err = ll_close_thread_start(&sbi->ll_lcq);
190         if (err) {
191                 CERROR("cannot start close thread: rc %d\n", err);
192                 GOTO(out_root, err);
193         }
194
195         sb->s_root = d_alloc_root(root);
196         RETURN(err);
197
198 out_root:
199         if (root)
200                 iput(root);
201 out_osc:
202         obd_disconnect(sbi->ll_osc_exp, 0);
203 out_mdc:
204         obd_disconnect(sbi->ll_mdc_exp, 0);
205 out:
206         lprocfs_unregister_mountpoint(sbi);
207         RETURN(err);
208 }
209
210 void lustre_common_put_super(struct super_block *sb)
211 {
212         struct ll_sb_info *sbi = ll_s2sbi(sb);
213         struct hlist_node *tmp, *next;
214         ENTRY;
215
216         ll_close_thread_shutdown(sbi->ll_lcq);
217
218         list_del(&sbi->ll_conn_chain);
219         obd_disconnect(sbi->ll_osc_exp, 0);
220
221         lprocfs_unregister_mountpoint(sbi);
222         if (sbi->ll_proc_root) {
223                 lprocfs_remove(sbi->ll_proc_root);
224                 sbi->ll_proc_root = NULL;
225         }
226
227         obd_disconnect(sbi->ll_mdc_exp, 0);
228
229         // We do this to get rid of orphaned dentries. That is not really trw.
230         spin_lock(&dcache_lock);
231         hlist_for_each_safe(tmp, next, &sbi->ll_orphan_dentry_list) {
232                 struct dentry *dentry = hlist_entry(tmp, struct dentry, d_hash);
233                 shrink_dcache_parent(dentry);
234         }
235         spin_unlock(&dcache_lock);
236         EXIT;
237 }
238
239
240 char *ll_read_opt(const char *opt, char *data)
241 {
242         char *value;
243         char *retval;
244         ENTRY;
245
246         CDEBUG(D_SUPER, "option: %s, data %s\n", opt, data);
247         if (strncmp(opt, data, strlen(opt)))
248                 RETURN(NULL);
249         if ((value = strchr(data, '=')) == NULL)
250                 RETURN(NULL);
251
252         value++;
253         OBD_ALLOC(retval, strlen(value) + 1);
254         if (!retval) {
255                 CERROR("out of memory!\n");
256                 RETURN(NULL);
257         }
258
259         memcpy(retval, value, strlen(value)+1);
260         CDEBUG(D_SUPER, "Assigned option: %s, value %s\n", opt, retval);
261         RETURN(retval);
262 }
263
264 int ll_set_opt(const char *opt, char *data, int fl)
265 {
266         ENTRY;
267
268         CDEBUG(D_SUPER, "option: %s, data %s\n", opt, data);
269         if (strncmp(opt, data, strlen(opt)))
270                 RETURN(0);
271         else
272                 RETURN(fl);
273 }
274
275 void ll_options(char *options, char **ost, char **mdc, int *flags)
276 {
277         char *this_char;
278 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
279         char *opt_ptr = options;
280 #endif
281         ENTRY;
282
283         if (!options) {
284                 EXIT;
285                 return;
286         }
287
288 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
289         for (this_char = strtok (options, ",");
290              this_char != NULL;
291              this_char = strtok (NULL, ",")) {
292 #else
293         while ((this_char = strsep (&opt_ptr, ",")) != NULL) {
294 #endif
295                 CDEBUG(D_SUPER, "this_char %s\n", this_char);
296                 if (!*ost && (*ost = ll_read_opt("osc", this_char)))
297                         continue;
298                 if (!*mdc && (*mdc = ll_read_opt("mdc", this_char)))
299                         continue;
300                 if (!(*flags & LL_SBI_NOLCK) &&
301                     ((*flags) = (*flags) |
302                                 ll_set_opt("nolock", this_char,
303                                            LL_SBI_NOLCK)))
304                         continue;
305         }
306         EXIT;
307 }
308
309 void ll_lli_init(struct ll_inode_info *lli)
310 {
311         sema_init(&lli->lli_open_sem, 1);
312         lli->lli_flags = 0;
313         lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
314         spin_lock_init(&lli->lli_lock);
315         INIT_LIST_HEAD(&lli->lli_pending_write_llaps);
316 }
317
318 int ll_fill_super(struct super_block *sb, void *data, int silent)
319 {
320         struct ll_sb_info *sbi;
321         char *osc = NULL;
322         char *mdc = NULL;
323         int err;
324         ENTRY;
325
326         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
327
328         sbi = lustre_init_sbi(sb);
329         if (!sbi)
330                 RETURN(-ENOMEM);
331
332         sbi->ll_flags |= LL_SBI_READAHEAD;
333         ll_options(data, &osc, &mdc, &sbi->ll_flags);
334
335         if (!osc) {
336                 CERROR("no osc\n");
337                 GOTO(out, err = -EINVAL);
338         }
339
340         if (!mdc) {
341                 CERROR("no mdc\n");
342                 GOTO(out, err = -EINVAL);
343         }
344
345         err = lustre_common_fill_super(sb, mdc, osc);
346 out:
347         if (err)
348                 lustre_free_sbi(sb);
349
350         if (mdc)
351                 OBD_FREE(mdc, strlen(mdc) + 1);
352         if (osc)
353                 OBD_FREE(osc, strlen(osc) + 1);
354
355         RETURN(err);
356 } /* ll_read_super */
357
358 void ll_put_super(struct super_block *sb)
359 {
360         ENTRY;
361
362         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
363
364         lustre_common_put_super(sb);
365
366         lustre_free_sbi(sb);
367
368         EXIT;
369 } /* ll_put_super */
370
371 int lustre_process_log(struct lustre_mount_data *lmd, char * profile,
372                        struct config_llog_instance *cfg, int allow_recov)
373 {
374         struct lustre_cfg lcfg;
375         struct portals_cfg pcfg;
376         char * peer = "MDS_PEER_UUID";
377         struct obd_device *obd;
378         struct lustre_handle mdc_conn = {0, };
379         struct obd_export *exp;
380         char * name = "mdc_dev";
381         class_uuid_t uuid;
382         struct obd_uuid mdc_uuid;
383         struct llog_ctxt *ctxt;
384         int rc = 0;
385         int err;
386         ENTRY;
387
388         generate_random_uuid(uuid);
389         class_uuid_unparse(uuid, &mdc_uuid);
390
391         if (lmd->lmd_local_nid) {
392                 PCFG_INIT(pcfg, NAL_CMD_REGISTER_MYNID);
393                 pcfg.pcfg_nal = lmd->lmd_nal;
394                 pcfg.pcfg_nid = lmd->lmd_local_nid;
395                 err = kportal_nal_cmd(&pcfg);
396                 if (err <0)
397                         GOTO(out, err);
398         }
399
400         if (lmd->lmd_nal == SOCKNAL) {
401                 PCFG_INIT(pcfg, NAL_CMD_ADD_AUTOCONN);
402                 pcfg.pcfg_nal     = lmd->lmd_nal;
403                 pcfg.pcfg_nid     = lmd->lmd_server_nid;
404                 pcfg.pcfg_id      = lmd->lmd_server_ipaddr;
405                 pcfg.pcfg_misc    = lmd->lmd_port;
406                 pcfg.pcfg_size    = 8388608;
407                 pcfg.pcfg_flags   = 0x4; /*share*/
408                 err = kportal_nal_cmd(&pcfg);
409                 if (err <0)
410                         GOTO(out, err);
411         }
412
413         LCFG_INIT(lcfg, LCFG_ADD_UUID, name);
414         lcfg.lcfg_nid = lmd->lmd_server_nid;
415         lcfg.lcfg_inllen1 = strlen(peer) + 1;
416         lcfg.lcfg_inlbuf1 = peer;
417         lcfg.lcfg_nal = lmd->lmd_nal;
418         err = class_process_config(&lcfg);
419         if (err < 0)
420                 GOTO(out_del_conn, err);
421
422         LCFG_INIT(lcfg, LCFG_ATTACH, name);
423         lcfg.lcfg_inlbuf1 = "mdc";
424         lcfg.lcfg_inllen1 = strlen(lcfg.lcfg_inlbuf1) + 1;
425         lcfg.lcfg_inlbuf2 = mdc_uuid.uuid;
426         lcfg.lcfg_inllen2 = strlen(lcfg.lcfg_inlbuf2) + 1;
427         err = class_process_config(&lcfg);
428         if (err < 0)
429                 GOTO(out_del_uuid, err);
430
431         LCFG_INIT(lcfg, LCFG_SETUP, name);
432         lcfg.lcfg_inlbuf1 = lmd->lmd_mds;
433         lcfg.lcfg_inllen1 = strlen(lcfg.lcfg_inlbuf1) + 1;
434         lcfg.lcfg_inlbuf2 = peer;
435         lcfg.lcfg_inllen2 = strlen(lcfg.lcfg_inlbuf2) + 1;
436         err = class_process_config(&lcfg);
437         if (err < 0)
438                 GOTO(out_detach, err);
439         
440         obd = class_name2obd(name);
441         if (obd == NULL)
442                 GOTO(out_cleanup, err = -EINVAL);
443
444         /* Disable initial recovery on this import */
445         err = obd_set_info(obd->obd_self_export, 
446                            strlen("initial_recov"), "initial_recov", 
447                            sizeof(allow_recov), &allow_recov);
448         if (err)
449                 GOTO(out_cleanup, err);
450
451         err = obd_connect(&mdc_conn, obd, &mdc_uuid);
452         if (err) {
453                 CERROR("cannot connect to %s: rc = %d\n", lmd->lmd_mds, err);
454                 GOTO(out_cleanup, err);
455         }
456         
457         exp = class_conn2export(&mdc_conn);
458         
459         ctxt = llog_get_context(exp->exp_obd, LLOG_CONFIG_REPL_CTXT);
460         rc = class_config_parse_llog(ctxt, profile, cfg);
461         if (rc) {
462                 CERROR("class_config_parse_llog failed: rc = %d\n", rc);
463         }
464
465         err = obd_disconnect(exp, 0);
466
467 out_cleanup:
468         LCFG_INIT(lcfg, LCFG_CLEANUP, name);
469         err = class_process_config(&lcfg);
470         if (err < 0)
471                 GOTO(out, err);
472
473 out_detach:
474         LCFG_INIT(lcfg, LCFG_DETACH, name);
475         err = class_process_config(&lcfg);
476         if (err < 0)
477                 GOTO(out, err);
478
479 out_del_uuid:
480         LCFG_INIT(lcfg, LCFG_DEL_UUID, name);
481         lcfg.lcfg_inllen1 = strlen(peer) + 1;
482         lcfg.lcfg_inlbuf1 = peer;
483         err = class_process_config(&lcfg);
484
485 out_del_conn:
486         if (lmd->lmd_nal == SOCKNAL) {
487                 PCFG_INIT(pcfg, NAL_CMD_DEL_AUTOCONN);
488                 pcfg.pcfg_nal     = lmd->lmd_nal;
489                 pcfg.pcfg_nid     = lmd->lmd_server_nid;
490                 pcfg.pcfg_id      = lmd->lmd_server_ipaddr;
491                 pcfg.pcfg_flags   = 1; /*share*/
492                 err = kportal_nal_cmd(&pcfg);
493                 if (err <0)
494                         GOTO(out, err);
495         }
496 out:
497         if (rc == 0)
498                 rc = err;
499         
500         RETURN(rc);
501 }
502
503 int lustre_fill_super(struct super_block *sb, void *data, int silent)
504 {
505         struct lustre_mount_data * lmd = data;
506         struct ll_sb_info *sbi;
507         char *osc = NULL;
508         char *mdc = NULL;
509         int err;
510         ENTRY;
511
512         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
513         sbi = lustre_init_sbi(sb);
514         if (!sbi)
515                 RETURN(-ENOMEM);
516
517         sbi->ll_flags |= LL_SBI_READAHEAD;
518
519         if (lmd->lmd_profile) {
520                 struct lustre_profile *lprof;
521                 struct config_llog_instance cfg;
522                 int len;
523
524                 if (!lmd->lmd_mds) {
525                         CERROR("no mds name\n");
526                         GOTO(out_free, err = -EINVAL);
527                 }
528
529                 OBD_ALLOC(sbi->ll_lmd, sizeof(*sbi->ll_lmd));
530                 if (sbi->ll_lmd == NULL) 
531                         GOTO(out_free, err = -ENOMEM);
532                 memcpy(sbi->ll_lmd, lmd, sizeof(*lmd));
533
534                 /* generate a string unique to this super, let's try
535                  the address of the super itself.*/
536                 len = (sizeof(sb) * 2) + 1; 
537                 OBD_ALLOC(sbi->ll_instance, len);
538                 if (sbi->ll_instance == NULL) 
539                         GOTO(out_free, err = -ENOMEM);
540                 sprintf(sbi->ll_instance, "%p", sb);
541
542                 cfg.cfg_instance = sbi->ll_instance;
543                 cfg.cfg_uuid = sbi->ll_sb_uuid;
544                 cfg.cfg_local_nid = lmd->lmd_local_nid;
545                 err = lustre_process_log(lmd, lmd->lmd_profile, &cfg, 1);
546                 if (err < 0) {
547                         CERROR("Unable to process log: %s\n", lmd->lmd_profile);
548
549                         GOTO(out_free, err);
550                 }
551
552                 lprof = class_get_profile(lmd->lmd_profile);
553                 if (lprof == NULL) {
554                         CERROR("No profile found: %s\n", lmd->lmd_profile);
555                         GOTO(out_free, err = -EINVAL);
556                 }
557                 if (osc)
558                         OBD_FREE(osc, strlen(osc) + 1);
559                 OBD_ALLOC(osc, strlen(lprof->lp_osc) + 
560                           strlen(sbi->ll_instance) + 2);
561                 sprintf(osc, "%s-%s", lprof->lp_osc, sbi->ll_instance);
562
563                 if (mdc)
564                         OBD_FREE(mdc, strlen(mdc) + 1);
565                 OBD_ALLOC(mdc, strlen(lprof->lp_mdc) + 
566                           strlen(sbi->ll_instance) + 2);
567                 sprintf(mdc, "%s-%s", lprof->lp_mdc, sbi->ll_instance);
568         }
569
570         if (!osc) {
571                 CERROR("no osc\n");
572                 GOTO(out_free, err = -EINVAL);
573         }
574
575         if (!mdc) {
576                 CERROR("no mdc\n");
577                 GOTO(out_free, err = -EINVAL);
578         }
579         
580         err = lustre_common_fill_super(sb, mdc, osc);
581         
582         if (err)
583                 GOTO(out_free, err);
584
585 out_dev:
586         if (mdc)
587                 OBD_FREE(mdc, strlen(mdc) + 1);
588         if (osc)
589                 OBD_FREE(osc, strlen(osc) + 1);
590
591         RETURN(err);
592
593 out_free:
594         if (sbi->ll_lmd) {
595                 int len = strlen(sbi->ll_lmd->lmd_profile) + sizeof("-clean")+1;
596                 int err;
597
598                 if (sbi->ll_instance != NULL) {
599                         char * cln_prof;
600                         struct config_llog_instance cfg;
601
602                         cfg.cfg_instance = sbi->ll_instance;
603                         cfg.cfg_uuid = sbi->ll_sb_uuid;
604
605                         OBD_ALLOC(cln_prof, len);
606                         sprintf(cln_prof, "%s-clean", sbi->ll_lmd->lmd_profile);
607
608                         err = lustre_process_log(sbi->ll_lmd, cln_prof, &cfg, 
609                                                  0);
610                         if (err < 0) 
611                                 CERROR("Unable to process log: %s\n", cln_prof);
612                         OBD_FREE(cln_prof, len);
613                         OBD_FREE(sbi->ll_instance, strlen(sbi->ll_instance)+ 1);
614                 }
615                 OBD_FREE(sbi->ll_lmd, sizeof(*sbi->ll_lmd));
616         }
617         lustre_free_sbi(sb);
618
619         goto out_dev;
620 } /* lustre_fill_super */
621
622 static void lustre_manual_cleanup(struct ll_sb_info *sbi) 
623 {
624         struct lustre_cfg lcfg;
625         struct obd_device *obd;
626         int next = 0; 
627
628         while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)) != NULL)
629         {
630                 int err;
631
632                 LCFG_INIT(lcfg, LCFG_CLEANUP, obd->obd_name);
633                 err = class_process_config(&lcfg);
634                 if (err) {
635                         CERROR("cleanup failed: %s\n", obd->obd_name);
636                         //continue;
637                 }
638
639                 LCFG_INIT(lcfg, LCFG_DETACH, obd->obd_name);
640                 err = class_process_config(&lcfg);
641                 if (err) {
642                         CERROR("detach failed: %s\n", obd->obd_name);
643                         //continue;
644                 }
645         }
646
647         if (sbi->ll_lmd != NULL) 
648                 class_del_profile(sbi->ll_lmd->lmd_profile);
649 }
650
651 void lustre_put_super(struct super_block *sb)
652 {
653         struct obd_device *obd;
654         struct ll_sb_info *sbi = ll_s2sbi(sb);
655         int force_umount = 0;
656         ENTRY;
657
658         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
659         obd = class_exp2obd(sbi->ll_mdc_exp);
660         if (obd)
661                 force_umount = obd->obd_no_recov;
662         obd = NULL;
663         
664         lustre_common_put_super(sb);
665
666         if (sbi->ll_lmd != NULL) {
667                 char * cln_prof;
668                 int len = strlen(sbi->ll_lmd->lmd_profile) + sizeof("-clean")+1;
669                 int err;
670                 struct config_llog_instance cfg;
671
672                 if (force_umount) {
673                         CERROR("force umount, doing manual cleanup\n");
674                         lustre_manual_cleanup(sbi);
675                         GOTO(free_lmd, 0);
676                 }
677
678                 cfg.cfg_instance = sbi->ll_instance;
679                 cfg.cfg_uuid = sbi->ll_sb_uuid;
680
681                 OBD_ALLOC(cln_prof, len);
682                 sprintf(cln_prof, "%s-clean", sbi->ll_lmd->lmd_profile);
683
684                 err = lustre_process_log(sbi->ll_lmd, cln_prof, &cfg, 0);
685                 if (err < 0) {
686                         CERROR("Unable to process log: %s, doing manual cleanup"
687                                "\n", cln_prof);
688                         lustre_manual_cleanup(sbi);
689                 }
690
691                 OBD_FREE(cln_prof, len);
692         free_lmd:
693                 OBD_FREE(sbi->ll_lmd, sizeof(*sbi->ll_lmd));
694                 OBD_FREE(sbi->ll_instance, strlen(sbi->ll_instance) + 1);
695         }
696
697         lustre_free_sbi(sb);
698
699         EXIT;
700 } /* lustre_put_super */
701
702
703 struct inode *ll_inode_from_lock(struct ldlm_lock *lock)
704 {
705         struct inode *inode;
706         l_lock(&lock->l_resource->lr_namespace->ns_lock);
707         if (lock->l_ast_data)
708                 inode = igrab(lock->l_ast_data);
709         else
710                 inode = NULL;
711         l_unlock(&lock->l_resource->lr_namespace->ns_lock);
712         return inode;
713 }
714
715 static int null_if_equal(struct ldlm_lock *lock, void *data)
716 {
717         if (data == lock->l_ast_data)
718                 lock->l_ast_data = NULL;
719
720         if (lock->l_req_mode != lock->l_granted_mode)
721                 return LDLM_ITER_STOP;
722
723         return LDLM_ITER_CONTINUE;
724 }
725
726 void ll_clear_inode(struct inode *inode)
727 {
728         struct ll_fid fid;
729         struct ll_inode_info *lli = ll_i2info(inode);
730         struct ll_sb_info *sbi = ll_i2sbi(inode);
731         ENTRY;
732
733         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
734                inode->i_generation, inode);
735
736         ll_inode2fid(&fid, inode);
737         clear_bit(LLI_F_HAVE_MDS_SIZE_LOCK, &(ll_i2info(inode)->lli_flags));
738         mdc_change_cbdata(sbi->ll_mdc_exp, &fid, null_if_equal, inode);
739
740         if (lli->lli_smd)
741                 obd_change_cbdata(sbi->ll_osc_exp, lli->lli_smd,
742                                   null_if_equal, inode);
743
744         if (lli->lli_smd) {
745                 obd_free_memmd(sbi->ll_osc_exp, &lli->lli_smd);
746                 lli->lli_smd = NULL;
747         }
748
749         if (lli->lli_symlink_name) {
750                 OBD_FREE(lli->lli_symlink_name,
751                          strlen(lli->lli_symlink_name) + 1);
752                 lli->lli_symlink_name = NULL;
753         }
754
755         EXIT;
756 }
757
758 /* If this inode has objects allocated to it (lsm != NULL), then the OST
759  * object(s) determine the file size and mtime.  Otherwise, the MDS will
760  * keep these values until such a time that objects are allocated for it.
761  * We do the MDS operations first, as it is checking permissions for us.
762  * We don't to the MDS RPC if there is nothing that we want to store there,
763  * otherwise there is no harm in updating mtime/atime on the MDS if we are
764  * going to do an RPC anyways.
765  *
766  * If we are doing a truncate, we will send the mtime and ctime updates
767  * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
768  * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
769  * at the same time.
770  */
771 int ll_setattr_raw(struct inode *inode, struct iattr *attr)
772 {
773         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
774         struct ll_sb_info *sbi = ll_i2sbi(inode);
775         struct ptlrpc_request *request = NULL;
776         struct mdc_op_data op_data;
777         int ia_valid = attr->ia_valid;
778         int rc = 0;
779         ENTRY;
780
781         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu\n", inode->i_ino);
782         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_SETATTR);
783
784         if (ia_valid & ATTR_SIZE) {
785                 if (attr->ia_size > ll_file_maxbytes(inode)) {
786                         CDEBUG(D_INODE, "file too large %llu > "LPU64"\n",
787                                attr->ia_size, ll_file_maxbytes(inode));
788                         RETURN(-EFBIG);
789                 }
790
791                 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
792         }
793
794         /* POSIX: check before ATTR_*TIME_SET set (from inode_change_ok) */
795         if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET)) {
796                 if (current->fsuid != inode->i_uid && !capable(CAP_FOWNER))
797                         RETURN(-EPERM);
798         }
799
800         /* We mark all of the fields "set" so MDS/OST does not re-set them */
801         if (attr->ia_valid & ATTR_CTIME) {
802                 attr->ia_ctime = CURRENT_TIME;
803                 attr->ia_valid |= ATTR_CTIME_SET;
804         }
805         if (!(ia_valid & ATTR_ATIME_SET) && (attr->ia_valid & ATTR_ATIME)) {
806                 attr->ia_atime = CURRENT_TIME;
807                 attr->ia_valid |= ATTR_ATIME_SET;
808         }
809         if (!(ia_valid & ATTR_MTIME_SET) && (attr->ia_valid & ATTR_MTIME)) {
810                 attr->ia_mtime = CURRENT_TIME;
811                 attr->ia_valid |= ATTR_MTIME_SET;
812         }
813
814         if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
815                 CDEBUG(D_INODE, "setting mtime %lu, ctime %lu, now = %lu\n",
816                        LTIME_S(attr->ia_mtime), LTIME_S(attr->ia_ctime),
817                        LTIME_S(CURRENT_TIME));
818         if (lsm)
819                 attr->ia_valid &= ~ATTR_SIZE;
820
821         /* If only OST attributes being set on objects, don't do MDS RPC.
822          * In that case, we need to check permissions and update the local
823          * inode ourselves so we can call obdo_from_inode() always. */
824         if (ia_valid & (lsm ? ~(ATTR_SIZE | ATTR_FROM_OPEN | ATTR_RAW) : ~0)) {
825                 struct lustre_md md;
826                 ll_prepare_mdc_op_data(&op_data, inode, NULL, NULL, 0, 0);
827
828                 rc = mdc_setattr(sbi->ll_mdc_exp, &op_data,
829                                  attr, NULL, 0, NULL, 0, &request);
830
831                 if (rc) {
832                         ptlrpc_req_finished(request);
833                         if (rc != -EPERM && rc != -EACCES)
834                                 CERROR("mdc_setattr fails: rc = %d\n", rc);
835                         RETURN(rc);
836                 }
837
838                 rc = mdc_req2lustre_md(request, 0, sbi->ll_osc_exp, &md);
839                 if (rc) {
840                         ptlrpc_req_finished(request);
841                         RETURN(rc);
842                 }
843
844                 /* Won't invoke vmtruncate as we already cleared ATTR_SIZE,
845                  * but needed to set timestamps backwards on utime. */
846                 inode_setattr(inode, attr);
847                 ll_update_inode(inode, md.body, md.lsm);
848                 ptlrpc_req_finished(request);
849
850                 if (!lsm || !S_ISREG(inode->i_mode)) {
851                         CDEBUG(D_INODE, "no lsm: not setting attrs on OST\n");
852                         RETURN(0);
853                 }
854         } else {
855                 /* The OST doesn't check permissions, but the alternative is
856                  * a gratuitous RPC to the MDS.  We already rely on the client
857                  * to do read/write/truncate permission checks, so is mtime OK?
858                  */
859                 if (ia_valid & (ATTR_MTIME | ATTR_ATIME)) {
860                         /* from sys_utime() */
861                         if (!(ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))) {
862                                 if (current->fsuid != inode->i_uid &&
863                                     (rc = ll_permission(inode, MAY_WRITE, NULL)) != 0)
864                                         RETURN(rc);
865                         } else {
866                                 /* from inode_change_ok() */
867                                 if (current->fsuid != inode->i_uid &&
868                                     !capable(CAP_FOWNER))
869                                         RETURN(-EPERM);
870                         }
871                 }
872
873                 /* Won't invoke vmtruncate, as we already cleared ATTR_SIZE */
874                 inode_setattr(inode, attr);
875         }
876
877         /* We really need to get our PW lock before we change inode->i_size.
878          * If we don't we can race with other i_size updaters on our node, like
879          * ll_file_read.  We can also race with i_size propogation to other
880          * nodes through dirtying and writeback of final cached pages.  This
881          * last one is especially bad for racing o_append users on other 
882          * nodes. */
883         if (ia_valid & ATTR_SIZE) {
884                 struct ldlm_extent extent = { .start = attr->ia_size,
885                                               .end = OBD_OBJECT_EOF };
886                 struct lustre_handle lockh = { 0 };
887                 int err, ast_flags = 0;
888                 /* XXX when we fix the AST intents to pass the discard-range
889                  * XXX extent, make ast_flags always LDLM_AST_DISCARD_DATA
890                  * XXX here. */
891                 if (attr->ia_size == 0)
892                         ast_flags = LDLM_AST_DISCARD_DATA;
893
894                 /* bug 1639: avoid write/truncate i_sem/DLM deadlock */
895                 LASSERT(atomic_read(&inode->i_sem.count) <= 0);
896                 up(&inode->i_sem);
897                 rc = ll_extent_lock_no_validate(NULL, inode, lsm, LCK_PW,
898                                                 &extent, &lockh, ast_flags);
899                 down(&inode->i_sem);
900                 if (rc != ELDLM_OK)
901                         RETURN(rc);
902
903                 rc = vmtruncate(inode, attr->ia_size);
904                 if (rc == 0)
905                         set_bit(LLI_F_HAVE_OST_SIZE_LOCK,
906                                 &ll_i2info(inode)->lli_flags);
907
908                 //ll_try_done_writing(inode);
909
910                 /* unlock now as we don't mind others file lockers racing with
911                  * the mds updates below? */
912                 err = ll_extent_unlock(NULL, inode, lsm, LCK_PW, &lockh);
913                 if (err) {
914                         CERROR("ll_extent_unlock failed: %d\n", err);
915                         if (!rc)
916                                 rc = err;
917                 }
918         } else if (ia_valid & (ATTR_MTIME | ATTR_MTIME_SET)) {
919                 struct obdo oa;
920
921                 CDEBUG(D_INODE, "set mtime on OST inode %lu to %lu\n",
922                        inode->i_ino, LTIME_S(attr->ia_mtime));
923                 oa.o_id = lsm->lsm_object_id;
924                 oa.o_valid = OBD_MD_FLID;
925                 obdo_from_inode(&oa, inode, OBD_MD_FLTYPE | OBD_MD_FLATIME |
926                                             OBD_MD_FLMTIME | OBD_MD_FLCTIME);
927                 rc = obd_setattr(sbi->ll_osc_exp, &oa, lsm, NULL);
928                 if (rc)
929                         CERROR("obd_setattr fails: rc=%d\n", rc);
930         }
931         RETURN(rc);
932 }
933
934 int ll_setattr(struct dentry *de, struct iattr *attr)
935 {
936         LBUG(); /* code is unused, but leave this in case of VFS changes */
937         RETURN(-ENOSYS);
938 }
939
940 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
941                        unsigned long max_age)
942 {
943         struct ll_sb_info *sbi = ll_s2sbi(sb);
944         struct obd_statfs obd_osfs;
945         int rc;
946         ENTRY;
947
948         rc = obd_statfs(class_exp2obd(sbi->ll_mdc_exp), osfs, max_age);
949         if (rc) {
950                 CERROR("mdc_statfs fails: rc = %d\n", rc);
951                 RETURN(rc);
952         }
953
954         osfs->os_type = sb->s_magic;
955
956         CDEBUG(D_SUPER, "MDC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
957                osfs->os_bavail, osfs->os_blocks, osfs->os_ffree,osfs->os_files);
958
959         rc = obd_statfs(class_exp2obd(sbi->ll_osc_exp), &obd_osfs, max_age);
960         if (rc) {
961                 CERROR("obd_statfs fails: rc = %d\n", rc);
962                 RETURN(rc);
963         }
964
965         CDEBUG(D_SUPER, "OSC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
966                obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
967                obd_osfs.os_files);
968
969         osfs->os_blocks = obd_osfs.os_blocks;
970         osfs->os_bfree = obd_osfs.os_bfree;
971         osfs->os_bavail = obd_osfs.os_bavail;
972
973         /* If we don't have as many objects free on the OST as inodes
974          * on the MDS, we reduce the total number of inodes to
975          * compensate, so that the "inodes in use" number is correct.
976          */
977         if (obd_osfs.os_ffree < osfs->os_ffree) {
978                 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
979                         obd_osfs.os_ffree;
980                 osfs->os_ffree = obd_osfs.os_ffree;
981         }
982
983         RETURN(rc);
984 }
985
986 int ll_statfs(struct super_block *sb, struct kstatfs *sfs)
987 {
988         struct obd_statfs osfs;
989         int rc;
990
991         CDEBUG(D_VFSTRACE, "VFS Op:\n");
992         lprocfs_counter_incr(ll_s2sbi(sb)->ll_stats, LPROC_LL_STAFS);
993
994         /* For now we will always get up-to-date statfs values, but in the
995          * future we may allow some amount of caching on the client (e.g.
996          * from QOS or lprocfs updates). */
997         rc = ll_statfs_internal(sb, &osfs, jiffies - 1);
998         if (rc)
999                 return rc;
1000
1001         statfs_unpack(sfs, &osfs);
1002
1003         if (sizeof(sfs->f_blocks) == 4) {
1004                 while (osfs.os_blocks > ~0UL) {
1005                         sfs->f_bsize <<= 1;
1006
1007                         osfs.os_blocks >>= 1;
1008                         osfs.os_bfree >>= 1;
1009                         osfs.os_bavail >>= 1;
1010                 }
1011         }
1012
1013         sfs->f_blocks = osfs.os_blocks;
1014         sfs->f_bfree = osfs.os_bfree;
1015         sfs->f_bavail = osfs.os_bavail;
1016
1017         return 0;
1018 }
1019
1020 void dump_lsm(int level, struct lov_stripe_md *lsm)
1021 {
1022         CDEBUG(level, "objid "LPX64", maxbytes "LPX64", magic 0x%08X, "
1023                "stripe_size %u, stripe_count %u\n",
1024                lsm->lsm_object_id, lsm->lsm_maxbytes, lsm->lsm_magic,
1025                lsm->lsm_stripe_size, lsm->lsm_stripe_count);
1026 }
1027
1028 void ll_update_inode(struct inode *inode, struct mds_body *body,
1029                      struct lov_stripe_md *lsm)
1030 {
1031         struct ll_inode_info *lli = ll_i2info(inode);
1032
1033         LASSERT ((lsm != NULL) == ((body->valid & OBD_MD_FLEASIZE) != 0));
1034         if (lsm != NULL) {
1035                 if (lli->lli_smd == NULL) {
1036                         lli->lli_smd = lsm;
1037                         lli->lli_maxbytes = lsm->lsm_maxbytes;
1038                         if (lli->lli_maxbytes > PAGE_CACHE_MAXBYTES)
1039                                 lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
1040                 } else {
1041                         if (memcmp(lli->lli_smd, lsm, sizeof(*lsm))) {
1042                                 CERROR("lsm mismatch for inode %ld\n",
1043                                        inode->i_ino);
1044                                 CERROR("lli_smd:\n");
1045                                 dump_lsm(D_ERROR, lli->lli_smd);
1046                                 CERROR("lsm:\n");
1047                                 dump_lsm(D_ERROR, lsm);
1048                                 LBUG();
1049                         }
1050                 }
1051                 if (lli->lli_smd != lsm)
1052                         obd_free_memmd(ll_i2obdexp(inode), &lsm);
1053         }
1054
1055         if (body->valid & OBD_MD_FLID)
1056                 inode->i_ino = body->ino;
1057         if (body->valid & OBD_MD_FLATIME)
1058                 LTIME_S(inode->i_atime) = body->atime;
1059         if (body->valid & OBD_MD_FLMTIME &&
1060             body->mtime > LTIME_S(inode->i_mtime)) {
1061                 CDEBUG(D_INODE, "setting ino %lu mtime from %lu to %u\n",
1062                        inode->i_ino, LTIME_S(inode->i_mtime), body->mtime);
1063                 LTIME_S(inode->i_mtime) = body->mtime;
1064         }
1065         if (body->valid & OBD_MD_FLCTIME &&
1066             body->ctime > LTIME_S(inode->i_ctime))
1067                 LTIME_S(inode->i_ctime) = body->ctime;
1068         if (body->valid & OBD_MD_FLMODE)
1069                 inode->i_mode = (inode->i_mode & S_IFMT)|(body->mode & ~S_IFMT);
1070         if (body->valid & OBD_MD_FLTYPE)
1071                 inode->i_mode = (inode->i_mode & ~S_IFMT)|(body->mode & S_IFMT);
1072         if (body->valid & OBD_MD_FLUID)
1073                 inode->i_uid = body->uid;
1074         if (body->valid & OBD_MD_FLGID)
1075                 inode->i_gid = body->gid;
1076         if (body->valid & OBD_MD_FLFLAGS)
1077                 inode->i_flags = body->flags;
1078         if (body->valid & OBD_MD_FLNLINK)
1079                 inode->i_nlink = body->nlink;
1080         if (body->valid & OBD_MD_FLGENER)
1081                 inode->i_generation = body->generation;
1082         if (body->valid & OBD_MD_FLRDEV)
1083 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1084                 inode->i_rdev = body->rdev;
1085 #else
1086                 inode->i_rdev = old_decode_dev(body->rdev);
1087 #endif
1088         if (body->valid & OBD_MD_FLSIZE)
1089                 inode->i_size = body->size;
1090         if (body->valid & OBD_MD_FLBLOCKS)
1091                 inode->i_blocks = body->blocks;
1092
1093         if (body->valid & OBD_MD_FLSIZE)
1094                 set_bit(LLI_F_HAVE_MDS_SIZE_LOCK, &lli->lli_flags);
1095 }
1096
1097 void ll_read_inode2(struct inode *inode, void *opaque)
1098 {
1099         struct lustre_md *md = opaque;
1100         struct ll_inode_info *lli = ll_i2info(inode);
1101         ENTRY;
1102
1103         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
1104                inode->i_generation, inode);
1105
1106         ll_lli_init(lli);
1107
1108         LASSERT(!lli->lli_smd);
1109
1110         /* Core attributes from the MDS first.  This is a new inode, and
1111          * the VFS doesn't zero times in the core inode so we have to do
1112          * it ourselves.  They will be overwritten by either MDS or OST
1113          * attributes - we just need to make sure they aren't newer. */
1114         LTIME_S(inode->i_mtime) = 0;
1115         LTIME_S(inode->i_atime) = 0;
1116         LTIME_S(inode->i_ctime) = 0;
1117         ll_update_inode(inode, md->body, md->lsm);
1118
1119         /* OIDEBUG(inode); */
1120
1121         if (S_ISREG(inode->i_mode)) {
1122                 inode->i_op = &ll_file_inode_operations;
1123                 inode->i_fop = &ll_file_operations;
1124                 inode->i_mapping->a_ops = &ll_aops;
1125                 EXIT;
1126         } else if (S_ISDIR(inode->i_mode)) {
1127                 inode->i_op = &ll_dir_inode_operations;
1128                 inode->i_fop = &ll_dir_operations;
1129                 inode->i_mapping->a_ops = &ll_dir_aops;
1130                 EXIT;
1131         } else if (S_ISLNK(inode->i_mode)) {
1132                 inode->i_op = &ll_fast_symlink_inode_operations;
1133                 EXIT;
1134         } else {
1135                 inode->i_op = &ll_special_inode_operations;
1136 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
1137                 init_special_inode(inode, inode->i_mode,
1138                                    kdev_t_to_nr(inode->i_rdev));
1139 #else
1140                 init_special_inode(inode, inode->i_mode, inode->i_rdev);
1141 #endif
1142                 EXIT;
1143         }
1144 }
1145
1146 int ll_iocontrol(struct inode *inode, struct file *file,
1147                  unsigned int cmd, unsigned long arg)
1148 {
1149         struct ll_sb_info *sbi = ll_i2sbi(inode);
1150         struct ptlrpc_request *req = NULL;
1151         int rc, flags = 0;
1152         ENTRY;
1153
1154         switch(cmd) {
1155         case EXT3_IOC_GETFLAGS: {
1156                 struct ll_fid fid;
1157                 unsigned long valid = OBD_MD_FLFLAGS;
1158                 struct mds_body *body;
1159
1160                 ll_inode2fid(&fid, inode);
1161                 rc = mdc_getattr(sbi->ll_mdc_exp, &fid, valid, 0, &req);
1162                 if (rc) {
1163                         CERROR("failure %d inode %lu\n", rc, inode->i_ino);
1164                         RETURN(-abs(rc));
1165                 }
1166
1167                 body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*body));
1168
1169                 if (body->flags & S_APPEND)
1170                         flags |= EXT3_APPEND_FL;
1171                 if (body->flags & S_IMMUTABLE)
1172                         flags |= EXT3_IMMUTABLE_FL;
1173                 if (body->flags & S_NOATIME)
1174                         flags |= EXT3_NOATIME_FL;
1175
1176                 ptlrpc_req_finished (req);
1177
1178                 RETURN(put_user(flags, (int *)arg));
1179         }
1180         case EXT3_IOC_SETFLAGS: {
1181                 struct mdc_op_data op_data;
1182                 struct iattr attr;
1183                 struct obdo *oa;
1184                 struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1185
1186                 if (get_user(flags, (int *)arg))
1187                         RETURN(-EFAULT);
1188
1189                 oa = obdo_alloc();
1190                 if (!oa)
1191                         RETURN(-ENOMEM);
1192
1193                 ll_prepare_mdc_op_data(&op_data, inode, NULL, NULL, 0, 0);
1194
1195                 memset(&attr, 0x0, sizeof(attr));
1196                 attr.ia_attr_flags = flags;
1197                 attr.ia_valid |= ATTR_ATTR_FLAG;
1198
1199                 rc = mdc_setattr(sbi->ll_mdc_exp, &op_data,
1200                                  &attr, NULL, 0, NULL, 0, &req);
1201                 if (rc) {
1202                         ptlrpc_req_finished(req);
1203                         if (rc != -EPERM && rc != -EACCES)
1204                                 CERROR("mdc_setattr fails: rc = %d\n", rc);
1205                         obdo_free(oa);
1206                         RETURN(rc);
1207                 }
1208                 ptlrpc_req_finished(req);
1209
1210                 oa->o_id = lsm->lsm_object_id;
1211                 oa->o_flags = flags;
1212                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLFLAGS;
1213
1214                 rc = obd_setattr(sbi->ll_osc_exp, oa, lsm, NULL);
1215                 obdo_free(oa);
1216                 if (rc) {
1217                         if (rc != -EPERM && rc != -EACCES)
1218                                 CERROR("mdc_setattr fails: rc = %d\n", rc);
1219                         RETURN(rc);
1220                 }
1221
1222                 if (flags & EXT3_APPEND_FL)
1223                         inode->i_flags |= S_APPEND;
1224                 else
1225                         inode->i_flags &= ~S_APPEND;
1226                 if (flags & EXT3_IMMUTABLE_FL)
1227                         inode->i_flags |= S_IMMUTABLE;
1228                 else
1229                         inode->i_flags &= ~S_IMMUTABLE;
1230                 if (flags & EXT3_NOATIME_FL)
1231                         inode->i_flags |= S_NOATIME;
1232                 else
1233                         inode->i_flags &= ~S_NOATIME;
1234
1235                 RETURN(0);
1236         }
1237         default:
1238                 RETURN(-ENOSYS);
1239         }
1240
1241         RETURN(0);
1242 }
1243
1244 void ll_umount_begin(struct super_block *sb)
1245 {
1246         struct ll_sb_info *sbi = ll_s2sbi(sb);
1247         struct obd_device *obd;
1248         struct obd_ioctl_data ioc_data = { 0 };
1249         ENTRY;
1250         CDEBUG(D_VFSTRACE, "VFS Op:\n");
1251
1252         obd = class_exp2obd(sbi->ll_mdc_exp);
1253         if (obd == NULL) {
1254                 CERROR("Invalid MDC connection handle "LPX64"\n",
1255                        sbi->ll_mdc_exp->exp_handle.h_cookie);
1256                 EXIT;
1257                 return;
1258         }
1259         obd->obd_no_recov = 1;
1260         obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_mdc_exp, sizeof ioc_data,
1261                       &ioc_data, NULL);
1262
1263         obd = class_exp2obd(sbi->ll_osc_exp);
1264         if (obd == NULL) {
1265                 CERROR("Invalid LOV connection handle "LPX64"\n",
1266                        sbi->ll_osc_exp->exp_handle.h_cookie);
1267                 EXIT;
1268                 return;
1269         }
1270
1271         obd->obd_no_recov = 1;
1272         obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_osc_exp, sizeof ioc_data,
1273                       &ioc_data, NULL);
1274
1275         /* Really, we'd like to wait until there are no requests outstanding,
1276          * and then continue.  For now, we just invalidate the requests,
1277          * schedule, and hope.
1278          */
1279         schedule();
1280
1281         EXIT;
1282 }
1283
1284 int ll_prep_inode(struct obd_export *exp, struct inode **inode,
1285                   struct ptlrpc_request *req, int offset,struct super_block *sb)
1286 {
1287         struct lustre_md md;
1288         int rc = 0;
1289
1290         rc = mdc_req2lustre_md(req, offset, exp, &md);
1291         if (rc)
1292                 RETURN(rc);
1293
1294         if (*inode) {
1295                 ll_update_inode(*inode, md.body, md.lsm);
1296         } else {
1297                 LASSERT(sb);
1298                 *inode = ll_iget(sb, md.body->ino, &md);
1299                 if (*inode == NULL || is_bad_inode(*inode)) {
1300                         /* free the lsm if we allocated one above */
1301                         if (md.lsm != NULL)
1302                                 obd_free_memmd(exp, &md.lsm);
1303                         rc = -ENOMEM;
1304                         CERROR("new_inode -fatal: rc %d\n", rc);
1305                 }
1306         }
1307
1308         RETURN(rc);
1309 }