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