Whamcloud - gitweb
Landing b_recovery
[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 ll_sb_info *sbi = ll_s2sbi(sb);
654         ENTRY;
655
656         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
657
658         lustre_common_put_super(sb);
659
660         if (sbi->ll_lmd != NULL) {
661                 char * cln_prof;
662                 int len = strlen(sbi->ll_lmd->lmd_profile) + sizeof("-clean")+1;
663                 int err;
664                 struct config_llog_instance cfg;
665
666                 cfg.cfg_instance = sbi->ll_instance;
667                 cfg.cfg_uuid = sbi->ll_sb_uuid;
668
669                 OBD_ALLOC(cln_prof, len);
670                 sprintf(cln_prof, "%s-clean", sbi->ll_lmd->lmd_profile);
671
672                 err = lustre_process_log(sbi->ll_lmd, cln_prof, &cfg, 0);
673                 if (err < 0) {
674                         CERROR("Unable to process log: %s, doing manual cleanup"
675                                "\n", cln_prof);
676                         lustre_manual_cleanup(sbi);
677                 }
678
679                 OBD_FREE(cln_prof, len);
680                 OBD_FREE(sbi->ll_lmd, sizeof(*sbi->ll_lmd));
681                 OBD_FREE(sbi->ll_instance, strlen(sbi->ll_instance) + 1);
682         }
683
684         lustre_free_sbi(sb);
685
686         EXIT;
687 } /* lustre_put_super */
688
689
690 struct inode *ll_inode_from_lock(struct ldlm_lock *lock)
691 {
692         struct inode *inode;
693         l_lock(&lock->l_resource->lr_namespace->ns_lock);
694         if (lock->l_ast_data)
695                 inode = igrab(lock->l_ast_data);
696         else
697                 inode = NULL;
698         l_unlock(&lock->l_resource->lr_namespace->ns_lock);
699         return inode;
700 }
701
702 static int null_if_equal(struct ldlm_lock *lock, void *data)
703 {
704         if (data == lock->l_ast_data)
705                 lock->l_ast_data = NULL;
706
707         if (lock->l_req_mode != lock->l_granted_mode)
708                 return LDLM_ITER_STOP;
709
710         return LDLM_ITER_CONTINUE;
711 }
712
713 void ll_clear_inode(struct inode *inode)
714 {
715         struct ll_fid fid;
716         struct ll_inode_info *lli = ll_i2info(inode);
717         struct ll_sb_info *sbi = ll_i2sbi(inode);
718         ENTRY;
719
720         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
721                inode->i_generation, inode);
722
723         ll_inode2fid(&fid, inode);
724         clear_bit(LLI_F_HAVE_MDS_SIZE_LOCK, &(ll_i2info(inode)->lli_flags));
725         mdc_change_cbdata(sbi->ll_mdc_exp, &fid, null_if_equal, inode);
726
727         if (lli->lli_smd)
728                 obd_change_cbdata(sbi->ll_osc_exp, lli->lli_smd,
729                                   null_if_equal, inode);
730
731         if (lli->lli_smd) {
732                 obd_free_memmd(sbi->ll_osc_exp, &lli->lli_smd);
733                 lli->lli_smd = NULL;
734         }
735
736         if (lli->lli_symlink_name) {
737                 OBD_FREE(lli->lli_symlink_name,
738                          strlen(lli->lli_symlink_name) + 1);
739                 lli->lli_symlink_name = NULL;
740         }
741
742         EXIT;
743 }
744
745 /* If this inode has objects allocated to it (lsm != NULL), then the OST
746  * object(s) determine the file size and mtime.  Otherwise, the MDS will
747  * keep these values until such a time that objects are allocated for it.
748  * We do the MDS operations first, as it is checking permissions for us.
749  * We don't to the MDS RPC if there is nothing that we want to store there,
750  * otherwise there is no harm in updating mtime/atime on the MDS if we are
751  * going to do an RPC anyways.
752  *
753  * If we are doing a truncate, we will send the mtime and ctime updates
754  * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
755  * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
756  * at the same time.
757  */
758 int ll_setattr_raw(struct inode *inode, struct iattr *attr)
759 {
760         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
761         struct ll_sb_info *sbi = ll_i2sbi(inode);
762         struct ptlrpc_request *request = NULL;
763         struct mdc_op_data op_data;
764         int ia_valid = attr->ia_valid;
765         int rc = 0;
766         ENTRY;
767
768         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu\n", inode->i_ino);
769         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_SETATTR);
770
771         if (ia_valid & ATTR_SIZE) {
772                 if (attr->ia_size > ll_file_maxbytes(inode)) {
773                         CDEBUG(D_INODE, "file too large %llu > "LPU64"\n",
774                                attr->ia_size, ll_file_maxbytes(inode));
775                         RETURN(-EFBIG);
776                 }
777
778                 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
779         }
780
781         /* POSIX: check before ATTR_*TIME_SET set (from inode_change_ok) */
782         if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET)) {
783                 if (current->fsuid != inode->i_uid && !capable(CAP_FOWNER))
784                         RETURN(-EPERM);
785         }
786
787         /* We mark all of the fields "set" so MDS/OST does not re-set them */
788         if (attr->ia_valid & ATTR_CTIME) {
789                 attr->ia_ctime = CURRENT_TIME;
790                 attr->ia_valid |= ATTR_CTIME_SET;
791         }
792         if (!(ia_valid & ATTR_ATIME_SET) && (attr->ia_valid & ATTR_ATIME)) {
793                 attr->ia_atime = CURRENT_TIME;
794                 attr->ia_valid |= ATTR_ATIME_SET;
795         }
796         if (!(ia_valid & ATTR_MTIME_SET) && (attr->ia_valid & ATTR_MTIME)) {
797                 attr->ia_mtime = CURRENT_TIME;
798                 attr->ia_valid |= ATTR_MTIME_SET;
799         }
800
801         if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
802                 CDEBUG(D_INODE, "setting mtime %lu, ctime %lu, now = %lu\n",
803                        LTIME_S(attr->ia_mtime), LTIME_S(attr->ia_ctime),
804                        LTIME_S(CURRENT_TIME));
805         if (lsm)
806                 attr->ia_valid &= ~ATTR_SIZE;
807
808         /* If only OST attributes being set on objects, don't do MDS RPC.
809          * In that case, we need to check permissions and update the local
810          * inode ourselves so we can call obdo_from_inode() always. */
811         if (ia_valid & (lsm ? ~(ATTR_SIZE | ATTR_FROM_OPEN | ATTR_RAW) : ~0)) {
812                 struct lustre_md md;
813                 ll_prepare_mdc_op_data(&op_data, inode, NULL, NULL, 0, 0);
814
815                 rc = mdc_setattr(sbi->ll_mdc_exp, &op_data,
816                                  attr, NULL, 0, NULL, 0, &request);
817
818                 if (rc) {
819                         ptlrpc_req_finished(request);
820                         if (rc != -EPERM && rc != -EACCES)
821                                 CERROR("mdc_setattr fails: rc = %d\n", rc);
822                         RETURN(rc);
823                 }
824
825                 rc = mdc_req2lustre_md(request, 0, sbi->ll_osc_exp, &md);
826                 if (rc) {
827                         ptlrpc_req_finished(request);
828                         RETURN(rc);
829                 }
830
831                 /* Won't invoke vmtruncate as we already cleared ATTR_SIZE,
832                  * but needed to set timestamps backwards on utime. */
833                 inode_setattr(inode, attr);
834                 ll_update_inode(inode, md.body, md.lsm);
835                 ptlrpc_req_finished(request);
836
837                 if (!lsm || !S_ISREG(inode->i_mode)) {
838                         CDEBUG(D_INODE, "no lsm: not setting attrs on OST\n");
839                         RETURN(0);
840                 }
841         } else {
842                 /* The OST doesn't check permissions, but the alternative is
843                  * a gratuitous RPC to the MDS.  We already rely on the client
844                  * to do read/write/truncate permission checks, so is mtime OK?
845                  */
846                 if (ia_valid & (ATTR_MTIME | ATTR_ATIME)) {
847                         /* from sys_utime() */
848                         if (!(ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))) {
849                                 if (current->fsuid != inode->i_uid &&
850                                     (rc = ll_permission(inode, MAY_WRITE, NULL)) != 0)
851                                         RETURN(rc);
852                         } else {
853                                 /* from inode_change_ok() */
854                                 if (current->fsuid != inode->i_uid &&
855                                     !capable(CAP_FOWNER))
856                                         RETURN(-EPERM);
857                         }
858                 }
859
860                 /* Won't invoke vmtruncate, as we already cleared ATTR_SIZE */
861                 inode_setattr(inode, attr);
862         }
863
864         /* We really need to get our PW lock before we change inode->i_size.
865          * If we don't we can race with other i_size updaters on our node, like
866          * ll_file_read.  We can also race with i_size propogation to other
867          * nodes through dirtying and writeback of final cached pages.  This
868          * last one is especially bad for racing o_append users on other 
869          * nodes. */
870         if (ia_valid & ATTR_SIZE) {
871                 struct ldlm_extent extent = { .start = attr->ia_size,
872                                               .end = OBD_OBJECT_EOF };
873                 struct lustre_handle lockh = { 0 };
874                 int err, ast_flags = 0;
875                 /* XXX when we fix the AST intents to pass the discard-range
876                  * XXX extent, make ast_flags always LDLM_AST_DISCARD_DATA
877                  * XXX here. */
878                 if (attr->ia_size == 0)
879                         ast_flags = LDLM_AST_DISCARD_DATA;
880
881                 /* bug 1639: avoid write/truncate i_sem/DLM deadlock */
882                 LASSERT(atomic_read(&inode->i_sem.count) <= 0);
883                 up(&inode->i_sem);
884                 rc = ll_extent_lock_no_validate(NULL, inode, lsm, LCK_PW,
885                                                 &extent, &lockh, ast_flags);
886                 down(&inode->i_sem);
887                 if (rc != ELDLM_OK)
888                         RETURN(rc);
889
890                 rc = vmtruncate(inode, attr->ia_size);
891                 if (rc == 0)
892                         set_bit(LLI_F_HAVE_OST_SIZE_LOCK,
893                                 &ll_i2info(inode)->lli_flags);
894
895                 //ll_try_done_writing(inode);
896
897                 /* unlock now as we don't mind others file lockers racing with
898                  * the mds updates below? */
899                 err = ll_extent_unlock(NULL, inode, lsm, LCK_PW, &lockh);
900                 if (err) {
901                         CERROR("ll_extent_unlock failed: %d\n", err);
902                         if (!rc)
903                                 rc = err;
904                 }
905         } else if (ia_valid & (ATTR_MTIME | ATTR_MTIME_SET)) {
906                 struct obdo oa;
907
908                 CDEBUG(D_INODE, "set mtime on OST inode %lu to %lu\n",
909                        inode->i_ino, LTIME_S(attr->ia_mtime));
910                 oa.o_id = lsm->lsm_object_id;
911                 oa.o_valid = OBD_MD_FLID;
912                 obdo_from_inode(&oa, inode, OBD_MD_FLTYPE | OBD_MD_FLATIME |
913                                             OBD_MD_FLMTIME | OBD_MD_FLCTIME);
914                 rc = obd_setattr(sbi->ll_osc_exp, &oa, lsm, NULL);
915                 if (rc)
916                         CERROR("obd_setattr fails: rc=%d\n", rc);
917         }
918         RETURN(rc);
919 }
920
921 int ll_setattr(struct dentry *de, struct iattr *attr)
922 {
923         LBUG(); /* code is unused, but leave this in case of VFS changes */
924         RETURN(-ENOSYS);
925 }
926
927 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
928                        unsigned long max_age)
929 {
930         struct ll_sb_info *sbi = ll_s2sbi(sb);
931         struct obd_statfs obd_osfs;
932         int rc;
933         ENTRY;
934
935         rc = obd_statfs(class_exp2obd(sbi->ll_mdc_exp), osfs, max_age);
936         if (rc) {
937                 CERROR("mdc_statfs fails: rc = %d\n", rc);
938                 RETURN(rc);
939         }
940
941         CDEBUG(D_SUPER, "MDC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
942                osfs->os_bavail, osfs->os_blocks, osfs->os_ffree,osfs->os_files);
943
944         rc = obd_statfs(class_exp2obd(sbi->ll_osc_exp), &obd_osfs, max_age);
945         if (rc) {
946                 CERROR("obd_statfs fails: rc = %d\n", rc);
947                 RETURN(rc);
948         }
949
950         CDEBUG(D_SUPER, "OSC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
951                obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
952                obd_osfs.os_files);
953
954         osfs->os_blocks = obd_osfs.os_blocks;
955         osfs->os_bfree = obd_osfs.os_bfree;
956         osfs->os_bavail = obd_osfs.os_bavail;
957
958         /* If we don't have as many objects free on the OST as inodes
959          * on the MDS, we reduce the total number of inodes to
960          * compensate, so that the "inodes in use" number is correct.
961          */
962         if (obd_osfs.os_ffree < osfs->os_ffree) {
963                 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
964                         obd_osfs.os_ffree;
965                 osfs->os_ffree = obd_osfs.os_ffree;
966         }
967
968         RETURN(rc);
969 }
970
971 int ll_statfs(struct super_block *sb, struct kstatfs *sfs)
972 {
973         struct obd_statfs osfs;
974         int rc;
975
976         CDEBUG(D_VFSTRACE, "VFS Op:\n");
977         lprocfs_counter_incr(ll_s2sbi(sb)->ll_stats, LPROC_LL_STAFS);
978
979         /* For now we will always get up-to-date statfs values, but in the
980          * future we may allow some amount of caching on the client (e.g.
981          * from QOS or lprocfs updates). */
982         rc = ll_statfs_internal(sb, &osfs, jiffies - 1);
983         if (rc)
984                 return rc;
985
986         statfs_unpack(sfs, &osfs);
987
988         if (sizeof(sfs->f_blocks) == 4) {
989                 while (osfs.os_blocks > ~0UL) {
990                         sfs->f_bsize <<= 1;
991
992                         osfs.os_blocks >>= 1;
993                         osfs.os_bfree >>= 1;
994                         osfs.os_bavail >>= 1;
995                 }
996         }
997
998         sfs->f_blocks = osfs.os_blocks;
999         sfs->f_bfree = osfs.os_bfree;
1000         sfs->f_bavail = osfs.os_bavail;
1001
1002         return 0;
1003 }
1004
1005 void dump_lsm(int level, struct lov_stripe_md *lsm)
1006 {
1007         CDEBUG(level, "objid "LPX64", maxbytes "LPX64", magic 0x%08X, "
1008                "stripe_size %u, stripe_count %u\n",
1009                lsm->lsm_object_id, lsm->lsm_maxbytes, lsm->lsm_magic,
1010                lsm->lsm_stripe_size, lsm->lsm_stripe_count);
1011 }
1012
1013 void ll_update_inode(struct inode *inode, struct mds_body *body,
1014                      struct lov_stripe_md *lsm)
1015 {
1016         struct ll_inode_info *lli = ll_i2info(inode);
1017
1018         LASSERT ((lsm != NULL) == ((body->valid & OBD_MD_FLEASIZE) != 0));
1019         if (lsm != NULL) {
1020                 if (lli->lli_smd == NULL) {
1021                         lli->lli_smd = lsm;
1022                         lli->lli_maxbytes = lsm->lsm_maxbytes;
1023                         if (lli->lli_maxbytes > PAGE_CACHE_MAXBYTES)
1024                                 lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
1025                 } else {
1026                         if (memcmp(lli->lli_smd, lsm, sizeof(*lsm))) {
1027                                 CERROR("lsm mismatch for inode %ld\n",
1028                                        inode->i_ino);
1029                                 CERROR("lli_smd:\n");
1030                                 dump_lsm(D_ERROR, lli->lli_smd);
1031                                 CERROR("lsm:\n");
1032                                 dump_lsm(D_ERROR, lsm);
1033                                 LBUG();
1034                         }
1035                 }
1036                 if (lli->lli_smd != lsm)
1037                         obd_free_memmd(ll_i2obdexp(inode), &lsm);
1038         }
1039
1040         if (body->valid & OBD_MD_FLID)
1041                 inode->i_ino = body->ino;
1042         if (body->valid & OBD_MD_FLATIME)
1043                 LTIME_S(inode->i_atime) = body->atime;
1044         if (body->valid & OBD_MD_FLMTIME &&
1045             body->mtime > LTIME_S(inode->i_mtime)) {
1046                 CDEBUG(D_INODE, "setting ino %lu mtime from %lu to %u\n",
1047                        inode->i_ino, LTIME_S(inode->i_mtime), body->mtime);
1048                 LTIME_S(inode->i_mtime) = body->mtime;
1049         }
1050         if (body->valid & OBD_MD_FLCTIME &&
1051             body->ctime > LTIME_S(inode->i_ctime))
1052                 LTIME_S(inode->i_ctime) = body->ctime;
1053         if (body->valid & OBD_MD_FLMODE)
1054                 inode->i_mode = (inode->i_mode & S_IFMT)|(body->mode & ~S_IFMT);
1055         if (body->valid & OBD_MD_FLTYPE)
1056                 inode->i_mode = (inode->i_mode & ~S_IFMT)|(body->mode & S_IFMT);
1057         if (body->valid & OBD_MD_FLUID)
1058                 inode->i_uid = body->uid;
1059         if (body->valid & OBD_MD_FLGID)
1060                 inode->i_gid = body->gid;
1061         if (body->valid & OBD_MD_FLFLAGS)
1062                 inode->i_flags = body->flags;
1063         if (body->valid & OBD_MD_FLNLINK)
1064                 inode->i_nlink = body->nlink;
1065         if (body->valid & OBD_MD_FLGENER)
1066                 inode->i_generation = body->generation;
1067         if (body->valid & OBD_MD_FLRDEV)
1068 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1069                 inode->i_rdev = body->rdev;
1070 #else
1071                 inode->i_rdev = old_decode_dev(body->rdev);
1072 #endif
1073         if (body->valid & OBD_MD_FLSIZE)
1074                 inode->i_size = body->size;
1075         if (body->valid & OBD_MD_FLBLOCKS)
1076                 inode->i_blocks = body->blocks;
1077
1078         if (body->valid & OBD_MD_FLSIZE)
1079                 set_bit(LLI_F_HAVE_MDS_SIZE_LOCK, &lli->lli_flags);
1080 }
1081
1082 void ll_read_inode2(struct inode *inode, void *opaque)
1083 {
1084         struct lustre_md *md = opaque;
1085         struct ll_inode_info *lli = ll_i2info(inode);
1086         ENTRY;
1087
1088         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
1089                inode->i_generation, inode);
1090
1091         ll_lli_init(lli);
1092
1093         LASSERT(!lli->lli_smd);
1094
1095         /* Core attributes from the MDS first.  This is a new inode, and
1096          * the VFS doesn't zero times in the core inode so we have to do
1097          * it ourselves.  They will be overwritten by either MDS or OST
1098          * attributes - we just need to make sure they aren't newer. */
1099         LTIME_S(inode->i_mtime) = 0;
1100         LTIME_S(inode->i_atime) = 0;
1101         LTIME_S(inode->i_ctime) = 0;
1102         ll_update_inode(inode, md->body, md->lsm);
1103
1104         /* OIDEBUG(inode); */
1105
1106         if (S_ISREG(inode->i_mode)) {
1107                 inode->i_op = &ll_file_inode_operations;
1108                 inode->i_fop = &ll_file_operations;
1109                 inode->i_mapping->a_ops = &ll_aops;
1110                 EXIT;
1111         } else if (S_ISDIR(inode->i_mode)) {
1112                 inode->i_op = &ll_dir_inode_operations;
1113                 inode->i_fop = &ll_dir_operations;
1114                 inode->i_mapping->a_ops = &ll_dir_aops;
1115                 EXIT;
1116         } else if (S_ISLNK(inode->i_mode)) {
1117                 inode->i_op = &ll_fast_symlink_inode_operations;
1118                 EXIT;
1119         } else {
1120                 inode->i_op = &ll_special_inode_operations;
1121 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
1122                 init_special_inode(inode, inode->i_mode,
1123                                    kdev_t_to_nr(inode->i_rdev));
1124 #else
1125                 init_special_inode(inode, inode->i_mode, inode->i_rdev);
1126 #endif
1127                 EXIT;
1128         }
1129 }
1130
1131 int ll_iocontrol(struct inode *inode, struct file *file,
1132                  unsigned int cmd, unsigned long arg)
1133 {
1134         struct ll_sb_info *sbi = ll_i2sbi(inode);
1135         struct ptlrpc_request *req = NULL;
1136         int rc, flags = 0;
1137         ENTRY;
1138
1139         switch(cmd) {
1140         case EXT3_IOC_GETFLAGS: {
1141                 struct ll_fid fid;
1142                 unsigned long valid = OBD_MD_FLFLAGS;
1143                 struct mds_body *body;
1144
1145                 ll_inode2fid(&fid, inode);
1146                 rc = mdc_getattr(sbi->ll_mdc_exp, &fid, valid, 0, &req);
1147                 if (rc) {
1148                         CERROR("failure %d inode %lu\n", rc, inode->i_ino);
1149                         RETURN(-abs(rc));
1150                 }
1151
1152                 body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*body));
1153
1154                 if (body->flags & S_APPEND)
1155                         flags |= EXT3_APPEND_FL;
1156                 if (body->flags & S_IMMUTABLE)
1157                         flags |= EXT3_IMMUTABLE_FL;
1158                 if (body->flags & S_NOATIME)
1159                         flags |= EXT3_NOATIME_FL;
1160
1161                 ptlrpc_req_finished (req);
1162
1163                 RETURN(put_user(flags, (int *)arg));
1164         }
1165         case EXT3_IOC_SETFLAGS: {
1166                 struct mdc_op_data op_data;
1167                 struct iattr attr;
1168                 struct obdo *oa;
1169                 struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1170
1171                 if (get_user(flags, (int *)arg))
1172                         RETURN(-EFAULT);
1173
1174                 oa = obdo_alloc();
1175                 if (!oa)
1176                         RETURN(-ENOMEM);
1177
1178                 ll_prepare_mdc_op_data(&op_data, inode, NULL, NULL, 0, 0);
1179
1180                 memset(&attr, 0x0, sizeof(attr));
1181                 attr.ia_attr_flags = flags;
1182                 attr.ia_valid |= ATTR_ATTR_FLAG;
1183
1184                 rc = mdc_setattr(sbi->ll_mdc_exp, &op_data,
1185                                  &attr, NULL, 0, NULL, 0, &req);
1186                 if (rc) {
1187                         ptlrpc_req_finished(req);
1188                         if (rc != -EPERM && rc != -EACCES)
1189                                 CERROR("mdc_setattr fails: rc = %d\n", rc);
1190                         obdo_free(oa);
1191                         RETURN(rc);
1192                 }
1193                 ptlrpc_req_finished(req);
1194
1195                 oa->o_id = lsm->lsm_object_id;
1196                 oa->o_flags = flags;
1197                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLFLAGS;
1198
1199                 rc = obd_setattr(sbi->ll_osc_exp, oa, lsm, NULL);
1200                 obdo_free(oa);
1201                 if (rc) {
1202                         if (rc != -EPERM && rc != -EACCES)
1203                                 CERROR("mdc_setattr fails: rc = %d\n", rc);
1204                         RETURN(rc);
1205                 }
1206
1207                 if (flags & EXT3_APPEND_FL)
1208                         inode->i_flags |= S_APPEND;
1209                 else
1210                         inode->i_flags &= ~S_APPEND;
1211                 if (flags & EXT3_IMMUTABLE_FL)
1212                         inode->i_flags |= S_IMMUTABLE;
1213                 else
1214                         inode->i_flags &= ~S_IMMUTABLE;
1215                 if (flags & EXT3_NOATIME_FL)
1216                         inode->i_flags |= S_NOATIME;
1217                 else
1218                         inode->i_flags &= ~S_NOATIME;
1219
1220                 RETURN(0);
1221         }
1222         default:
1223                 RETURN(-ENOSYS);
1224         }
1225
1226         RETURN(0);
1227 }
1228
1229 void ll_umount_begin(struct super_block *sb)
1230 {
1231         struct ll_sb_info *sbi = ll_s2sbi(sb);
1232         struct obd_device *obd;
1233         struct obd_ioctl_data ioc_data = { 0 };
1234         ENTRY;
1235         CDEBUG(D_VFSTRACE, "VFS Op:\n");
1236
1237         obd = class_exp2obd(sbi->ll_mdc_exp);
1238         if (obd == NULL) {
1239                 CERROR("Invalid MDC connection handle "LPX64"\n",
1240                        sbi->ll_mdc_exp->exp_handle.h_cookie);
1241                 EXIT;
1242                 return;
1243         }
1244         obd->obd_no_recov = 1;
1245         obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_mdc_exp, sizeof ioc_data,
1246                       &ioc_data, NULL);
1247
1248         obd = class_exp2obd(sbi->ll_osc_exp);
1249         if (obd == NULL) {
1250                 CERROR("Invalid LOV connection handle "LPX64"\n",
1251                        sbi->ll_osc_exp->exp_handle.h_cookie);
1252                 EXIT;
1253                 return;
1254         }
1255
1256         obd->obd_no_recov = 1;
1257         obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_osc_exp, sizeof ioc_data,
1258                       &ioc_data, NULL);
1259
1260         /* Really, we'd like to wait until there are no requests outstanding,
1261          * and then continue.  For now, we just invalidate the requests,
1262          * schedule, and hope.
1263          */
1264         schedule();
1265
1266         EXIT;
1267 }
1268
1269 int ll_prep_inode(struct obd_export *exp, struct inode **inode,
1270                   struct ptlrpc_request *req, int offset,struct super_block *sb)
1271 {
1272         struct lustre_md md;
1273         int rc = 0;
1274
1275         rc = mdc_req2lustre_md(req, offset, exp, &md);
1276         if (rc)
1277                 RETURN(rc);
1278
1279         if (*inode) {
1280                 ll_update_inode(*inode, md.body, md.lsm);
1281         } else {
1282                 LASSERT(sb);
1283                 *inode = ll_iget(sb, md.body->ino, &md);
1284                 if (*inode == NULL || is_bad_inode(*inode)) {
1285                         /* free the lsm if we allocated one above */
1286                         if (md.lsm != NULL)
1287                                 obd_free_memmd(exp, &md.lsm);
1288                         rc = -ENOMEM;
1289                         CERROR("new_inode -fatal: rc %d\n", rc);
1290                 }
1291         }
1292
1293         RETURN(rc);
1294 }