Whamcloud - gitweb
f0190acc9914c7fe65c008ccf9aedb79eff0e2c3
[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/types.h>
28 #include <linux/random.h>
29 #include <linux/version.h>
30
31 #include <linux/lustre_lite.h>
32 #include <linux/lustre_ha.h>
33 #include <linux/lustre_dlm.h>
34 #include <linux/lprocfs_status.h>
35 #include <linux/lustre_acl.h>
36 #include "llite_internal.h"
37
38 kmem_cache_t *ll_file_data_slab;
39 kmem_cache_t *ll_intent_slab;
40
41 extern struct address_space_operations ll_aops;
42 extern struct address_space_operations ll_dir_aops;
43
44 #ifndef log2
45 #define log2(n) ffz(~(n))
46 #endif
47
48 struct ll_sb_info *lustre_init_sbi(struct super_block *sb)
49 {
50         struct ll_sb_info *sbi = NULL;
51         class_uuid_t uuid;
52         ENTRY;
53
54         OBD_ALLOC(sbi, sizeof(*sbi));
55         if (!sbi)
56                 RETURN(NULL);
57
58         spin_lock_init(&sbi->ll_lock);
59         INIT_LIST_HEAD(&sbi->ll_pglist);
60         sbi->ll_pglist_gen = 0;
61         if (num_physpages < SBI_DEFAULT_RA_MAX / 4)
62                 sbi->ll_ra_info.ra_max_pages = num_physpages / 4;
63         else
64                 sbi->ll_ra_info.ra_max_pages = SBI_DEFAULT_RA_MAX;
65         INIT_LIST_HEAD(&sbi->ll_conn_chain);
66         INIT_HLIST_HEAD(&sbi->ll_orphan_dentry_list);
67         INIT_LIST_HEAD(&sbi->ll_mnt_list);
68         
69         sema_init(&sbi->ll_gns_sem, 1);
70         spin_lock_init(&sbi->ll_gns_lock);
71         INIT_LIST_HEAD(&sbi->ll_gns_sbi_head);
72         init_waitqueue_head(&sbi->ll_gns_waitq);
73         init_completion(&sbi->ll_gns_mount_finished);
74
75         /* this later may be reset via /proc/fs/... */
76         memcpy(sbi->ll_gns_oname, ".mntinfo", strlen(".mntinfo"));
77         sbi->ll_gns_oname[strlen(sbi->ll_gns_oname)] = '\0';
78         
79         /* this later may be reset via /proc/fs/... */
80         memcpy(sbi->ll_gns_upcall, "/usr/sbin/gns_upcall",
81                strlen("/usr/sbin/gns_upcall"));
82         sbi->ll_gns_upcall[strlen(sbi->ll_gns_upcall)] = '\0';
83
84         /* default values, may be changed via /proc/fs/... */
85         sbi->ll_gns_state = LL_GNS_IDLE;
86         sbi->ll_gns_pending_dentry = NULL;
87         atomic_set(&sbi->ll_gns_enabled, 1);
88         sbi->ll_gns_tick = GNS_TICK_TIMEOUT;
89         sbi->ll_gns_timeout = GNS_MOUNT_TIMEOUT;
90
91         sbi->ll_gns_timer.data = (unsigned long)sbi;
92         sbi->ll_gns_timer.function = ll_gns_timer_callback;
93         init_timer(&sbi->ll_gns_timer);
94
95         ll_set_sbi(sb, sbi);
96
97         generate_random_uuid(uuid);
98         class_uuid_unparse(uuid, &sbi->ll_sb_uuid);
99         RETURN(sbi);
100 }
101
102 void lustre_free_sbi(struct super_block *sb)
103 {
104         struct ll_sb_info *sbi = ll_s2sbi(sb);
105         ENTRY;
106
107         if (sbi != NULL) {
108                 list_del(&sbi->ll_gns_sbi_head);
109                 del_timer(&sbi->ll_gns_timer);
110                 OBD_FREE(sbi, sizeof(*sbi));
111         }
112         ll_set_sbi(sb, NULL);
113         EXIT;
114 }
115
116 int lustre_init_dt_desc(struct ll_sb_info *sbi)
117 {
118         int valsize, rc;
119         ENTRY;
120         
121         valsize = sizeof(sbi->ll_dt_desc);
122         memset(&sbi->ll_dt_desc, 0, sizeof(sbi->ll_dt_desc));
123         rc = obd_get_info(sbi->ll_dt_exp, strlen("lovdesc") + 1,
124                           "lovdesc", &valsize, &sbi->ll_dt_desc);
125         RETURN(rc);
126 }
127
128 extern struct dentry_operations ll_d_ops;
129
130 int lustre_common_fill_super(struct super_block *sb, char *lmv, char *lov,
131                              int async, char *security, __u32 *nllu,
132                              __u64 *remote)
133 {
134         struct ll_sb_info *sbi = ll_s2sbi(sb);
135         struct ptlrpc_request *request = NULL;
136         struct lustre_handle dt_conn = {0, };
137         struct lustre_handle md_conn = {0, };
138         struct obd_connect_data *data;
139         struct inode *root = NULL;
140         struct obd_device *obd;
141         struct obd_statfs osfs;
142         struct lustre_md md;
143         kdev_t devno;
144         int err;
145         __u32 valsize;
146         ENTRY;
147
148         obd = class_name2obd(lmv);
149         if (!obd) {
150                 CERROR("MDC %s: not setup or attached\n", lmv);
151                 RETURN(-EINVAL);
152         }
153         obd_set_info(obd->obd_self_export, strlen("async"), "async",
154                      sizeof(async), &async);
155
156         if ((*remote & (OBD_CONNECT_LOCAL | OBD_CONNECT_REMOTE)) ==
157             (OBD_CONNECT_LOCAL | OBD_CONNECT_REMOTE)) {
158                 CERROR("wrong remote flag "LPX64"\n", *remote);
159                 RETURN(-EINVAL);
160         }
161
162         OBD_ALLOC(data, sizeof(*data));
163         if (!data)
164                 RETURN(-ENOMEM);
165
166         data->ocd_connect_flags |= *remote & (OBD_CONNECT_LOCAL |
167                                               OBD_CONNECT_REMOTE);
168         memcpy(data->ocd_nllu, nllu, sizeof(data->ocd_nllu));
169
170         if (security == NULL)
171                 security = "null";
172
173         err = obd_set_info(obd->obd_self_export, strlen("sec"), "sec",
174                            strlen(security), security);
175         if (err) {
176                 CERROR("LMV %s: failed to set security %s, err %d\n",
177                         lmv, security, err);
178                 OBD_FREE(data, sizeof(*data));
179                 RETURN(err);
180         }
181
182         if (proc_lustre_fs_root) {
183                 err = lprocfs_register_mountpoint(proc_lustre_fs_root, sb,
184                                                   lov, lmv);
185                 if (err < 0)
186                         CERROR("could not register mount in /proc/lustre");
187         }
188
189         err = obd_connect(&md_conn, obd, &sbi->ll_sb_uuid, data,
190                           OBD_OPT_REAL_CLIENT);
191         if (err == -EBUSY) {
192                 CERROR("An MDS (lmv %s) is performing recovery, of which this"
193                        " client is not a part.  Please wait for recovery to "
194                        "complete, abort, or time out.\n", lmv);
195                 GOTO(out, err);
196         } else if (err) {
197                 CERROR("cannot connect to %s: rc = %d\n", lmv, err);
198                 GOTO(out, err);
199         }
200         sbi->ll_md_exp = class_conn2export(&md_conn);
201         err = obd_statfs(obd, &osfs, jiffies - HZ);
202         if (err)
203                 GOTO(out_lmv, err);
204
205         if (!osfs.os_bsize) {
206                 CERROR("Invalid block size is detected.");
207                 GOTO(out_lmv, err);
208         }
209
210         sb->s_magic = LL_SUPER_MAGIC;
211         sb->s_blocksize = osfs.os_bsize;
212         sb->s_blocksize_bits = log2(osfs.os_bsize);
213         sb->s_maxbytes = PAGE_CACHE_MAXBYTES;
214        
215         devno = get_uuid2int(sbi->ll_md_exp->exp_obd->obd_uuid.uuid, 
216                              strlen(sbi->ll_md_exp->exp_obd->obd_uuid.uuid));
217
218         sb->s_dev = devno;
219
220         /* after statfs, we are supposed to have connected to MDSs,
221          * so it's ok to check remote flag returned.
222          */
223         valsize = sizeof(&sbi->ll_remote);
224         err = obd_get_info(sbi->ll_md_exp, strlen("remote_flag"), "remote_flag",
225                            &valsize, &sbi->ll_remote);
226         if (err) {
227                 CERROR("fail to obtain remote flag\n");
228                 GOTO(out, err);
229         }
230
231         obd = class_name2obd(lov);
232         if (!obd) {
233                 CERROR("OSC %s: not setup or attached\n", lov);
234                 GOTO(out_lmv, err);
235         }
236         obd_set_info(obd->obd_self_export, strlen("async"), "async",
237                      sizeof(async), &async);
238
239         err = obd_connect(&dt_conn, obd, &sbi->ll_sb_uuid, data,
240                           OBD_OPT_REAL_CLIENT);
241         if (err == -EBUSY) {
242                 CERROR("An OST (lov %s) is performing recovery, of which this"
243                        " client is not a part.  Please wait for recovery to "
244                        "complete, abort, or time out.\n", lov);
245                 GOTO(out, err);
246         } else if (err) {
247                 CERROR("cannot connect to %s: rc = %d\n", lov, err);
248                 GOTO(out_lmv, err);
249         }
250         sbi->ll_dt_exp = class_conn2export(&dt_conn);
251
252         err = lustre_init_dt_desc(sbi);
253         if (err == 0) {
254                 int mdsize = obd_size_diskmd(sbi->ll_dt_exp, NULL);
255                 obd_init_ea_size(sbi->ll_md_exp, mdsize,
256                                  sbi->ll_dt_desc.ld_tgt_count *
257                                  sizeof(struct llog_cookie));
258         }
259         
260         err = md_getstatus(sbi->ll_md_exp, &sbi->ll_rootid);
261         if (err) {
262                 CERROR("cannot mds_connect: rc = %d\n", err);
263                 GOTO(out_lov, err);
264         }
265         CDEBUG(D_SUPER, "rootid "DLID4"\n", OLID4(&sbi->ll_rootid));
266
267         sb->s_op = &lustre_super_operations;
268
269         /* make root inode
270          * XXX: move this to after cbd setup? */
271         err = md_getattr(sbi->ll_md_exp, &sbi->ll_rootid,
272                          (OBD_MD_FLNOTOBD | OBD_MD_FLBLOCKS | OBD_MD_FID), NULL, 0,
273                          0, &request);
274         if (err) {
275                 CERROR("md_getattr failed for root: rc = %d\n", err);
276                 GOTO(out_lov, err);
277         }
278
279         err = mdc_req2lustre_md(sbi->ll_md_exp, request, 0, 
280                                 sbi->ll_dt_exp, &md);
281         if (err) {
282                 CERROR("failed to understand root inode md: rc = %d\n", err);
283                 ptlrpc_req_finished(request);
284                 GOTO(out_lov, err);
285         }
286
287         LASSERT(id_ino(&sbi->ll_rootid) != 0);
288         root = ll_iget(sb, id_ino(&sbi->ll_rootid), &md);
289
290         ptlrpc_req_finished(request);
291
292         if (root == NULL || is_bad_inode(root)) {
293                 if (md.lsm != NULL)
294                     obd_free_memmd(sbi->ll_dt_exp, &md.lsm);
295                 if (md.mea != NULL)
296                     obd_free_memmd(sbi->ll_md_exp,
297                                    (struct lov_stripe_md**)&md.mea);
298                 CERROR("lustre_lite: bad iget4 for root\n");
299                 GOTO(out_root, err = -EBADF);
300         }
301
302         err = ll_close_thread_start(&sbi->ll_lcq);
303         if (err) {
304                 CERROR("cannot start close thread: rc %d\n", err);
305                 GOTO(out_root, err);
306         }
307
308         ll_gns_add_timer(sbi);
309
310         /* making vm readahead 0 for 2.4.x. In the case of 2.6.x,
311            backing dev info assigned to inode mapping is used for
312            determining maximal readahead. */
313 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)) && \
314     !defined(KERNEL_HAS_AS_MAX_READAHEAD)
315         /* bug 2805 - set VM readahead to zero */
316         vm_max_readahead = vm_min_readahead = 0;
317 #endif
318
319         sb->s_root = d_alloc_root(root);
320         sb->s_root->d_op = &ll_d_ops;
321
322         sb->s_flags |= MS_POSIXACL;
323 #ifdef S_PDIROPS
324         CWARN("Enabling PDIROPS\n");
325         sb->s_flags |= S_PDIROPS;
326 #endif
327
328         if (data != NULL)
329                 OBD_FREE(data, sizeof(*data));
330         RETURN(err);
331 out_root:
332         if (root)
333                 iput(root);
334 out_lov:
335         obd_disconnect(sbi->ll_dt_exp, 0);
336 out_lmv:
337         obd_disconnect(sbi->ll_md_exp, 0);
338 out:
339         if (data != NULL)
340                 OBD_FREE(data, sizeof(*data));
341         lprocfs_unregister_mountpoint(sbi);
342         return err;
343 }
344
345 void lustre_common_put_super(struct super_block *sb)
346 {
347         struct ll_sb_info *sbi = ll_s2sbi(sb);
348         struct hlist_node *tmp, *next;
349         ENTRY;
350
351         ll_gns_del_timer(sbi);
352         ll_close_thread_shutdown(sbi->ll_lcq);
353
354         list_del(&sbi->ll_conn_chain);
355         obd_disconnect(sbi->ll_dt_exp, 0);
356
357         lprocfs_unregister_mountpoint(sbi);
358         if (sbi->ll_proc_root) {
359                 lprocfs_remove(sbi->ll_proc_root);
360                 sbi->ll_proc_root = NULL;
361         }
362
363         obd_disconnect(sbi->ll_md_exp, 0);
364
365         // We do this to get rid of orphaned dentries. That is not really trw.
366         hlist_for_each_safe(tmp, next, &sbi->ll_orphan_dentry_list) {
367                 struct dentry *dentry = hlist_entry(tmp, struct dentry, d_hash);
368                 CWARN("orphan dentry %.*s (%p->%p) at unmount\n",
369                       dentry->d_name.len, dentry->d_name.name, dentry, next);
370                 shrink_dcache_parent(dentry);
371         }
372         EXIT;
373 }
374
375 char *ll_read_opt(const char *opt, char *data)
376 {
377         char *value;
378         char *retval;
379         ENTRY;
380
381         CDEBUG(D_SUPER, "option: %s, data %s\n", opt, data);
382         if (strncmp(opt, data, strlen(opt)))
383                 RETURN(NULL);
384         if ((value = strchr(data, '=')) == NULL)
385                 RETURN(NULL);
386
387         value++;
388         OBD_ALLOC(retval, strlen(value) + 1);
389         if (!retval) {
390                 CERROR("out of memory!\n");
391                 RETURN(NULL);
392         }
393
394         memcpy(retval, value, strlen(value)+1);
395         CDEBUG(D_SUPER, "Assigned option: %s, value %s\n", opt, retval);
396         RETURN(retval);
397 }
398
399 int ll_set_opt(const char *opt, char *data, int fl)
400 {
401         ENTRY;
402
403         CDEBUG(D_SUPER, "option: %s, data %s\n", opt, data);
404         if (strncmp(opt, data, strlen(opt)))
405                 RETURN(0);
406         else
407                 RETURN(fl);
408 }
409
410 void ll_options(char *options, char **lov, char **lmv, char **sec, 
411                 int *async, int *flags)
412 {
413         char *this_char;
414 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
415         char *opt_ptr = options;
416 #endif
417         ENTRY;
418
419         if (!options) {
420                 EXIT;
421                 return;
422         }
423
424         *async = 0;
425 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
426         for (this_char = strtok (options, ",");
427              this_char != NULL;
428              this_char = strtok (NULL, ",")) {
429 #else
430         while ((this_char = strsep (&opt_ptr, ",")) != NULL) {
431 #endif
432                 CDEBUG(D_SUPER, "this_char %s\n", this_char);
433                 if (!*lov && (*lov = ll_read_opt("osc", this_char)))
434                         continue;
435                 if (!*lmv && (*lmv = ll_read_opt("mdc", this_char)))
436                         continue;
437                 if (!strncmp(this_char, "lasync", strlen("lasync"))) {
438                         *async = 1;
439                         continue;
440                 }
441                 if (!*sec && (*sec = ll_read_opt("sec", this_char)))
442                         continue;
443                 if (!(*flags & LL_SBI_NOLCK) &&
444                     ((*flags) = (*flags) |
445                                 ll_set_opt("nolock", this_char,
446                                            LL_SBI_NOLCK)))
447                         continue;
448         }
449         
450         EXIT;
451 }
452
453 void ll_lli_init(struct ll_inode_info *lli)
454 {
455         sema_init(&lli->lli_open_sem, 1);
456         sema_init(&lli->lli_size_sem, 1);
457         lli->lli_flags = 0;
458         lli->lli_size_pid = 0;
459         lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
460         spin_lock_init(&lli->lli_lock);
461         INIT_LIST_HEAD(&lli->lli_pending_write_llaps);
462         lli->lli_inode_magic = LLI_INODE_MAGIC;
463         memset(&lli->lli_id, 0, sizeof(lli->lli_id));
464         sema_init(&lli->lli_och_sem, 1);
465         lli->lli_mds_read_och = lli->lli_mds_write_och = NULL;
466         lli->lli_mds_exec_och = NULL;
467         lli->lli_open_fd_read_count = lli->lli_open_fd_write_count = 0;
468         lli->lli_open_fd_exec_count = 0;
469 }
470
471 int ll_fill_super(struct super_block *sb, void *data, int silent)
472 {
473         struct ll_sb_info *sbi;
474         char *lov = NULL;
475         char *lmv = NULL;
476         int async, err;
477         char *sec = NULL;
478         __u32 nllu[2] = { NOBODY_UID, NOBODY_GID };
479         __u64 remote_flag = 0;    
480         ENTRY;
481
482         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
483
484         sbi = lustre_init_sbi(sb);
485         if (!sbi)
486                 RETURN(-ENOMEM);
487
488         sbi->ll_flags |= LL_SBI_READAHEAD;
489         ll_options(data, &lov, &lmv, &sec, &async, &sbi->ll_flags);
490
491         if (!lov) {
492                 CERROR("no osc\n");
493                 GOTO(out, err = -EINVAL);
494         }
495
496         if (!lmv) {
497                 CERROR("no mdc\n");
498                 GOTO(out, err = -EINVAL);
499         }
500         
501         err = lustre_common_fill_super(sb, lmv, lov, async, sec, nllu,
502                                        &remote_flag);
503         EXIT;
504 out:
505         if (err)
506                 lustre_free_sbi(sb);
507
508         if (sec)
509                 OBD_FREE(sec, strlen(sec) + 1);
510         if (lmv)
511                 OBD_FREE(lmv, strlen(lmv) + 1);
512         if (lov)
513                 OBD_FREE(lov, strlen(lov) + 1);
514         return err;
515 } /* ll_read_super */
516
517 static int lustre_process_log(struct lustre_mount_data *lmd, char *profile,
518                               struct config_llog_instance *cfg, int allow_recov)
519 {
520         struct lustre_cfg *lcfg = NULL;
521         struct lustre_cfg_bufs bufs;
522         struct portals_cfg pcfg;
523         char *peer = "MDS_PEER_UUID";
524         struct obd_device *obd;
525         struct lustre_handle md_conn = {0, };
526         struct obd_export *exp;
527         char *name = "mdc_dev";
528         class_uuid_t uuid;
529         struct obd_uuid lmv_uuid;
530         struct llog_ctxt *ctxt;
531         int rc = 0, err = 0;
532         ENTRY;
533
534         if (lmd_bad_magic(lmd))
535                 RETURN(-EINVAL);
536
537         generate_random_uuid(uuid);
538         class_uuid_unparse(uuid, &lmv_uuid);
539
540         if (lmd->lmd_local_nid) {
541                 PCFG_INIT(pcfg, NAL_CMD_REGISTER_MYNID);
542                 pcfg.pcfg_nal = lmd->lmd_nal;
543                 pcfg.pcfg_nid = lmd->lmd_local_nid;
544                 rc = libcfs_nal_cmd(&pcfg);
545                 if (rc < 0)
546                         GOTO(out, rc);
547         }
548
549         if (lmd->lmd_nal == SOCKNAL ||
550             lmd->lmd_nal == OPENIBNAL ||
551             lmd->lmd_nal == IIBNAL ||
552             lmd->lmd_nal == VIBNAL ||
553             lmd->lmd_nal == RANAL) {
554                 PCFG_INIT(pcfg, NAL_CMD_ADD_PEER);
555                 pcfg.pcfg_nal     = lmd->lmd_nal;
556                 pcfg.pcfg_nid     = lmd->lmd_server_nid;
557                 pcfg.pcfg_id      = lmd->lmd_server_ipaddr;
558                 pcfg.pcfg_misc    = lmd->lmd_port;
559                 rc = libcfs_nal_cmd(&pcfg);
560                 if (rc < 0)
561                         GOTO(out, rc);
562         }
563         lustre_cfg_bufs_reset(&bufs, name);
564         lustre_cfg_bufs_set_string(&bufs, 1, peer);
565
566         lcfg = lustre_cfg_new(LCFG_ADD_UUID, &bufs);
567         lcfg->lcfg_nal = lmd->lmd_nal;
568         lcfg->lcfg_nid = lmd->lmd_server_nid;
569         LASSERT(lcfg->lcfg_nal);
570         LASSERT(lcfg->lcfg_nid);
571         err = class_process_config(lcfg);
572         lustre_cfg_free(lcfg);
573         if (err < 0)
574                 GOTO(out_del_conn, err);
575
576         lustre_cfg_bufs_reset(&bufs, name);
577         lustre_cfg_bufs_set_string(&bufs, 1, LUSTRE_MDC_NAME);
578         lustre_cfg_bufs_set_string(&bufs, 2, lmv_uuid.uuid);
579
580         lcfg = lustre_cfg_new(LCFG_ATTACH, &bufs);
581         err = class_process_config(lcfg);
582         lustre_cfg_free(lcfg);
583         if (err < 0)
584                 GOTO(out_del_uuid, err);
585
586         lustre_cfg_bufs_reset(&bufs, name);
587         lustre_cfg_bufs_set_string(&bufs, 1, lmd->lmd_mds);
588         lustre_cfg_bufs_set_string(&bufs, 2, peer);
589
590         lcfg = lustre_cfg_new(LCFG_SETUP, &bufs);
591         err = class_process_config(lcfg);
592         lustre_cfg_free(lcfg);
593         if (err < 0)
594                 GOTO(out_detach, err);
595
596         obd = class_name2obd(name);
597         if (obd == NULL)
598                 GOTO(out_cleanup, rc = -EINVAL);
599
600         rc = obd_set_info(obd->obd_self_export, strlen("sec"), "sec",
601                           strlen(lmd->lmd_security), lmd->lmd_security);
602         if (rc)
603                 GOTO(out_cleanup, rc);
604
605         /* Disable initial recovery on this import */
606         rc = obd_set_info(obd->obd_self_export,
607                           strlen("initial_recov"), "initial_recov",
608                           sizeof(allow_recov), &allow_recov);
609         if (rc)
610                 GOTO(out_cleanup, rc);
611
612         rc = obd_connect(&md_conn, obd, &lmv_uuid, NULL, 0);
613         if (rc) {
614                 CERROR("cannot connect to %s: rc = %d\n", lmd->lmd_mds, rc);
615                 GOTO(out_cleanup, rc);
616         }
617
618         exp = class_conn2export(&md_conn);
619
620         ctxt = llog_get_context(&exp->exp_obd->obd_llogs,LLOG_CONFIG_REPL_CTXT);
621         rc = class_config_process_llog(ctxt, profile, cfg);
622         if (rc)
623                 CERROR("class_config_process_llog failed: rc = %d\n", rc);
624
625         err = obd_disconnect(exp, 0);
626         
627         EXIT;
628 out_cleanup:
629         lustre_cfg_bufs_reset(&bufs, name);
630         lcfg = lustre_cfg_new(LCFG_CLEANUP, &bufs);
631         err = class_process_config(lcfg);
632         lustre_cfg_free(lcfg);
633         if (err < 0)
634                 GOTO(out, err);
635 out_detach:
636         lustre_cfg_bufs_reset(&bufs, name);
637         lcfg = lustre_cfg_new(LCFG_DETACH, &bufs);
638         err = class_process_config(lcfg);
639         lustre_cfg_free(lcfg);
640         if (err < 0)
641                 GOTO(out, err);
642
643 out_del_uuid:
644         lustre_cfg_bufs_reset(&bufs, name);
645         lustre_cfg_bufs_set_string(&bufs, 1, peer);
646         lcfg = lustre_cfg_new(LCFG_DEL_UUID, &bufs);
647         err = class_process_config(lcfg);
648         lustre_cfg_free(lcfg);
649
650 out_del_conn:
651         if (lmd->lmd_nal == SOCKNAL ||
652             lmd->lmd_nal == OPENIBNAL ||
653             lmd->lmd_nal == IIBNAL ||
654             lmd->lmd_nal == VIBNAL ||
655             lmd->lmd_nal == RANAL) {
656                 int err2;
657
658                 PCFG_INIT(pcfg, NAL_CMD_DEL_PEER);
659                 pcfg.pcfg_nal     = lmd->lmd_nal;
660                 pcfg.pcfg_nid     = lmd->lmd_server_nid;
661                 pcfg.pcfg_flags   = 1;          /* single_share */
662                 err2 = libcfs_nal_cmd(&pcfg);
663                 if (err2 && !err)
664                         err = err2;
665                 if (err < 0)
666                         GOTO(out, err);
667         }
668 out:
669         if (rc == 0)
670                 rc = err;
671
672         return rc;
673 }
674
675 static void lustre_manual_cleanup(struct ll_sb_info *sbi)
676 {
677         struct lustre_cfg *lcfg;
678         struct lustre_cfg_bufs bufs;
679         struct obd_device *obd;
680         int next = 0;
681
682         while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)) != NULL)
683         {
684                 int err;
685
686                 lustre_cfg_bufs_reset(&bufs, obd->obd_name);
687                 lcfg = lustre_cfg_new(LCFG_CLEANUP, &bufs);
688                 err = class_process_config(lcfg);
689                 if (err) {
690                         CERROR("cleanup failed: %s\n", obd->obd_name);
691                         //continue;
692                 }
693                 
694                 lcfg->lcfg_command = LCFG_DETACH;
695                 err = class_process_config(lcfg);
696                 lustre_cfg_free(lcfg);
697                 if (err) {
698                         CERROR("detach failed: %s\n", obd->obd_name);
699                         //continue;
700                 }
701         }
702
703         if (sbi->ll_lmd != NULL)
704                 class_del_profile(sbi->ll_lmd->lmd_profile);
705 }
706
707 int lustre_fill_super(struct super_block *sb, void *data, int silent)
708 {
709         struct lustre_mount_data * lmd = data;
710         char *lov = NULL, *lmv = NULL;
711         struct ll_sb_info *sbi;
712         int err;
713         ENTRY;
714
715         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
716         if (lmd_bad_magic(lmd))
717                 RETURN(-EINVAL);
718
719         sbi = lustre_init_sbi(sb);
720         if (!sbi)
721                 RETURN(-ENOMEM);
722
723         sbi->ll_flags |= LL_SBI_READAHEAD;
724
725         if (lmd->lmd_profile) {
726                 struct lustre_profile *lprof;
727                 struct config_llog_instance cfg;
728                 int len;
729
730                 if (lmd->lmd_mds[0] == '\0') {
731                         CERROR("no mds name\n");
732                         GOTO(out_free, err = -EINVAL);
733                 }
734                 lmd->lmd_security[sizeof(lmd->lmd_security) - 1] = 0;
735
736                 OBD_ALLOC(sbi->ll_lmd, sizeof(*sbi->ll_lmd));
737                 if (sbi->ll_lmd == NULL)
738                         GOTO(out_free, err = -ENOMEM);
739                 memcpy(sbi->ll_lmd, lmd, sizeof(*lmd));
740
741                 /* generate a string unique to this super, let's try
742                  the address of the super itself.*/
743                 len = (sizeof(sb) * 2) + 1;
744                 OBD_ALLOC(sbi->ll_instance, len);
745                 if (sbi->ll_instance == NULL)
746                         GOTO(out_free, err = -ENOMEM);
747                 sprintf(sbi->ll_instance, "%p", sb);
748
749                 cfg.cfg_instance = sbi->ll_instance;
750                 cfg.cfg_uuid = sbi->ll_sb_uuid;
751                 cfg.cfg_local_nid = lmd->lmd_local_nid;
752                 err = lustre_process_log(lmd, lmd->lmd_profile, &cfg, 0);
753                 if (err < 0) {
754                         CERROR("Unable to process log: %s\n", lmd->lmd_profile);
755                         GOTO(out_free, err);
756                 }
757
758                 lprof = class_get_profile(lmd->lmd_profile);
759                 if (lprof == NULL) {
760                         CERROR("No profile found: %s\n", lmd->lmd_profile);
761                         GOTO(out_free, err = -EINVAL);
762                 }
763                 if (lov)
764                         OBD_FREE(lov, strlen(lov) + 1);
765                 OBD_ALLOC(lov, strlen(lprof->lp_lov) +
766                           strlen(sbi->ll_instance) + 2);
767                 sprintf(lov, "%s-%s", lprof->lp_lov, sbi->ll_instance);
768
769                 if (lmv)
770                         OBD_FREE(lmv, strlen(lmv) + 1);
771                 OBD_ALLOC(lmv, strlen(lprof->lp_lmv) +
772                           strlen(sbi->ll_instance) + 2);
773                 sprintf(lmv, "%s-%s", lprof->lp_lmv, sbi->ll_instance);
774         }
775
776         if (!lov) {
777                 CERROR("no osc\n");
778                 GOTO(out_free, err = -EINVAL);
779         }
780
781         if (!lmv) {
782                 CERROR("no mdc\n");
783                 GOTO(out_free, err = -EINVAL);
784         }
785
786         err = lustre_common_fill_super(sb, lmv, lov, lmd->lmd_async,
787                                        lmd->lmd_security, &lmd->lmd_nllu,
788                                        &lmd->lmd_remote_flag);
789
790         if (err)
791                 GOTO(out_free, err);
792         
793 out_dev:
794         if (lmv)
795                 OBD_FREE(lmv, strlen(lmv) + 1);
796         if (lov)
797                 OBD_FREE(lov, strlen(lov) + 1);
798
799         RETURN(err);
800
801 out_free:
802         if (sbi->ll_lmd) {
803                 int len = strlen(sbi->ll_lmd->lmd_profile) + sizeof("-clean")+1;
804                 int err;
805
806                 if (sbi->ll_instance != NULL) {
807                         struct lustre_mount_data *lmd = sbi->ll_lmd;
808                         struct config_llog_instance cfg;
809                         char *cl_prof;
810
811                         cfg.cfg_instance = sbi->ll_instance;
812                         cfg.cfg_uuid = sbi->ll_sb_uuid;
813
814                         OBD_ALLOC(cl_prof, len);
815                         sprintf(cl_prof, "%s-clean", lmd->lmd_profile);
816                         err = lustre_process_log(lmd, cl_prof, &cfg, 0);
817                         if (err < 0) {
818                                 CERROR("Unable to process log: %s\n", cl_prof);
819                                 lustre_manual_cleanup(sbi);
820                         }
821                         OBD_FREE(cl_prof, len);
822                         OBD_FREE(sbi->ll_instance, strlen(sbi->ll_instance) + 1);
823                 }
824                 OBD_FREE(sbi->ll_lmd, sizeof(*sbi->ll_lmd));
825         }
826         lustre_free_sbi(sb);
827         goto out_dev;
828 } /* lustre_fill_super */
829
830 void lustre_put_super(struct super_block *sb)
831 {
832         struct obd_device *obd;
833         struct ll_sb_info *sbi = ll_s2sbi(sb);
834         int force_umount = 0;
835         ENTRY;
836
837         CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
838         obd = class_exp2obd(sbi->ll_md_exp);
839         if (obd)
840                 force_umount = obd->obd_no_recov;
841         obd = NULL;
842
843         lustre_common_put_super(sb);
844         if (sbi->ll_lmd != NULL) {
845                 char *cl_prof;
846                 int len = strlen(sbi->ll_lmd->lmd_profile) + sizeof("-clean")+1;
847                 int err;
848                 struct config_llog_instance cfg;
849
850                 if (force_umount) {
851                         CERROR("force umount, doing manual cleanup\n");
852                         lustre_manual_cleanup(sbi);
853                         GOTO(free_lmd, 0);
854                 }
855
856                 cfg.cfg_instance = sbi->ll_instance;
857                 cfg.cfg_uuid = sbi->ll_sb_uuid;
858
859                 OBD_ALLOC(cl_prof, len);
860                 sprintf(cl_prof, "%s-clean", sbi->ll_lmd->lmd_profile);
861                 err = lustre_process_log(sbi->ll_lmd, cl_prof, &cfg, 0);
862                 if (err < 0) {
863                         CERROR("Unable to process log: %s, doing manual cleanup"
864                                "\n", cl_prof);
865                         lustre_manual_cleanup(sbi);
866                 }
867
868                 OBD_FREE(cl_prof, len);
869         free_lmd:
870                 OBD_FREE(sbi->ll_lmd, sizeof(*sbi->ll_lmd));
871                 OBD_FREE(sbi->ll_instance, strlen(sbi->ll_instance) + 1);
872         }
873
874         lustre_free_sbi(sb);
875
876         EXIT;
877 } /* lustre_put_super */
878
879 int ll_process_config_update(struct ll_sb_info *sbi, int clean)
880 {
881         struct obd_export *md_exp = sbi->ll_md_exp;
882         struct lustre_mount_data *lmd = sbi->ll_lmd;
883         struct llog_ctxt *ctxt;
884         struct config_llog_instance cfg;
885         char *profile = lmd->lmd_profile, *name = NULL;
886         int rc, namelen =  0, version;
887         ENTRY;
888
889         if (profile == NULL)
890                 RETURN(0);
891         if (lmd == NULL) {
892                 CERROR("Client not mounted with zero-conf; cannot process "
893                        "update log.\n");
894                 RETURN(0);
895         }
896
897         rc = ldlm_cli_cancel_unused(md_exp->exp_obd->obd_namespace, NULL,
898                                     LDLM_FL_CONFIG_CHANGE, NULL);
899         if (rc != 0)
900                 CWARN("ldlm_cli_cancel_unused(mdc): %d\n", rc);
901
902         rc = obd_cancel_unused(sbi->ll_dt_exp, NULL, LDLM_FL_CONFIG_CHANGE,
903                                NULL);
904         if (rc != 0)
905                 CWARN("obd_cancel_unused(lov): %d\n", rc);
906
907         cfg.cfg_instance = sbi->ll_instance;
908         cfg.cfg_uuid = sbi->ll_sb_uuid;
909         cfg.cfg_local_nid = lmd->lmd_local_nid;
910
911         namelen = strlen(profile) + 20; /* -clean-######### */
912         OBD_ALLOC(name, namelen);
913         if (name == NULL)
914                 RETURN(-ENOMEM);
915
916         if (clean) {
917                 version = sbi->ll_config_version - 1;
918                 sprintf(name, "%s-clean-%d", profile, version);
919         } else {
920                 version = sbi->ll_config_version + 1;
921                 sprintf(name, "%s-%d", profile, version);
922         }
923
924         CWARN("Applying configuration log %s\n", name);
925
926         ctxt = llog_get_context(&md_exp->exp_obd->obd_llogs,
927                                 LLOG_CONFIG_REPL_CTXT);
928         rc = class_config_process_llog(ctxt, name, &cfg);
929         if (rc == 0)
930                 sbi->ll_config_version = version;
931         CWARN("Finished applying configuration log %s: %d\n", name, rc);
932
933         if (rc == 0 && clean == 0) {
934                 struct lov_desc desc;
935                 int rc, valsize;
936                 valsize = sizeof(desc);
937                 rc = obd_get_info(sbi->ll_dt_exp, strlen("lovdesc") + 1,
938                                   "lovdesc", &valsize, &desc);
939
940                 rc = obd_init_ea_size(md_exp,
941                                       obd_size_diskmd(sbi->ll_dt_exp, NULL),
942                                       (desc.ld_tgt_count *
943                                        sizeof(struct llog_cookie)));
944         }
945         OBD_FREE(name, namelen);
946         RETURN(rc);
947 }
948
949 struct inode *ll_inode_from_lock(struct ldlm_lock *lock)
950 {
951         struct inode *inode = NULL;
952         l_lock(&lock->l_resource->lr_namespace->ns_lock);
953         if (lock->l_ast_data) {
954                 struct ll_inode_info *lli = ll_i2info(lock->l_ast_data);
955                 if (lli->lli_inode_magic == LLI_INODE_MAGIC) {
956                         inode = igrab(lock->l_ast_data);
957                 } else {
958                         inode = lock->l_ast_data;
959                         CDEBUG(inode->i_state & I_FREEING ? D_INFO : D_WARNING,
960                                "l_ast_data %p is bogus: magic %0x8\n",
961                                lock->l_ast_data, lli->lli_inode_magic);
962                         inode = NULL;
963                 }
964         }
965         l_unlock(&lock->l_resource->lr_namespace->ns_lock);
966         return inode;
967 }
968
969 int null_if_equal(struct ldlm_lock *lock, void *data)
970 {
971         if (data == lock->l_ast_data) {
972                 lock->l_ast_data = NULL;
973
974                 if (lock->l_req_mode != lock->l_granted_mode)
975                         LDLM_ERROR(lock,"clearing inode with ungranted lock\n");
976         }
977
978         return LDLM_ITER_CONTINUE;
979 }
980
981 void ll_clear_inode(struct inode *inode)
982 {
983         struct lustre_id id;
984         struct ll_inode_info *lli = ll_i2info(inode);
985         struct ll_sb_info *sbi = ll_i2sbi(inode);
986         ENTRY;
987
988         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
989                inode->i_generation, inode);
990
991         lli->lli_inode_magic = LLI_INODE_DEAD;
992         ll_inode2id(&id, inode);
993         
994         clear_bit(LLI_F_HAVE_MDS_SIZE_LOCK, &(ll_i2info(inode)->lli_flags));
995         md_change_cbdata(sbi->ll_md_exp, &id, null_if_equal, inode);
996
997         LASSERT(!lli->lli_open_fd_write_count);
998         LASSERT(!lli->lli_open_fd_read_count);
999         LASSERT(!lli->lli_open_fd_exec_count);
1000         if (lli->lli_mds_write_och)
1001                 ll_md_real_close(sbi->ll_md_exp, inode, FMODE_WRITE);
1002         if (lli->lli_mds_exec_och)
1003                 ll_md_real_close(sbi->ll_md_exp, inode, FMODE_EXEC);
1004         if (lli->lli_mds_read_och)
1005                 ll_md_real_close(sbi->ll_md_exp, inode, FMODE_READ);
1006         if (lli->lli_smd)
1007                 obd_change_cbdata(sbi->ll_dt_exp, lli->lli_smd,
1008                                   null_if_equal, inode);
1009
1010         if (lli->lli_smd) {
1011                 obd_free_memmd(sbi->ll_dt_exp, &lli->lli_smd);
1012                 lli->lli_smd = NULL;
1013         }
1014
1015         if (lli->lli_mea) {
1016                 obd_free_memmd(sbi->ll_md_exp,
1017                                (struct lov_stripe_md **) &lli->lli_mea);
1018                 lli->lli_mea = NULL;
1019         }
1020
1021         if (lli->lli_symlink_name) {
1022                 OBD_FREE(lli->lli_symlink_name,
1023                          strlen(lli->lli_symlink_name) + 1);
1024                 lli->lli_symlink_name = NULL;
1025         }
1026         lli->lli_inode_magic = LLI_INODE_DEAD;
1027
1028         EXIT;
1029 }
1030
1031 /* If this inode has objects allocated to it (lsm != NULL), then the OST
1032  * object(s) determine the file size and mtime.  Otherwise, the MDS will
1033  * keep these values until such a time that objects are allocated for it.
1034  * We do the MDS operations first, as it is checking permissions for us.
1035  * We don't to the MDS RPC if there is nothing that we want to store there,
1036  * otherwise there is no harm in updating mtime/atime on the MDS if we are
1037  * going to do an RPC anyways.
1038  *
1039  * If we are doing a truncate, we will send the mtime and ctime updates
1040  * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
1041  * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
1042  * at the same time.
1043  */
1044 int ll_setattr_raw(struct inode *inode, struct iattr *attr)
1045 {
1046         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1047         struct ll_sb_info *sbi = ll_i2sbi(inode);
1048         struct ptlrpc_request *request = NULL;
1049         struct mdc_op_data *op_data;
1050         int ia_valid = attr->ia_valid;
1051         int err, rc = 0;
1052         ENTRY;
1053
1054         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu\n", inode->i_ino);
1055         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_SETATTR);
1056
1057         if (ia_valid & ATTR_SIZE) {
1058                 if (attr->ia_size > ll_file_maxbytes(inode)) {
1059                         CDEBUG(D_INODE, "file too large %llu > "LPU64"\n",
1060                                attr->ia_size, ll_file_maxbytes(inode));
1061                         RETURN(-EFBIG);
1062                 }
1063
1064                 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
1065         }
1066
1067         /* POSIX: check before ATTR_*TIME_SET set (from inode_change_ok) */
1068         if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET)) {
1069                 if (current->fsuid != inode->i_uid && !capable(CAP_FOWNER))
1070                         RETURN(-EPERM);
1071         }
1072
1073         /* We mark all of the fields "set" so MDS/OST does not re-set them */
1074         if (attr->ia_valid & ATTR_CTIME) {
1075                 attr->ia_ctime = CURRENT_TIME;
1076                 attr->ia_valid |= ATTR_CTIME_SET;
1077         }
1078         if (!(ia_valid & ATTR_ATIME_SET) && (attr->ia_valid & ATTR_ATIME)) {
1079                 attr->ia_atime = CURRENT_TIME;
1080                 attr->ia_valid |= ATTR_ATIME_SET;
1081         }
1082         if (!(ia_valid & ATTR_MTIME_SET) && (attr->ia_valid & ATTR_MTIME)) {
1083                 attr->ia_mtime = CURRENT_TIME;
1084                 attr->ia_valid |= ATTR_MTIME_SET;
1085         }
1086
1087         if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
1088                 CDEBUG(D_INODE, "setting mtime %lu, ctime %lu, now = %lu\n",
1089                        LTIME_S(attr->ia_mtime), LTIME_S(attr->ia_ctime),
1090                        LTIME_S(CURRENT_TIME));
1091
1092         if (lsm)
1093                 attr->ia_valid &= ~ATTR_SIZE;
1094
1095         /* If only OST attributes being set on objects, don't do MDS RPC.
1096          * In that case, we need to check permissions and update the local
1097          * inode ourselves so we can call obdo_from_inode() always. */
1098         if (ia_valid & (lsm ? ~(ATTR_SIZE | ATTR_FROM_OPEN /*| ATTR_RAW*/) : ~0)) {
1099                 struct lustre_md md;
1100
1101                 OBD_ALLOC(op_data, sizeof(*op_data));
1102                 if (op_data == NULL)
1103                         RETURN(-ENOMEM);
1104                 ll_prepare_mdc_data(op_data, inode, NULL, NULL, 0, 0);
1105
1106                 rc = md_setattr(sbi->ll_md_exp, op_data,
1107                                 attr, NULL, 0, NULL, 0, &request);
1108                 OBD_FREE(op_data, sizeof(*op_data));
1109                 if (rc) {
1110                         ptlrpc_req_finished(request);
1111                         if (rc != -EPERM && rc != -EACCES)
1112                                 CERROR("md_setattr fails: rc = %d\n", rc);
1113                         RETURN(rc);
1114                 }
1115
1116                 rc = mdc_req2lustre_md(sbi->ll_md_exp, request, 0, 
1117                                        sbi->ll_dt_exp, &md);
1118                 if (rc) {
1119                         ptlrpc_req_finished(request);
1120                         RETURN(rc);
1121                 }
1122
1123                 /* We call inode_setattr to adjust timestamps, but we first
1124                  * clear ATTR_SIZE to avoid invoking vmtruncate.
1125                  *
1126                  * NB: ATTR_SIZE will only be set at this point if the size
1127                  * resides on the MDS, ie, this file has no objects. */
1128                 attr->ia_valid &= ~ATTR_SIZE;
1129
1130                 /* 
1131                  * assigning inode_setattr() to @err to disable warning that
1132                  * function's result should be checked by by caller. error is
1133                  * impossible here, as vmtruncate() control path is disabled.
1134                  */
1135                 err = inode_setattr(inode, attr);
1136                 ll_update_inode(inode, &md);
1137                 ptlrpc_req_finished(request);
1138
1139                 if (!lsm || !S_ISREG(inode->i_mode)) {
1140                         CDEBUG(D_INODE, "no lsm: not setting attrs on OST\n");
1141                         RETURN(0);
1142                 }
1143         } else {
1144                 /* The OST doesn't check permissions, but the alternative is
1145                  * a gratuitous RPC to the MDS.  We already rely on the client
1146                  * to do read/write/truncate permission checks, so is mtime OK?
1147                  */
1148                 if (ia_valid & (ATTR_MTIME | ATTR_ATIME)) {
1149                         /* from sys_utime() */
1150                         if (!(ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))) {
1151                                 if (current->fsuid != inode->i_uid &&
1152                                     (rc=ll_permission(inode,MAY_WRITE,NULL))!=0)
1153                                         RETURN(rc);
1154                         } else {
1155                                 /* from inode_change_ok() */
1156                                 if (current->fsuid != inode->i_uid &&
1157                                     !capable(CAP_FOWNER))
1158                                         RETURN(-EPERM);
1159                         }
1160                 }
1161
1162                 /* won't invoke vmtruncate, as we already cleared ATTR_SIZE */
1163                 err = inode_setattr(inode, attr);
1164                 /* 
1165                  * assigning inode_setattr() to @err to disable warning that
1166                  * function's result should be checked by by caller. error is
1167                  * impossible here, as vmtruncate() control path is disabled.
1168                  */
1169         }
1170
1171         /* We really need to get our PW lock before we change inode->i_size.
1172          * If we don't we can race with other i_size updaters on our node, like
1173          * ll_file_read.  We can also race with i_size propogation to other
1174          * nodes through dirtying and writeback of final cached pages.  This
1175          * last one is especially bad for racing o_append users on other
1176          * nodes. */
1177         if (ia_valid & ATTR_SIZE) {
1178                 ldlm_policy_data_t policy = { .l_extent = {attr->ia_size,
1179                                                            OBD_OBJECT_EOF } };
1180                 struct lustre_handle lockh = { 0 };
1181                 struct ll_inode_info *lli = ll_i2info(inode);
1182                 int err, ast_flags = 0;
1183                 /* XXX when we fix the AST intents to pass the discard-range
1184                  * XXX extent, make ast_flags always LDLM_AST_DISCARD_DATA
1185                  * XXX here. */
1186                 if (attr->ia_size == 0)
1187                         ast_flags = LDLM_AST_DISCARD_DATA;
1188
1189                 rc = ll_extent_lock(NULL, inode, lsm, LCK_PW, &policy, &lockh,
1190                                     ast_flags, &ll_i2sbi(inode)->ll_seek_stime);
1191
1192                 if (rc != 0)
1193                         RETURN(rc);
1194
1195                 down(&lli->lli_size_sem);
1196                 lli->lli_size_pid = current->pid;
1197                 rc = vmtruncate(inode, attr->ia_size);
1198                 if (rc != 0) {
1199                         LASSERT(atomic_read(&lli->lli_size_sem.count) <= 0);
1200                         lli->lli_size_pid = 0;
1201                         up(&lli->lli_size_sem);
1202                 }
1203
1204                 err = ll_extent_unlock(NULL, inode, lsm, LCK_PW, &lockh);
1205                 if (err) {
1206                         CERROR("ll_extent_unlock failed: %d\n", err);
1207                         if (!rc)
1208                                 rc = err;
1209                 }
1210         } else if (ia_valid & (ATTR_MTIME | ATTR_MTIME_SET)) {
1211                 struct obdo *oa = NULL;
1212
1213                 CDEBUG(D_INODE, "set mtime on OST inode %lu to %lu\n",
1214                        inode->i_ino, LTIME_S(attr->ia_mtime));
1215
1216                 oa = obdo_alloc();
1217                 if (oa == NULL)
1218                         RETURN(-ENOMEM);
1219
1220                 oa->o_id = lsm->lsm_object_id;
1221                 oa->o_gr = lsm->lsm_object_gr;
1222                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
1223                 obdo_from_inode(oa, inode, OBD_MD_FLTYPE | OBD_MD_FLATIME |
1224                                 OBD_MD_FLMTIME | OBD_MD_FLCTIME);
1225                 rc = obd_setattr(sbi->ll_dt_exp, oa, lsm, NULL);
1226                 obdo_free(oa);
1227                 if (rc)
1228                         CERROR("obd_setattr fails: rc = %d\n", rc);
1229         }
1230         RETURN(rc);
1231 }
1232
1233 int ll_setattr(struct dentry *de, struct iattr *attr)
1234 {
1235         LASSERT(de->d_inode);
1236         return ll_setattr_raw(de->d_inode, attr);
1237 }
1238
1239 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
1240                        unsigned long max_age)
1241 {
1242         struct ll_sb_info *sbi = ll_s2sbi(sb);
1243         struct obd_statfs obd_osfs;
1244         int rc;
1245         ENTRY;
1246
1247         rc = obd_statfs(class_exp2obd(sbi->ll_md_exp), osfs, max_age);
1248         if (rc) {
1249                 CERROR("obd_statfs fails: rc = %d\n", rc);
1250                 RETURN(rc);
1251         }
1252
1253         osfs->os_type = sb->s_magic;
1254
1255         CDEBUG(D_SUPER, "MDC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1256                osfs->os_bavail, osfs->os_blocks, osfs->os_ffree,osfs->os_files);
1257
1258         rc = obd_statfs(class_exp2obd(sbi->ll_dt_exp), &obd_osfs, max_age);
1259         if (rc) {
1260                 CERROR("obd_statfs fails: rc = %d\n", rc);
1261                 RETURN(rc);
1262         }
1263
1264         CDEBUG(D_SUPER, "OSC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1265                obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
1266                obd_osfs.os_files);
1267
1268         osfs->os_blocks = obd_osfs.os_blocks;
1269         osfs->os_bfree = obd_osfs.os_bfree;
1270         osfs->os_bavail = obd_osfs.os_bavail;
1271
1272         /* If we don't have as many objects free on the OST as inodes
1273          * on the MDS, we reduce the total number of inodes to
1274          * compensate, so that the "inodes in use" number is correct.
1275          */
1276         if (obd_osfs.os_ffree < osfs->os_ffree) {
1277                 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
1278                         obd_osfs.os_ffree;
1279                 osfs->os_ffree = obd_osfs.os_ffree;
1280         }
1281
1282         RETURN(rc);
1283 }
1284
1285 int ll_statfs(struct super_block *sb, struct kstatfs *sfs)
1286 {
1287         struct obd_statfs osfs;
1288         int rc;
1289
1290         CDEBUG(D_VFSTRACE, "VFS Op: superblock %p\n", sb);
1291         lprocfs_counter_incr(ll_s2sbi(sb)->ll_stats, LPROC_LL_STAFS);
1292
1293         /* For now we will always get up-to-date statfs values, but in the
1294          * future we may allow some amount of caching on the client (e.g.
1295          * from QOS or lprocfs updates). */
1296         rc = ll_statfs_internal(sb, &osfs, jiffies - 1);
1297         if (rc)
1298                 return rc;
1299
1300         statfs_unpack(sfs, &osfs);
1301
1302         if (sizeof(sfs->f_blocks) == 4) {
1303                 while (osfs.os_blocks > ~0UL) {
1304                         sfs->f_bsize <<= 1;
1305
1306                         osfs.os_blocks >>= 1;
1307                         osfs.os_bfree >>= 1;
1308                         osfs.os_bavail >>= 1;
1309                 }
1310         }
1311
1312         sfs->f_blocks = osfs.os_blocks;
1313         sfs->f_bfree = osfs.os_bfree;
1314         sfs->f_bavail = osfs.os_bavail;
1315
1316         return 0;
1317 }
1318
1319 void ll_update_inode(struct inode *inode, struct lustre_md *md)
1320 {
1321         struct ll_inode_info *lli = ll_i2info(inode);
1322         struct lov_stripe_md *lsm = md->lsm;
1323         struct mds_body *body = md->body;
1324         struct mea *mea = md->mea;
1325         struct posix_acl *ll_acl_access = md->acl_access;
1326         ENTRY;
1327
1328         LASSERT((lsm != NULL) == ((body->valid & OBD_MD_FLEASIZE) != 0));
1329
1330         if (md->lsm && md->lsm->lsm_magic != LOV_MAGIC) {
1331                 /* check for default striping info for dir. */
1332                 LASSERT((mea != NULL) == ((body->valid & OBD_MD_FLDIREA) != 0));
1333         }
1334         
1335         if (lsm != NULL) {
1336                 LASSERT(lsm->lsm_object_gr > 0);
1337                 if (lli->lli_smd == NULL) {
1338                         lli->lli_smd = lsm;
1339                         lli->lli_maxbytes = lsm->lsm_maxbytes;
1340                         if (lli->lli_maxbytes > PAGE_CACHE_MAXBYTES)
1341                                 lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
1342                 } else {
1343                         int i;
1344                         if (memcmp(lli->lli_smd, lsm, sizeof(*lsm))) {
1345                                 CERROR("lsm mismatch for inode %ld\n",
1346                                        inode->i_ino);
1347                                 CERROR("lli_smd:\n");
1348                                 dump_lsm(D_ERROR, lli->lli_smd);
1349                                 CERROR("lsm:\n");
1350                                 dump_lsm(D_ERROR, lsm);
1351                                 LBUG();
1352                         }
1353                         /* XXX FIXME -- We should decide on a safer (atomic) and
1354                          * more elegant way to update the lsm */
1355                         for (i = 0; i < lsm->lsm_stripe_count; i++) {
1356                                 lli->lli_smd->lsm_oinfo[i].loi_id =
1357                                         lsm->lsm_oinfo[i].loi_id;
1358                                 lli->lli_smd->lsm_oinfo[i].loi_gr =
1359                                         lsm->lsm_oinfo[i].loi_gr;
1360                                 lli->lli_smd->lsm_oinfo[i].loi_ost_idx =
1361                                         lsm->lsm_oinfo[i].loi_ost_idx;
1362                                 lli->lli_smd->lsm_oinfo[i].loi_ost_gen =
1363                                         lsm->lsm_oinfo[i].loi_ost_gen;
1364                         }
1365                 }
1366                 /* bug 2844 - limit i_blksize for broken user-space apps */
1367                 LASSERTF(lsm->lsm_xfersize != 0, "%lu\n", lsm->lsm_xfersize);
1368                 inode->i_blksize = min(lsm->lsm_xfersize, LL_MAX_BLKSIZE);
1369                 if (lli->lli_smd != lsm)
1370                         obd_free_memmd(ll_i2dtexp(inode), &lsm);
1371         }
1372
1373         if (mea != NULL) {
1374                 if (lli->lli_mea == NULL) {
1375                         lli->lli_mea = mea;
1376                 } else {
1377                         if (memcmp(lli->lli_mea, mea, body->eadatasize)) {
1378                                 CERROR("mea mismatch for inode %lu\n",
1379                                         inode->i_ino);
1380                                 LBUG();
1381                         }
1382                 }
1383                 if (lli->lli_mea != mea)
1384                         obd_free_memmd(ll_i2mdexp(inode),
1385                                        (struct lov_stripe_md **) &mea);
1386         }
1387
1388         if (body->valid & OBD_MD_FID)
1389                 id_assign_fid(&lli->lli_id, &body->id1);
1390         
1391         if (body->valid & OBD_MD_FLID)
1392                 id_ino(&lli->lli_id) = id_ino(&body->id1);
1393
1394         if (body->valid & OBD_MD_FLGENER)
1395                 id_gen(&lli->lli_id) = id_gen(&body->id1);
1396
1397         spin_lock(&lli->lli_lock);
1398         if (ll_acl_access != NULL) {
1399                 if (lli->lli_acl_access != NULL)
1400                         posix_acl_release(lli->lli_acl_access);
1401                 lli->lli_acl_access = ll_acl_access;
1402         }
1403         spin_unlock(&lli->lli_lock);
1404  
1405         if (body->valid & OBD_MD_FLID)
1406                 inode->i_ino = id_ino(&body->id1);
1407         if (body->valid & OBD_MD_FLGENER)
1408                 inode->i_generation = id_gen(&body->id1);
1409         if (body->valid & OBD_MD_FLATIME)
1410                 LTIME_S(inode->i_atime) = body->atime;
1411         if (body->valid & OBD_MD_FLMTIME &&
1412             body->mtime > LTIME_S(inode->i_mtime)) {
1413                 CDEBUG(D_INODE, "setting ino %lu mtime from %lu to %u\n",
1414                        inode->i_ino, LTIME_S(inode->i_mtime), body->mtime);
1415                 LTIME_S(inode->i_mtime) = body->mtime;
1416         }
1417         if (body->valid & OBD_MD_FLCTIME &&
1418             body->ctime > LTIME_S(inode->i_ctime))
1419                 LTIME_S(inode->i_ctime) = body->ctime;
1420         if (body->valid & OBD_MD_FLMODE) {
1421                 inode->i_mode = (inode->i_mode & S_IFMT) |
1422                         (body->mode & ~S_IFMT);
1423         }
1424         if (body->valid & OBD_MD_FLTYPE) {
1425                 inode->i_mode = (inode->i_mode & ~S_IFMT) |
1426                         (body->mode & S_IFMT);
1427         }
1428         if (body->valid & OBD_MD_FLUID)
1429                 inode->i_uid = body->uid;
1430         if (body->valid & OBD_MD_FLGID)
1431                 inode->i_gid = body->gid;
1432         if (body->valid & OBD_MD_FLFLAGS)
1433                 inode->i_flags = body->flags;
1434         if (body->valid & OBD_MD_FLNLINK)
1435                 inode->i_nlink = body->nlink;
1436         if (body->valid & OBD_MD_FLRDEV)
1437 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1438                 inode->i_rdev = body->rdev;
1439 #else
1440                 inode->i_rdev = old_decode_dev(body->rdev);
1441 #endif
1442         if (body->valid & OBD_MD_FLSIZE)
1443                 inode->i_size = body->size;
1444         if (body->valid & OBD_MD_FLBLOCKS)
1445                 inode->i_blocks = body->blocks;
1446
1447         if (body->valid & OBD_MD_FLSIZE)
1448                 set_bit(LLI_F_HAVE_MDS_SIZE_LOCK, &lli->lli_flags);
1449
1450 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
1451         inode->i_dev = (kdev_t)id_group(&lli->lli_id);
1452 #endif
1453         LASSERT(id_fid(&lli->lli_id) != 0);
1454 }
1455
1456 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
1457 static struct backing_dev_info ll_backing_dev_info = {
1458         .ra_pages       = 0,    /* No readahead */
1459         .memory_backed  = 0,    /* Does contribute to dirty memory */
1460 };
1461 #endif
1462
1463 void ll_read_inode2(struct inode *inode, void *opaque)
1464 {
1465         struct lustre_md *md = opaque;
1466         struct ll_inode_info *lli = ll_i2info(inode);
1467         ENTRY;
1468
1469         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
1470                inode->i_generation, inode);
1471
1472         ll_lli_init(lli);
1473
1474         LASSERT(!lli->lli_smd);
1475
1476         /* Core attributes from the MDS first.  This is a new inode, and
1477          * the VFS doesn't zero times in the core inode so we have to do
1478          * it ourselves.  They will be overwritten by either MDS or OST
1479          * attributes - we just need to make sure they aren't newer. */
1480         LTIME_S(inode->i_mtime) = 0;
1481         LTIME_S(inode->i_atime) = 0;
1482         LTIME_S(inode->i_ctime) = 0;
1483
1484         inode->i_rdev = 0;
1485         ll_update_inode(inode, md);
1486
1487         /* OIDEBUG(inode); */
1488
1489         if (S_ISREG(inode->i_mode)) {
1490                 inode->i_op = &ll_file_inode_operations;
1491                 inode->i_fop = &ll_file_operations;
1492                 inode->i_mapping->a_ops = &ll_aops;
1493                 EXIT;
1494         } else if (S_ISDIR(inode->i_mode)) {
1495                 inode->i_op = &ll_dir_inode_operations;
1496                 inode->i_fop = &ll_dir_operations;
1497                 inode->i_mapping->a_ops = &ll_dir_aops;
1498                 EXIT;
1499         } else if (S_ISLNK(inode->i_mode)) {
1500                 inode->i_op = &ll_fast_symlink_inode_operations;
1501                 EXIT;
1502         } else {
1503                 inode->i_op = &ll_special_inode_operations;
1504
1505 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
1506                 init_special_inode(inode, inode->i_mode,
1507                                    kdev_t_to_nr(inode->i_rdev));
1508
1509                 /* initializing backing dev info. */
1510                 inode->i_mapping->backing_dev_info = &ll_backing_dev_info;
1511 #else
1512                 init_special_inode(inode, inode->i_mode, inode->i_rdev);
1513 #endif
1514                 lli->ll_save_ifop = inode->i_fop;
1515
1516                 if (S_ISCHR(inode->i_mode))
1517                         inode->i_fop = &ll_special_chr_inode_fops;
1518                 else if (S_ISBLK(inode->i_mode))
1519                         inode->i_fop = &ll_special_blk_inode_fops;
1520                 else if (S_ISFIFO(inode->i_mode))
1521                         inode->i_fop = &ll_special_fifo_inode_fops;
1522                 else if (S_ISSOCK(inode->i_mode))
1523                         inode->i_fop = &ll_special_sock_inode_fops;
1524
1525                 CWARN("saved %p, replaced with %p\n", lli->ll_save_ifop,
1526                       inode->i_fop);
1527
1528                 if (lli->ll_save_ifop->owner) {
1529                         CWARN("%p has owner %p\n", lli->ll_save_ifop,
1530                               lli->ll_save_ifop->owner);
1531                 }
1532                 EXIT;
1533         }
1534 }
1535
1536 void ll_delete_inode(struct inode *inode)
1537 {
1538         struct ll_sb_info *sbi = ll_i2sbi(inode);
1539         struct lustre_id id;
1540         int rc;
1541         ENTRY;
1542
1543         ll_inode2id(&id, inode);
1544
1545         rc = md_delete_inode(sbi->ll_md_exp, &id);
1546         if (rc) {
1547                 CERROR("md_delete_inode() failed, error %d\n", 
1548                        rc);
1549         }
1550
1551         clear_inode(inode);
1552         EXIT;
1553 }
1554
1555 int ll_iocontrol(struct inode *inode, struct file *file,
1556                  unsigned int cmd, unsigned long arg)
1557 {
1558         struct ll_sb_info *sbi = ll_i2sbi(inode);
1559         struct ptlrpc_request *req = NULL;
1560         int rc, flags = 0;
1561         ENTRY;
1562
1563         switch(cmd) {
1564         case EXT3_IOC_GETFLAGS: {
1565                 struct lustre_id id;
1566                 __u64 valid = OBD_MD_FLFLAGS;
1567                 struct mds_body *body;
1568
1569                 ll_inode2id(&id, inode);
1570                 rc = md_getattr(sbi->ll_md_exp, &id, valid, NULL, 0, 0, &req);
1571                 if (rc) {
1572                         CERROR("failure %d inode %lu\n", rc, inode->i_ino);
1573                         RETURN(-abs(rc));
1574                 }
1575
1576                 body = lustre_msg_buf(req->rq_repmsg, 0, sizeof(*body));
1577
1578                 if (body->flags & S_APPEND)
1579                         flags |= EXT3_APPEND_FL;
1580                 if (body->flags & S_IMMUTABLE)
1581                         flags |= EXT3_IMMUTABLE_FL;
1582                 if (body->flags & S_NOATIME)
1583                         flags |= EXT3_NOATIME_FL;
1584
1585                 ptlrpc_req_finished (req);
1586
1587                 RETURN(put_user(flags, (int *)arg));
1588         }
1589         case EXT3_IOC_SETFLAGS: {
1590                 struct mdc_op_data *op_data;
1591                 struct iattr attr;
1592                 struct obdo *oa;
1593                 struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
1594
1595                 if (get_user(flags, (int *)arg))
1596                         RETURN(-EFAULT);
1597
1598                 oa = obdo_alloc();
1599                 if (!oa)
1600                         RETURN(-ENOMEM);
1601
1602                 OBD_ALLOC(op_data, sizeof(*op_data));
1603                 if (op_data == NULL) {
1604                         obdo_free(oa);
1605                         RETURN(-ENOMEM);
1606                 }
1607                 ll_prepare_mdc_data(op_data, inode, NULL, NULL, 0, 0);
1608
1609                 memset(&attr, 0x0, sizeof(attr));
1610                 attr.ia_attr_flags = flags;
1611                 attr.ia_valid |= ATTR_ATTR_FLAG;
1612
1613                 rc = md_setattr(sbi->ll_md_exp, op_data,
1614                                 &attr, NULL, 0, NULL, 0, &req);
1615                 OBD_FREE(op_data, sizeof(*op_data));
1616                 if (rc) {
1617                         ptlrpc_req_finished(req);
1618                         if (rc != -EPERM && rc != -EACCES)
1619                                 CERROR("md_setattr fails: rc = %d\n", rc);
1620                         obdo_free(oa);
1621                         RETURN(rc);
1622                 }
1623                 ptlrpc_req_finished(req);
1624
1625                 oa->o_id = lsm->lsm_object_id;
1626                 oa->o_gr = lsm->lsm_object_gr;
1627                 oa->o_flags = flags;
1628                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLFLAGS | OBD_MD_FLGROUP;
1629
1630                 rc = obd_setattr(sbi->ll_dt_exp, oa, lsm, NULL);
1631                 obdo_free(oa);
1632                 if (rc) {
1633                         if (rc != -EPERM && rc != -EACCES)
1634                                 CERROR("md_setattr fails: rc = %d\n", rc);
1635                         RETURN(rc);
1636                 }
1637
1638                 if (flags & EXT3_APPEND_FL)
1639                         inode->i_flags |= S_APPEND;
1640                 else
1641                         inode->i_flags &= ~S_APPEND;
1642                 if (flags & EXT3_IMMUTABLE_FL)
1643                         inode->i_flags |= S_IMMUTABLE;
1644                 else
1645                         inode->i_flags &= ~S_IMMUTABLE;
1646                 if (flags & EXT3_NOATIME_FL)
1647                         inode->i_flags |= S_NOATIME;
1648                 else
1649                         inode->i_flags &= ~S_NOATIME;
1650
1651                 RETURN(0);
1652         }
1653         default:
1654                 RETURN(-ENOSYS);
1655         }
1656
1657         RETURN(0);
1658 }
1659
1660 /* this is only called in the case of forced umount. */
1661 void ll_umount_begin(struct super_block *sb)
1662 {
1663         struct ll_sb_info *sbi = ll_s2sbi(sb);
1664         struct obd_ioctl_data ioc_data = { 0 };
1665         struct obd_device *obd;
1666         ENTRY;
1667      
1668         CDEBUG(D_VFSTRACE, "VFS Op: superblock %p count %d active %d\n", sb,
1669                sb->s_count, atomic_read(&sb->s_active));
1670         
1671         obd = class_exp2obd(sbi->ll_md_exp);
1672         if (obd == NULL) {
1673                 CERROR("Invalid MDC connection handle "LPX64"\n",
1674                        sbi->ll_md_exp->exp_handle.h_cookie);
1675                 EXIT;
1676                 return;
1677         }
1678         obd->obd_no_recov = 1;
1679         obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_md_exp,
1680                       sizeof(ioc_data), &ioc_data, NULL);
1681
1682         obd = class_exp2obd(sbi->ll_dt_exp);
1683         if (obd == NULL) {
1684                 CERROR("Invalid LOV connection handle "LPX64"\n",
1685                        sbi->ll_dt_exp->exp_handle.h_cookie);
1686                 EXIT;
1687                 return;
1688         }
1689
1690         obd->obd_no_recov = 1;
1691         obd_iocontrol(IOC_OSC_SET_ACTIVE, sbi->ll_dt_exp,
1692                       sizeof(ioc_data), &ioc_data, NULL);
1693
1694         /*
1695          * really, we'd like to wait until there are no requests outstanding,
1696          * and then continue.  For now, we just invalidate the requests,
1697          * schedule, and hope.
1698          */
1699         schedule();
1700
1701         EXIT;
1702 }
1703
1704 int ll_prep_inode(struct obd_export *dt_exp, struct obd_export *md_exp,
1705                   struct inode **inode, struct ptlrpc_request *req,
1706                   int offset, struct super_block *sb)
1707 {
1708         struct lustre_md md;
1709         int rc = 0;
1710
1711         rc = mdc_req2lustre_md(md_exp, req, offset, dt_exp, &md);
1712         if (rc)
1713                 RETURN(rc);
1714
1715         if (*inode) {
1716                 ll_update_inode(*inode, &md);
1717         } else {
1718                 LASSERT(sb);
1719                 *inode = ll_iget(sb, id_ino(&md.body->id1), &md);
1720                 if (*inode == NULL || is_bad_inode(*inode)) {
1721                         /* free the lsm if we allocated one above */
1722                         if (md.lsm != NULL)
1723                                 obd_free_memmd(dt_exp, &md.lsm);
1724                         if (md.mea != NULL)
1725                                 obd_free_memmd(md_exp,
1726                                                (struct lov_stripe_md**)&md.mea);
1727                         rc = -ENOMEM;
1728                         CERROR("new_inode -fatal: rc %d\n", rc);
1729                 }
1730         }
1731
1732         RETURN(rc);
1733 }
1734
1735 int ll_get_fid(struct obd_export *exp, struct lustre_id *idp,
1736                char *filename, struct lustre_id *ret)
1737 {
1738         struct ptlrpc_request *request = NULL;
1739         struct mds_body *body;
1740         int rc;
1741
1742         rc = md_getattr_lock(exp, idp, filename, strlen(filename) + 1,
1743                              OBD_MD_FID, 0, &request);
1744         if (rc < 0) {
1745                 CDEBUG(D_INFO, "md_getattr_lock failed on %s: rc %d\n",
1746                        filename, rc);
1747                 return rc;
1748         }
1749
1750         body = lustre_msg_buf(request->rq_repmsg, 0, sizeof(*body));
1751         LASSERT(body != NULL);
1752         LASSERT_REPSWABBED(request, 0);
1753
1754         *ret = body->id1;
1755         ptlrpc_req_finished(request);
1756
1757         return rc;
1758 }