Whamcloud - gitweb
b=24037 Changes of 2.6.32 kernel.
[fs/lustre-release.git] / lustre / lvfs / fsfilt_ext3.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/lvfs/fsfilt_ext3.c
37  *
38  * Author: Andreas Dilger <adilger@clusterfs.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_FILTER
42
43 #include <linux/init.h>
44 #include <linux/module.h>
45 #include <linux/fs.h>
46 #include <linux/slab.h>
47 #include <linux/pagemap.h>
48 #include <linux/quotaops.h>
49 #ifdef HAVE_EXT4_LDISKFS
50 #include <ext4/ext4.h>
51 #include <ext4/ext4_jbd2.h>
52 #else
53 #include <linux/jbd.h>
54 #include <linux/ext3_fs.h>
55 #include <linux/ext3_jbd.h>
56 #endif
57 #include <linux/version.h>
58 #include <linux/bitops.h>
59 #include <linux/quota.h>
60 #ifdef HAVE_QUOTAIO_V1_H
61 # include <linux/quotaio_v1.h>
62 # include <linux/quotaio_v2.h>
63 #elif defined(HAVE_FS_QUOTA_QUOTAIO_V1_H)
64 # include <quota/quotaio_v1.h>
65 # include <quota/quotaio_v2.h>
66 # include <quota/quota_tree.h>
67 # define V2_DQTREEOFF    QT_TREEOFF
68 #else
69 # include <quotaio_v1.h>
70 # include <quotaio_v2.h>
71 # include <quota_tree.h>
72 # define V2_DQTREEOFF    QT_TREEOFF
73 #endif
74
75 #if defined(HAVE_EXT3_XATTR_H)
76 #include <ext3/xattr.h>
77 #else
78 /* ext3 xattr.h not available in rh style kernel-devel rpm */
79 extern int ext3_xattr_get(struct inode *, int, const char *, void *, size_t);
80 extern int ext3_xattr_set_handle(handle_t *, struct inode *, int, const char *, const void *, size_t, int);
81 #endif
82
83 #include <libcfs/libcfs.h>
84 #include <lustre_fsfilt.h>
85 #include <obd.h>
86 #include <lustre_quota.h>
87 #include <linux/lustre_compat25.h>
88 #include <linux/lprocfs_status.h>
89
90 #ifdef HAVE_EXT4_LDISKFS
91 #include <ext4/ext4_extents.h>
92 #else
93 #include <linux/ext3_extents.h>
94 #endif
95
96 #include "lustre_quota_fmt.h"
97
98 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,15)
99 #define FSFILT_DATA_TRANS_BLOCKS(sb)      EXT3_DATA_TRANS_BLOCKS
100 #define FSFILT_DELETE_TRANS_BLOCKS(sb)    EXT3_DELETE_TRANS_BLOCKS
101 #else
102 #define FSFILT_DATA_TRANS_BLOCKS(sb)      EXT3_DATA_TRANS_BLOCKS(sb)
103 #define FSFILT_DELETE_TRANS_BLOCKS(sb)    EXT3_DELETE_TRANS_BLOCKS(sb)
104 #endif
105
106 #ifdef EXT3_SINGLEDATA_TRANS_BLOCKS_HAS_SB
107 /* for kernels 2.6.18 and later */
108 #define FSFILT_SINGLEDATA_TRANS_BLOCKS(sb) EXT3_SINGLEDATA_TRANS_BLOCKS(sb)
109 #else
110 #define FSFILT_SINGLEDATA_TRANS_BLOCKS(sb) EXT3_SINGLEDATA_TRANS_BLOCKS
111 #endif
112
113 #ifdef EXT_INSERT_EXTENT_WITH_5ARGS
114 #define fsfilt_ext3_ext_insert_extent(handle, inode, path, newext, flag) \
115                ext3_ext_insert_extent(handle, inode, path, newext, flag)
116 #else
117 #define fsfilt_ext3_ext_insert_extent(handle, inode, path, newext, flag) \
118                ext3_ext_insert_extent(handle, inode, path, newext)
119 #endif
120
121
122 static cfs_mem_cache_t *fcb_cache;
123
124 struct fsfilt_cb_data {
125         struct journal_callback cb_jcb; /* jbd private data - MUST BE FIRST */
126         fsfilt_cb_t cb_func;            /* MDS/OBD completion function */
127         struct obd_device *cb_obd;      /* MDS/OBD completion device */
128         __u64 cb_last_rcvd;             /* MDS/OST last committed operation */
129         void *cb_data;                  /* MDS/OST completion function data */
130 };
131
132 #ifndef EXT3_XATTR_INDEX_TRUSTED        /* temporary until we hit l28 kernel */
133 #define EXT3_XATTR_INDEX_TRUSTED        4
134 #endif
135
136 #ifdef HAVE_EXT4_LDISKFS
137 #define fsfilt_log_start_commit(journal, tid) jbd2_log_start_commit(journal, tid)
138 #define fsfilt_log_wait_commit(journal, tid) jbd2_log_wait_commit(journal, tid)
139 #define fsfilt_journal_callback_set(handle, func, jcb) jbd2_journal_callback_set(handle, func, jcb)
140 #else
141 #define fsfilt_log_start_commit(journal, tid) log_start_commit(journal, tid)
142 #define fsfilt_log_wait_commit(journal, tid) log_wait_commit(journal, tid)
143 #define fsfilt_journal_callback_set(handle, func, jcb) journal_callback_set(handle, func, jcb)
144 #define ext_pblock(ex) le32_to_cpu((ex)->ee_start)
145 #define ext3_ext_store_pblock(ex, pblock)  ((ex)->ee_start = cpu_to_le32(pblock))
146 #define ext3_inode_bitmap(sb,desc) le32_to_cpu((desc)->bg_inode_bitmap)
147 #endif
148
149 #ifndef ext3_find_next_bit
150 #define ext3_find_next_bit           ext2_find_next_bit
151 #endif
152
153 #ifndef ext2_find_next_bit
154 #ifdef __LITTLE_ENDIAN
155 #define ext2_find_next_bit(addr, size, off) find_next_bit((unsigned long *)(addr), (size), (off))
156 #else
157 error "Need implementation of find_next_bit on big-endian systems"
158 #endif  /* __LITTLE_ENDIAN */
159 #endif  /* !ext2_find_next_le_bit */
160
161 static char *fsfilt_ext3_get_label(struct super_block *sb)
162 {
163         return EXT3_SB(sb)->s_es->s_volume_name;
164 }
165
166 static int fsfilt_ext3_set_label(struct super_block *sb, char *label)
167 {
168         /* see e.g. fsfilt_ext3_write_record() */
169         journal_t *journal;
170         handle_t *handle;
171         int err;
172
173         journal = EXT3_SB(sb)->s_journal;
174         handle = ext3_journal_start_sb(sb, 1);
175         if (IS_ERR(handle)) {
176                 CERROR("can't start transaction\n");
177                 return(PTR_ERR(handle));
178         }
179
180         err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
181         if (err)
182                 goto out;
183
184         memcpy(EXT3_SB(sb)->s_es->s_volume_name, label,
185                sizeof(EXT3_SB(sb)->s_es->s_volume_name));
186
187         err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
188
189 out:
190         ext3_journal_stop(handle);
191
192         return(err);
193 }
194
195 static char *fsfilt_ext3_uuid(struct super_block *sb)
196 {
197         return EXT3_SB(sb)->s_es->s_uuid;
198 }
199
200 #ifdef HAVE_DISK_INODE_VERSION
201
202 static __u64 get_i_version(struct inode *inode)
203 {
204 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27)) && defined(HAVE_EXT4_LDISKFS)
205         return inode->i_version;
206 #else
207         return EXT3_I(inode)->i_fs_version;
208 #endif
209 }
210
211 static void set_i_version(struct inode *inode, __u64 new_version)
212 {
213 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27)) && defined(HAVE_EXT4_LDISKFS)
214         inode->i_version = new_version;
215 #else
216         (EXT3_I(inode))->i_fs_version = new_version;
217 #endif
218 }
219
220 /*
221  * Get the 64-bit version for an inode.
222  */
223 static __u64 fsfilt_ext3_get_version(struct inode *inode)
224 {
225         CDEBUG(D_INFO, "Get version "LPX64" for inode %lu\n",
226                get_i_version(inode), inode->i_ino);
227         return get_i_version(inode);
228 }
229
230 /*
231  * Set the 64-bit version and return the old version.
232  */
233 static __u64 fsfilt_ext3_set_version(struct inode *inode, __u64 new_version)
234 {
235         __u64 old_version = get_i_version(inode);
236
237         CDEBUG(D_INFO, "Set version "LPX64" (old "LPX64") for inode %lu\n",
238                new_version, old_version, inode->i_ino);
239         set_i_version(inode, new_version);
240         /* version is set after all inode operations are finished, so we should
241          * mark it dirty here */
242         inode->i_sb->s_op->dirty_inode(inode);
243         return old_version;
244 }
245
246 #endif
247
248 /*
249  * We don't currently need any additional blocks for rmdir and
250  * unlink transactions because we are storing the OST oa_id inside
251  * the inode (which we will be changing anyways as part of this
252  * transaction).
253  */
254 static void *fsfilt_ext3_start(struct inode *inode, int op, void *desc_private,
255                                int logs)
256 {
257         /* For updates to the last received file */
258         int nblocks = FSFILT_SINGLEDATA_TRANS_BLOCKS(inode->i_sb);
259         journal_t *journal;
260         void *handle;
261
262         if (current->journal_info) {
263                 CDEBUG(D_INODE, "increasing refcount on %p\n",
264                        current->journal_info);
265                 goto journal_start;
266         }
267
268         switch(op) {
269         case FSFILT_OP_RMDIR:
270         case FSFILT_OP_UNLINK:
271                 /* delete one file + create/update logs for each stripe */
272                 nblocks += FSFILT_DELETE_TRANS_BLOCKS(inode->i_sb);
273                 nblocks += (EXT3_INDEX_EXTRA_TRANS_BLOCKS +
274                             FSFILT_SINGLEDATA_TRANS_BLOCKS(inode->i_sb)) * logs;
275                 break;
276         case FSFILT_OP_RENAME:
277                 /* modify additional directory */
278                 nblocks += FSFILT_SINGLEDATA_TRANS_BLOCKS(inode->i_sb);
279                 /* no break */
280         case FSFILT_OP_SYMLINK:
281                 /* additional block + block bitmap + GDT for long symlink */
282                 nblocks += 3;
283                 /* no break */
284         case FSFILT_OP_CREATE: {
285 #if defined(EXT3_EXTENTS_FL) && defined(EXT3_INDEX_FL) && !defined(HAVE_EXT4_LDISKFS)
286                 static int warned;
287                 if (!warned) {
288                         if (!test_opt(inode->i_sb, EXTENTS)) {
289                                 warned = 1;
290                         } else if (((EXT3_I(inode)->i_flags &
291                               cpu_to_le32(EXT3_EXTENTS_FL | EXT3_INDEX_FL)) ==
292                               cpu_to_le32(EXT3_EXTENTS_FL | EXT3_INDEX_FL))) {
293                                 CWARN("extent-mapped directory found with "
294                                       "ext3-based ldiskfs - contact "
295                                       "http://bugzilla.lustre.org/\n");
296                                 warned = 1;
297                         }
298                 }
299 #endif
300                 /* no break */
301         }
302         case FSFILT_OP_MKDIR:
303         case FSFILT_OP_MKNOD:
304                 /* modify one inode + block bitmap + GDT */
305                 nblocks += 3;
306                 /* no break */
307         case FSFILT_OP_LINK:
308                 /* modify parent directory */
309                 nblocks += EXT3_INDEX_EXTRA_TRANS_BLOCKS +
310                          FSFILT_DATA_TRANS_BLOCKS(inode->i_sb);
311                 /* create/update logs for each stripe */
312                 nblocks += (EXT3_INDEX_EXTRA_TRANS_BLOCKS +
313                             FSFILT_SINGLEDATA_TRANS_BLOCKS(inode->i_sb)) * logs;
314                 break;
315         case FSFILT_OP_SETATTR:
316                 /* Setattr on inode */
317                 nblocks += 1;
318                 nblocks += EXT3_INDEX_EXTRA_TRANS_BLOCKS +
319                          FSFILT_DATA_TRANS_BLOCKS(inode->i_sb);
320                 /* quota chown log for each stripe */
321                 nblocks += (EXT3_INDEX_EXTRA_TRANS_BLOCKS +
322                             FSFILT_SINGLEDATA_TRANS_BLOCKS(inode->i_sb)) * logs;
323                 break;
324         case FSFILT_OP_CANCEL_UNLINK:
325                 /* blocks for log header bitmap update OR
326                  * blocks for catalog header bitmap update + unlink of logs */
327                 nblocks = (LLOG_CHUNK_SIZE >> inode->i_blkbits) +
328                         FSFILT_DELETE_TRANS_BLOCKS(inode->i_sb) * logs;
329                 break;
330         default: CERROR("unknown transaction start op %d\n", op);
331                 LBUG();
332         }
333
334         LASSERT(current->journal_info == desc_private);
335         journal = EXT3_SB(inode->i_sb)->s_journal;
336         if (nblocks > journal->j_max_transaction_buffers) {
337                 CWARN("too many credits %d for op %ux%u using %d instead\n",
338                        nblocks, op, logs, journal->j_max_transaction_buffers);
339                 nblocks = journal->j_max_transaction_buffers;
340         }
341
342  journal_start:
343         LASSERTF(nblocks > 0, "can't start %d credit transaction\n", nblocks);
344         handle = ext3_journal_start(inode, nblocks);
345
346         if (!IS_ERR(handle))
347                 LASSERT(current->journal_info == handle);
348         else
349                 CERROR("error starting handle for op %u (%u credits): rc %ld\n",
350                        op, nblocks, PTR_ERR(handle));
351         return handle;
352 }
353
354 /*
355  * Calculate the number of buffer credits needed to write multiple pages in
356  * a single ext3 transaction.  No, this shouldn't be here, but as yet ext3
357  * doesn't have a nice API for calculating this sort of thing in advance.
358  *
359  * See comment above ext3_writepage_trans_blocks for details.  We assume
360  * no data journaling is being done, but it does allow for all of the pages
361  * being non-contiguous.  If we are guaranteed contiguous pages we could
362  * reduce the number of (d)indirect blocks a lot.
363  *
364  * With N blocks per page and P pages, for each inode we have at most:
365  * N*P indirect
366  * min(N*P, blocksize/4 + 1) dindirect blocks
367  * niocount tindirect
368  *
369  * For the entire filesystem, we have at most:
370  * min(sum(nindir + P), ngroups) bitmap blocks (from the above)
371  * min(sum(nindir + P), gdblocks) group descriptor blocks (from the above)
372  * objcount inode blocks
373  * 1 superblock
374  * 2 * EXT3_SINGLEDATA_TRANS_BLOCKS for the quota files
375  *
376  * 1 EXT3_DATA_TRANS_BLOCKS for the last_rcvd update.
377  */
378 static int fsfilt_ext3_credits_needed(int objcount, struct fsfilt_objinfo *fso,
379                                       int niocount, struct niobuf_local *nb)
380 {
381         struct super_block *sb = fso->fso_dentry->d_inode->i_sb;
382         __u64 next_indir;
383         const int blockpp = 1 << (CFS_PAGE_SHIFT - sb->s_blocksize_bits);
384         int nbitmaps = 0, ngdblocks;
385         int needed = objcount + 1; /* inodes + superblock */
386         int i, j;
387
388         for (i = 0, j = 0; i < objcount; i++, fso++) {
389                 /* two or more dindirect blocks in case we cross boundary */
390                 int ndind = (long)((nb[j + fso->fso_bufcnt - 1].offset -
391                                     nb[j].offset) >>
392                                    sb->s_blocksize_bits) /
393                         (EXT3_ADDR_PER_BLOCK(sb) * EXT3_ADDR_PER_BLOCK(sb));
394                 nbitmaps += min(fso->fso_bufcnt, ndind > 0 ? ndind : 2);
395
396                 /* leaf, indirect, tindirect blocks for first block */
397                 nbitmaps += blockpp + 2;
398
399                 j += fso->fso_bufcnt;
400         }
401
402         next_indir = nb[0].offset +
403                 (EXT3_ADDR_PER_BLOCK(sb) << sb->s_blocksize_bits);
404         for (i = 1; i < niocount; i++) {
405                 if (nb[i].offset >= next_indir) {
406                         nbitmaps++;     /* additional indirect */
407                         next_indir = nb[i].offset +
408                                 (EXT3_ADDR_PER_BLOCK(sb)<<sb->s_blocksize_bits);
409                 } else if (nb[i].offset != nb[i - 1].offset + sb->s_blocksize) {
410                         nbitmaps++;     /* additional indirect */
411                 }
412                 nbitmaps += blockpp;    /* each leaf in different group? */
413         }
414
415         ngdblocks = nbitmaps;
416         if (nbitmaps > EXT3_SB(sb)->s_groups_count)
417                 nbitmaps = EXT3_SB(sb)->s_groups_count;
418         if (ngdblocks > EXT3_SB(sb)->s_gdb_count)
419                 ngdblocks = EXT3_SB(sb)->s_gdb_count;
420
421         needed += nbitmaps + ngdblocks;
422
423         /* last_rcvd update */
424         needed += FSFILT_DATA_TRANS_BLOCKS(sb);
425
426 #if defined(CONFIG_QUOTA)
427         /* We assume that there will be 1 bit set in s_dquot.flags for each
428          * quota file that is active.  This is at least true for now.
429          */
430         needed += hweight32(ll_sb_any_quota_active(sb)) *
431                 FSFILT_SINGLEDATA_TRANS_BLOCKS(sb);
432 #endif
433
434         return needed;
435 }
436
437 /* We have to start a huge journal transaction here to hold all of the
438  * metadata for the pages being written here.  This is necessitated by
439  * the fact that we do lots of prepare_write operations before we do
440  * any of the matching commit_write operations, so even if we split
441  * up to use "smaller" transactions none of them could complete until
442  * all of them were opened.  By having a single journal transaction,
443  * we eliminate duplicate reservations for common blocks like the
444  * superblock and group descriptors or bitmaps.
445  *
446  * We will start the transaction here, but each prepare_write will
447  * add a refcount to the transaction, and each commit_write will
448  * remove a refcount.  The transaction will be closed when all of
449  * the pages have been written.
450  */
451 static void *fsfilt_ext3_brw_start(int objcount, struct fsfilt_objinfo *fso,
452                                    int niocount, struct niobuf_local *nb,
453                                    void *desc_private, int logs)
454 {
455         journal_t *journal;
456         handle_t *handle;
457         int needed;
458         ENTRY;
459
460         LASSERT(current->journal_info == desc_private);
461         journal = EXT3_SB(fso->fso_dentry->d_inode->i_sb)->s_journal;
462         needed = fsfilt_ext3_credits_needed(objcount, fso, niocount, nb);
463
464         /* The number of blocks we could _possibly_ dirty can very large.
465          * We reduce our request if it is absurd (and we couldn't get that
466          * many credits for a single handle anyways).
467          *
468          * At some point we have to limit the size of I/Os sent at one time,
469          * increase the size of the journal, or we have to calculate the
470          * actual journal requirements more carefully by checking all of
471          * the blocks instead of being maximally pessimistic.  It remains to
472          * be seen if this is a real problem or not.
473          */
474         if (needed > journal->j_max_transaction_buffers) {
475                 CERROR("want too many journal credits (%d) using %d instead\n",
476                        needed, journal->j_max_transaction_buffers);
477                 needed = journal->j_max_transaction_buffers;
478         }
479
480         LASSERTF(needed > 0, "can't start %d credit transaction\n", needed);
481         handle = ext3_journal_start(fso->fso_dentry->d_inode, needed);
482         if (IS_ERR(handle)) {
483                 CERROR("can't get handle for %d credits: rc = %ld\n", needed,
484                        PTR_ERR(handle));
485         } else {
486                 LASSERT(handle->h_buffer_credits >= needed);
487                 LASSERT(current->journal_info == handle);
488         }
489
490         RETURN(handle);
491 }
492
493 static int fsfilt_ext3_extend(struct inode *inode, unsigned int nblocks,void *h)
494 {
495        handle_t *handle = h;
496
497        /* fsfilt_extend called with nblocks = 0 for testing in special cases */
498        if (nblocks == 0) {
499                handle->h_buffer_credits = 0;
500                CWARN("setting credits of handle %p to zero by request\n", h);
501        }
502
503        if (handle->h_buffer_credits > nblocks)
504                 return 0;
505        if (ext3_journal_extend(handle, nblocks) == 0)
506                 return 0;
507
508        ext3_mark_inode_dirty(handle, inode);
509        return ext3_journal_restart(handle, nblocks);
510 }
511
512 static int fsfilt_ext3_commit(struct inode *inode, void *h, int force_sync)
513 {
514         int rc;
515         handle_t *handle = h;
516
517         LASSERT(current->journal_info == handle);
518         if (force_sync)
519                 handle->h_sync = 1; /* recovery likes this */
520
521         rc = ext3_journal_stop(handle);
522
523         return rc;
524 }
525
526 static int fsfilt_ext3_commit_async(struct inode *inode, void *h,
527                                     void **wait_handle)
528 {
529         unsigned long tid;
530         transaction_t *transaction;
531         handle_t *handle = h;
532         journal_t *journal;
533         int rc;
534
535         LASSERT(current->journal_info == handle);
536
537         transaction = handle->h_transaction;
538         journal = transaction->t_journal;
539         tid = transaction->t_tid;
540         /* we don't want to be blocked */
541         handle->h_sync = 0;
542         rc = ext3_journal_stop(handle);
543         if (rc) {
544                 CERROR("error while stopping transaction: %d\n", rc);
545                 return rc;
546         }
547         fsfilt_log_start_commit(journal, tid);
548
549         *wait_handle = (void *) tid;
550         CDEBUG(D_INODE, "commit async: %lu\n", (unsigned long) tid);
551         return 0;
552 }
553
554 static int fsfilt_ext3_commit_wait(struct inode *inode, void *h)
555 {
556         journal_t *journal = EXT3_JOURNAL(inode);
557         tid_t tid = (tid_t)(long)h;
558
559         CDEBUG(D_INODE, "commit wait: %lu\n", (unsigned long) tid);
560         if (unlikely(is_journal_aborted(journal)))
561                 return -EIO;
562
563         fsfilt_log_wait_commit(EXT3_JOURNAL(inode), tid);
564
565         if (unlikely(is_journal_aborted(journal)))
566                 return -EIO;
567         return 0;
568 }
569
570 static int fsfilt_ext3_setattr(struct dentry *dentry, void *handle,
571                                struct iattr *iattr, int do_trunc)
572 {
573         struct inode *inode = dentry->d_inode;
574         int rc = 0;
575
576         /* Avoid marking the inode dirty on the superblock list unnecessarily.
577          * We are already writing the inode to disk as part of this
578          * transaction and want to avoid a lot of extra inode writeout
579          * later on. b=9828 */
580         if (iattr->ia_valid & ATTR_SIZE && !do_trunc) {
581                 /* ATTR_SIZE would invoke truncate: clear it */
582                 iattr->ia_valid &= ~ATTR_SIZE;
583                 EXT3_I(inode)->i_disksize = iattr->ia_size;
584                 i_size_write(inode, iattr->ia_size);
585
586                 if (iattr->ia_valid & ATTR_UID)
587                         inode->i_uid = iattr->ia_uid;
588                 if (iattr->ia_valid & ATTR_GID)
589                         inode->i_gid = iattr->ia_gid;
590                 if (iattr->ia_valid & ATTR_ATIME)
591                         inode->i_atime = iattr->ia_atime;
592                 if (iattr->ia_valid & ATTR_MTIME)
593                         inode->i_mtime = iattr->ia_mtime;
594                 if (iattr->ia_valid & ATTR_CTIME)
595                         inode->i_ctime = iattr->ia_ctime;
596                 if (iattr->ia_valid & ATTR_MODE) {
597                         inode->i_mode = iattr->ia_mode;
598
599                         if (!cfs_curproc_is_in_groups(inode->i_gid) &&
600                             !cfs_capable(CFS_CAP_FSETID))
601                                 inode->i_mode &= ~S_ISGID;
602                 }
603
604                 inode->i_sb->s_op->dirty_inode(inode);
605
606                 goto out;
607         }
608
609         /* Don't allow setattr to change file type */
610         if (iattr->ia_valid & ATTR_MODE)
611                 iattr->ia_mode = (inode->i_mode & S_IFMT) |
612                                  (iattr->ia_mode & ~S_IFMT);
613
614         /* We set these flags on the client, but have already checked perms
615          * so don't confuse inode_change_ok. */
616         iattr->ia_valid &= ~(ATTR_MTIME_SET | ATTR_ATIME_SET);
617
618         if (inode->i_op->setattr) {
619                 rc = inode->i_op->setattr(dentry, iattr);
620         } else {
621                 rc = inode_change_ok(inode, iattr);
622                 if (!rc)
623                         rc = inode_setattr(inode, iattr);
624         }
625
626  out:
627         RETURN(rc);
628 }
629
630 static int fsfilt_ext3_iocontrol(struct inode *inode, struct file *file,
631                                  unsigned int cmd, unsigned long arg)
632 {
633         int rc = 0;
634         ENTRY;
635
636         /* FIXME: Can't do this because of nested transaction deadlock */
637         if (cmd == EXT3_IOC_SETFLAGS) {
638                 /* We can't enable data journaling on OST objects, because
639                 * this forces the transaction to be closed in order to
640                 * flush the journal, but the caller will already have a
641                 * compound transaction open to update the last_rcvd file,
642                 * and this thread would deadlock trying to set the flag. */
643                 if ((*(int *)arg) & EXT3_JOURNAL_DATA_FL) {
644                         CERROR("can't set data journal flag on file\n");
645                         RETURN(-EPERM);
646                 }
647                 /* Because the MDS does not see the EXTENTS_FL set on the
648                  * OST objects, mask this flag into all set flags.  It is
649                  * not legal to clear this flag in any case, so we are not
650                  * changing the functionality by doing this.  b=22911 */
651                 *(int *)arg |= EXT3_I(inode)->i_flags & EXT3_EXTENTS_FL;
652         }
653
654 #ifdef HAVE_EXT4_LDISKFS
655         /* ext4_ioctl does not have a inode argument */
656         if (inode->i_fop->unlocked_ioctl)
657                 rc = inode->i_fop->unlocked_ioctl(file, cmd, arg);
658 #else
659         if (inode->i_fop->ioctl)
660                 rc = inode->i_fop->ioctl(inode, file, cmd, arg);
661 #endif
662         else
663                 RETURN(-ENOTTY);
664
665         RETURN(rc);
666 }
667
668 static int fsfilt_ext3_set_md(struct inode *inode, void *handle,
669                               void *lmm, int lmm_size, const char *name)
670 {
671         int rc;
672
673         LASSERT(TRYLOCK_INODE_MUTEX(inode) == 0);
674
675         rc = ext3_xattr_set_handle(handle, inode, EXT3_XATTR_INDEX_TRUSTED,
676                                    name, lmm, lmm_size, XATTR_NO_CTIME);
677
678
679         if (rc && rc != -EROFS)
680                 CERROR("error adding MD data to inode %lu: rc = %d\n",
681                        inode->i_ino, rc);
682         return rc;
683 }
684
685 /* Must be called with i_mutex held */
686 static int fsfilt_ext3_get_md(struct inode *inode, void *lmm, int lmm_size,
687                               const char *name)
688 {
689         int rc;
690
691         LASSERT(TRYLOCK_INODE_MUTEX(inode) == 0);
692
693         rc = ext3_xattr_get(inode, EXT3_XATTR_INDEX_TRUSTED,
694                             name, lmm, lmm_size);
695
696         /* This gives us the MD size */
697         if (lmm == NULL)
698                 return (rc == -ENODATA) ? 0 : rc;
699
700         if (rc < 0) {
701                 CDEBUG(D_INFO, "error getting EA %d/%s from inode %lu: rc %d\n",
702                        EXT3_XATTR_INDEX_TRUSTED, name,
703                        inode->i_ino, rc);
704                 memset(lmm, 0, lmm_size);
705                 return (rc == -ENODATA) ? 0 : rc;
706         }
707
708         return rc;
709 }
710
711 static int fsfilt_ext3_send_bio(int rw, struct inode *inode, struct bio *bio)
712 {
713         submit_bio(rw, bio);
714         return 0;
715 }
716
717 static ssize_t fsfilt_ext3_readpage(struct file *file, char *buf, size_t count,
718                                     loff_t *off)
719 {
720         struct inode *inode = file->f_dentry->d_inode;
721         int rc = 0;
722
723         if (S_ISREG(inode->i_mode))
724                 rc = file->f_op->read(file, buf, count, off);
725         else {
726                 const int blkbits = inode->i_sb->s_blocksize_bits;
727                 const int blksize = inode->i_sb->s_blocksize;
728
729                 CDEBUG(D_EXT2, "reading %lu at dir %lu+%llu\n",
730                        (unsigned long)count, inode->i_ino, *off);
731                 while (count > 0) {
732                         struct buffer_head *bh;
733
734                         bh = NULL;
735                         if (*off < i_size_read(inode)) {
736                                 int err = 0;
737
738                                 bh = ext3_bread(NULL, inode, *off >> blkbits,
739                                                 0, &err);
740
741                                 CDEBUG(D_EXT2, "read %u@%llu\n", blksize, *off);
742
743                                 if (bh) {
744                                         memcpy(buf, bh->b_data, blksize);
745                                         brelse(bh);
746                                 } else if (err) {
747                                         /* XXX in theory we should just fake
748                                          * this buffer and continue like ext3,
749                                          * especially if this is a partial read
750                                          */
751                                         CERROR("error read dir %lu+%llu: %d\n",
752                                                inode->i_ino, *off, err);
753                                         RETURN(err);
754                                 }
755                         }
756                         if (!bh) {
757                                 struct ext3_dir_entry_2 *fake = (void *)buf;
758
759                                 CDEBUG(D_EXT2, "fake %u@%llu\n", blksize, *off);
760                                 memset(fake, 0, sizeof(*fake));
761                                 fake->rec_len = cpu_to_le16(blksize);
762                         }
763                         count -= blksize;
764                         buf += blksize;
765                         *off += blksize;
766                         rc += blksize;
767                 }
768         }
769
770         return rc;
771 }
772
773 static void fsfilt_ext3_cb_func(struct journal_callback *jcb, int error)
774 {
775         struct fsfilt_cb_data *fcb = (struct fsfilt_cb_data *)jcb;
776
777         fcb->cb_func(fcb->cb_obd, fcb->cb_last_rcvd, fcb->cb_data, error);
778
779         OBD_SLAB_FREE(fcb, fcb_cache, sizeof *fcb);
780 }
781
782 static int fsfilt_ext3_add_journal_cb(struct obd_device *obd, __u64 last_rcvd,
783                                       void *handle, fsfilt_cb_t cb_func,
784                                       void *cb_data)
785 {
786         struct fsfilt_cb_data *fcb;
787
788         OBD_SLAB_ALLOC_PTR_GFP(fcb, fcb_cache, CFS_ALLOC_IO);
789         if (fcb == NULL)
790                 RETURN(-ENOMEM);
791
792         fcb->cb_func = cb_func;
793         fcb->cb_obd = obd;
794         fcb->cb_last_rcvd = last_rcvd;
795         fcb->cb_data = cb_data;
796
797         CDEBUG(D_EXT2, "set callback for last_rcvd: "LPD64"\n", last_rcvd);
798         fsfilt_journal_callback_set(handle, fsfilt_ext3_cb_func,
799                                     (struct journal_callback *)fcb);
800
801         return 0;
802 }
803
804 /*
805  * We need to hack the return value for the free inode counts because
806  * the current EA code requires one filesystem block per inode with EAs,
807  * so it is possible to run out of blocks before we run out of inodes.
808  *
809  * This can be removed when the ext3 EA code is fixed.
810  */
811 static int fsfilt_ext3_statfs(struct super_block *sb, struct obd_statfs *osfs)
812 {
813         struct kstatfs sfs;
814         int rc;
815
816         memset(&sfs, 0, sizeof(sfs));
817         rc = ll_do_statfs(sb, &sfs);
818         if (!rc && sfs.f_bfree < sfs.f_ffree) {
819                 sfs.f_files = (sfs.f_files - sfs.f_ffree) + sfs.f_bfree;
820                 sfs.f_ffree = sfs.f_bfree;
821         }
822
823         statfs_pack(osfs, &sfs);
824         return rc;
825 }
826
827 static int fsfilt_ext3_sync(struct super_block *sb)
828 {
829         return ext3_force_commit(sb);
830 }
831
832 #ifndef EXT3_EXTENTS_FL
833 #define EXT3_EXTENTS_FL                 0x00080000 /* Inode uses extents */
834 #endif
835
836 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,17))
837 # define fsfilt_up_truncate_sem(inode)  up(&LDISKFS_I(inode)->truncate_sem);
838 # define fsfilt_down_truncate_sem(inode)  down(&LDISKFS_I(inode)->truncate_sem);
839 #else
840 # ifdef HAVE_EXT4_LDISKFS
841 #  ifdef WALK_SPACE_HAS_DATA_SEM /* We only use it in fsfilt_map_nblocks() for now */
842 #   define fsfilt_up_truncate_sem(inode) do{ }while(0)
843 #   define fsfilt_down_truncate_sem(inode) do{ }while(0)
844 #  else
845 #   define fsfilt_up_truncate_sem(inode) up_write((&EXT4_I(inode)->i_data_sem))
846 #   define fsfilt_down_truncate_sem(inode) down_write((&EXT4_I(inode)->i_data_sem))
847 #  endif
848 # else
849 #  define fsfilt_up_truncate_sem(inode)  mutex_unlock(&EXT3_I(inode)->truncate_mutex)
850 #  define fsfilt_down_truncate_sem(inode)  mutex_lock(&EXT3_I(inode)->truncate_mutex)
851 # endif
852 #endif
853
854 #ifndef EXT_ASSERT
855 #define EXT_ASSERT(cond)  BUG_ON(!(cond))
856 #endif
857
858 #ifdef EXT3_EXT_HAS_NO_TREE
859 /* for kernels 2.6.18 and later */
860 #ifdef HAVE_EXT4_LDISKFS
861 #define EXT_GENERATION(inode)           (EXT4_I(inode)->i_ext_generation)
862 #else
863 #define EXT_GENERATION(inode)           ext_generation(inode)
864 #endif
865 #define ext3_ext_base                   inode
866 #define ext3_ext_base2inode(inode)      (inode)
867 #define EXT_DEPTH(inode)                ext_depth(inode)
868 #define fsfilt_ext3_ext_walk_space(inode, block, num, cb, cbdata) \
869                         ext3_ext_walk_space(inode, block, num, cb, cbdata);
870 #else
871 #define ext3_ext_base                   ext3_extents_tree
872 #define ext3_ext_base2inode(tree)       (tree->inode)
873 #define fsfilt_ext3_ext_walk_space(tree, block, num, cb, cbdata) \
874                         ext3_ext_walk_space(tree, block, num, cb);
875 #endif
876
877 #ifdef EXT_INSERT_EXTENT_WITH_5ARGS
878 #define fsfilt_ext3_ext_insert_extent(handle, inode, path, newext, flag) \
879                ext3_ext_insert_extent(handle, inode, path, newext, flag)
880 #else
881 #define fsfilt_ext3_ext_insert_extent(handle, inode, path, newext, flag) \
882                ext3_ext_insert_extent(handle, inode, path, newext)
883 #endif
884
885 #include <linux/lustre_version.h>
886
887 struct bpointers {
888         unsigned long *blocks;
889         int *created;
890         unsigned long start;
891         int num;
892         int init_num;
893         int create;
894 };
895
896 static long ext3_ext_find_goal(struct inode *inode, struct ext3_ext_path *path,
897                                unsigned long block, int *aflags)
898 {
899         struct ext3_inode_info *ei = EXT3_I(inode);
900         unsigned long bg_start;
901         unsigned long colour;
902         int depth;
903
904         if (path) {
905                 struct ext3_extent *ex;
906                 depth = path->p_depth;
907
908                 /* try to predict block placement */
909                 if ((ex = path[depth].p_ext))
910                         return ext_pblock(ex) + (block - le32_to_cpu(ex->ee_block));
911
912                 /* it looks index is empty
913                  * try to find starting from index itself */
914                 if (path[depth].p_bh)
915                         return path[depth].p_bh->b_blocknr;
916         }
917
918         /* OK. use inode's group */
919         bg_start = (ei->i_block_group * EXT3_BLOCKS_PER_GROUP(inode->i_sb)) +
920                 le32_to_cpu(EXT3_SB(inode->i_sb)->s_es->s_first_data_block);
921         colour = (current->pid % 16) *
922                 (EXT3_BLOCKS_PER_GROUP(inode->i_sb) / 16);
923         return bg_start + colour + block;
924 }
925
926 #define ll_unmap_underlying_metadata(sb, blocknr) \
927         unmap_underlying_metadata((sb)->s_bdev, blocknr)
928
929 #ifndef EXT3_MB_HINT_GROUP_ALLOC
930 static unsigned long new_blocks(handle_t *handle, struct ext3_ext_base *base,
931                                 struct ext3_ext_path *path, unsigned long block,
932                                 unsigned long *count, int *err)
933 {
934         unsigned long pblock, goal;
935         int aflags = 0;
936         struct inode *inode = ext3_ext_base2inode(base);
937
938         goal = ext3_ext_find_goal(inode, path, block, &aflags);
939         aflags |= 2; /* block have been already reserved */
940         pblock = ext3_mb_new_blocks(handle, inode, goal, count, aflags, err);
941         return pblock;
942
943 }
944 #else
945 static unsigned long new_blocks(handle_t *handle, struct ext3_ext_base *base,
946                                 struct ext3_ext_path *path, unsigned long block,
947                                 unsigned long *count, int *err)
948 {
949         struct inode *inode = ext3_ext_base2inode(base);
950         struct ext3_allocation_request ar;
951         unsigned long pblock;
952         int aflags;
953
954         /* find neighbour allocated blocks */
955         ar.lleft = block;
956         *err = ext3_ext_search_left(base, path, &ar.lleft, &ar.pleft);
957         if (*err)
958                 return 0;
959         ar.lright = block;
960         *err = ext3_ext_search_right(base, path, &ar.lright, &ar.pright);
961         if (*err)
962                 return 0;
963
964         /* allocate new block */
965         ar.goal = ext3_ext_find_goal(inode, path, block, &aflags);
966         ar.inode = inode;
967         ar.logical = block;
968         ar.len = *count;
969         ar.flags = EXT3_MB_HINT_DATA;
970         pblock = ext3_mb_new_blocks(handle, &ar, err);
971         *count = ar.len;
972         return pblock;
973 }
974 #endif
975
976 #ifdef EXT3_EXT_HAS_NO_TREE
977 static int ext3_ext_new_extent_cb(struct ext3_ext_base *base,
978                                   struct ext3_ext_path *path,
979                                   struct ext3_ext_cache *cex,
980 #ifdef HAVE_EXT_PREPARE_CB_EXTENT
981                                    struct ext3_extent *ex,
982 #endif
983                                   void *cbdata)
984 {
985         struct bpointers *bp = cbdata;
986 #else
987 static int ext3_ext_new_extent_cb(struct ext3_ext_base *base,
988                                   struct ext3_ext_path *path,
989                                   struct ext3_ext_cache *cex
990 #ifdef HAVE_EXT_PREPARE_CB_EXTENT
991                                   , struct ext3_extent *ex
992 #endif
993                                  )
994 {
995         struct bpointers *bp = base->private;
996 #endif
997         struct inode *inode = ext3_ext_base2inode(base);
998         struct ext3_extent nex;
999         unsigned long pblock;
1000         unsigned long tgen;
1001         int err, i;
1002         unsigned long count;
1003         handle_t *handle;
1004
1005         i = EXT_DEPTH(base);
1006         EXT_ASSERT(i == path->p_depth);
1007         EXT_ASSERT(path[i].p_hdr);
1008
1009         if (cex->ec_type == EXT3_EXT_CACHE_EXTENT) {
1010                 err = EXT_CONTINUE;
1011                 goto map;
1012         }
1013
1014         if (bp->create == 0) {
1015                 i = 0;
1016                 if (cex->ec_block < bp->start)
1017                         i = bp->start - cex->ec_block;
1018                 if (i >= cex->ec_len)
1019                         CERROR("nothing to do?! i = %d, e_num = %u\n",
1020                                         i, cex->ec_len);
1021                 for (; i < cex->ec_len && bp->num; i++) {
1022                         *(bp->created) = 0;
1023                         bp->created++;
1024                         *(bp->blocks) = 0;
1025                         bp->blocks++;
1026                         bp->num--;
1027                         bp->start++;
1028                 }
1029
1030                 return EXT_CONTINUE;
1031         }
1032
1033         tgen = EXT_GENERATION(base);
1034         count = ext3_ext_calc_credits_for_insert(base, path);
1035         fsfilt_up_truncate_sem(inode);
1036
1037         handle = ext3_journal_start(inode, count+EXT3_ALLOC_NEEDED+1);
1038         if (IS_ERR(handle)) {
1039                 fsfilt_down_truncate_sem(inode);
1040                 return PTR_ERR(handle);
1041         }
1042
1043         fsfilt_down_truncate_sem(inode);
1044         if (tgen != EXT_GENERATION(base)) {
1045                 /* the tree has changed. so path can be invalid at moment */
1046                 ext3_journal_stop(handle);
1047                 return EXT_REPEAT;
1048         }
1049
1050         count = cex->ec_len;
1051         pblock = new_blocks(handle, base, path, cex->ec_block, &count, &err);
1052         if (!pblock)
1053                 goto out;
1054         EXT_ASSERT(count <= cex->ec_len);
1055
1056         /* insert new extent */
1057         nex.ee_block = cpu_to_le32(cex->ec_block);
1058         ext3_ext_store_pblock(&nex, pblock);
1059         nex.ee_len = cpu_to_le16(count);
1060         err = fsfilt_ext3_ext_insert_extent(handle, base, path, &nex, 0);
1061         if (err) {
1062                 /* free data blocks we just allocated */
1063                 /* not a good idea to call discard here directly,
1064                  * but otherwise we'd need to call it every free() */
1065 #ifdef EXT3_MB_HINT_GROUP_ALLOC
1066                 ext3_mb_discard_inode_preallocations(inode);
1067 #endif
1068                 ext3_free_blocks(handle, inode, ext_pblock(&nex),
1069                                  cpu_to_le16(nex.ee_len), 0);
1070                 goto out;
1071         }
1072
1073         /*
1074          * Putting len of the actual extent we just inserted,
1075          * we are asking ext3_ext_walk_space() to continue
1076          * scaning after that block
1077          */
1078         cex->ec_len = le16_to_cpu(nex.ee_len);
1079         cex->ec_start = ext_pblock(&nex);
1080         BUG_ON(le16_to_cpu(nex.ee_len) == 0);
1081         BUG_ON(le32_to_cpu(nex.ee_block) != cex->ec_block);
1082
1083 out:
1084         ext3_journal_stop(handle);
1085 map:
1086         if (err >= 0) {
1087                 /* map blocks */
1088                 if (bp->num == 0) {
1089                         CERROR("hmm. why do we find this extent?\n");
1090                         CERROR("initial space: %lu:%u\n",
1091                                 bp->start, bp->init_num);
1092                         CERROR("current extent: %u/%u/%llu %d\n",
1093                                 cex->ec_block, cex->ec_len,
1094                                 (unsigned long long)cex->ec_start,
1095                                 cex->ec_type);
1096                 }
1097                 i = 0;
1098                 if (cex->ec_block < bp->start)
1099                         i = bp->start - cex->ec_block;
1100                 if (i >= cex->ec_len)
1101                         CERROR("nothing to do?! i = %d, e_num = %u\n",
1102                                         i, cex->ec_len);
1103                 for (; i < cex->ec_len && bp->num; i++) {
1104                         *(bp->blocks) = cex->ec_start + i;
1105                         if (cex->ec_type == EXT3_EXT_CACHE_EXTENT) {
1106                                 *(bp->created) = 0;
1107                         } else {
1108                                 *(bp->created) = 1;
1109                                 /* unmap any possible underlying metadata from
1110                                  * the block device mapping.  bug 6998. */
1111                                 ll_unmap_underlying_metadata(inode->i_sb,
1112                                                              *(bp->blocks));
1113                         }
1114                         bp->created++;
1115                         bp->blocks++;
1116                         bp->num--;
1117                         bp->start++;
1118                 }
1119         }
1120         return err;
1121 }
1122
1123 int fsfilt_map_nblocks(struct inode *inode, unsigned long block,
1124                        unsigned long num, unsigned long *blocks,
1125                        int *created, int create)
1126 {
1127 #ifdef EXT3_EXT_HAS_NO_TREE
1128         struct ext3_ext_base *base = inode;
1129 #else
1130         struct ext3_extents_tree tree;
1131         struct ext3_ext_base *base = &tree;
1132 #endif
1133         struct bpointers bp;
1134         int err;
1135
1136         CDEBUG(D_OTHER, "blocks %lu-%lu requested for inode %u\n",
1137                block, block + num - 1, (unsigned) inode->i_ino);
1138
1139 #ifndef EXT3_EXT_HAS_NO_TREE
1140         ext3_init_tree_desc(base, inode);
1141         tree.private = &bp;
1142 #endif
1143         bp.blocks = blocks;
1144         bp.created = created;
1145         bp.start = block;
1146         bp.init_num = bp.num = num;
1147         bp.create = create;
1148
1149         fsfilt_down_truncate_sem(inode);
1150         err = fsfilt_ext3_ext_walk_space(base, block, num,
1151                                          ext3_ext_new_extent_cb, &bp);
1152         ext3_ext_invalidate_cache(base);
1153         fsfilt_up_truncate_sem(inode);
1154
1155         return err;
1156 }
1157
1158 int fsfilt_ext3_map_ext_inode_pages(struct inode *inode, struct page **page,
1159                                     int pages, unsigned long *blocks,
1160                                     int *created, int create)
1161 {
1162         int blocks_per_page = CFS_PAGE_SIZE >> inode->i_blkbits;
1163         int rc = 0, i = 0;
1164         struct page *fp = NULL;
1165         int clen = 0;
1166
1167         CDEBUG(D_OTHER, "inode %lu: map %d pages from %lu\n",
1168                 inode->i_ino, pages, (*page)->index);
1169
1170         /* pages are sorted already. so, we just have to find
1171          * contig. space and process them properly */
1172         while (i < pages) {
1173                 if (fp == NULL) {
1174                         /* start new extent */
1175                         fp = *page++;
1176                         clen = 1;
1177                         i++;
1178                         continue;
1179                 } else if (fp->index + clen == (*page)->index) {
1180                         /* continue the extent */
1181                         page++;
1182                         clen++;
1183                         i++;
1184                         continue;
1185                 }
1186
1187                 /* process found extent */
1188                 rc = fsfilt_map_nblocks(inode, fp->index * blocks_per_page,
1189                                         clen * blocks_per_page, blocks,
1190                                         created, create);
1191                 if (rc)
1192                         GOTO(cleanup, rc);
1193
1194                 /* look for next extent */
1195                 fp = NULL;
1196                 blocks += blocks_per_page * clen;
1197                 created += blocks_per_page * clen;
1198         }
1199
1200         if (fp)
1201                 rc = fsfilt_map_nblocks(inode, fp->index * blocks_per_page,
1202                                         clen * blocks_per_page, blocks,
1203                                         created, create);
1204 cleanup:
1205         return rc;
1206 }
1207
1208 extern int ext3_map_inode_page(struct inode *inode, struct page *page,
1209                                unsigned long *blocks, int *created, int create);
1210 int fsfilt_ext3_map_bm_inode_pages(struct inode *inode, struct page **page,
1211                                    int pages, unsigned long *blocks,
1212                                    int *created, int create)
1213 {
1214         int blocks_per_page = CFS_PAGE_SIZE >> inode->i_blkbits;
1215         unsigned long *b;
1216         int rc = 0, i, *cr;
1217
1218         for (i = 0, cr = created, b = blocks; i < pages; i++, page++) {
1219                 rc = ext3_map_inode_page(inode, *page, b, cr, create);
1220                 if (rc) {
1221                         CERROR("ino %lu, blk %lu cr %u create %d: rc %d\n",
1222                                inode->i_ino, *b, *cr, create, rc);
1223                         break;
1224                 }
1225
1226                 b += blocks_per_page;
1227                 cr += blocks_per_page;
1228         }
1229         return rc;
1230 }
1231
1232 int fsfilt_ext3_map_inode_pages(struct inode *inode, struct page **page,
1233                                 int pages, unsigned long *blocks,
1234                                 int *created, int create,
1235                                 cfs_semaphore_t *optional_sem)
1236 {
1237         int rc;
1238
1239         if (EXT3_I(inode)->i_flags & EXT3_EXTENTS_FL) {
1240                 rc = fsfilt_ext3_map_ext_inode_pages(inode, page, pages,
1241                                                      blocks, created, create);
1242                 return rc;
1243         }
1244         if (optional_sem != NULL)
1245                 cfs_down(optional_sem);
1246         rc = fsfilt_ext3_map_bm_inode_pages(inode, page, pages, blocks,
1247                                             created, create);
1248         if (optional_sem != NULL)
1249                 cfs_up(optional_sem);
1250
1251         return rc;
1252 }
1253
1254 int fsfilt_ext3_read(struct inode *inode, void *buf, int size, loff_t *offs)
1255 {
1256         unsigned long block;
1257         struct buffer_head *bh;
1258         int err, blocksize, csize, boffs, osize = size;
1259
1260         /* prevent reading after eof */
1261         cfs_lock_kernel();
1262         if (i_size_read(inode) < *offs + size) {
1263                 size = i_size_read(inode) - *offs;
1264                 cfs_unlock_kernel();
1265                 if (size < 0) {
1266                         CDEBUG(D_EXT2, "size %llu is too short for read @%llu\n",
1267                                i_size_read(inode), *offs);
1268                         return -EBADR;
1269                 } else if (size == 0) {
1270                         return 0;
1271                 }
1272         } else {
1273                 cfs_unlock_kernel();
1274         }
1275
1276         blocksize = 1 << inode->i_blkbits;
1277
1278         while (size > 0) {
1279                 block = *offs >> inode->i_blkbits;
1280                 boffs = *offs & (blocksize - 1);
1281                 csize = min(blocksize - boffs, size);
1282                 bh = ext3_bread(NULL, inode, block, 0, &err);
1283                 if (!bh) {
1284                         CERROR("can't read block: %d\n", err);
1285                         return err;
1286                 }
1287
1288                 memcpy(buf, bh->b_data + boffs, csize);
1289                 brelse(bh);
1290
1291                 *offs += csize;
1292                 buf += csize;
1293                 size -= csize;
1294         }
1295         return osize;
1296 }
1297 EXPORT_SYMBOL(fsfilt_ext3_read);
1298
1299 static int fsfilt_ext3_read_record(struct file * file, void *buf,
1300                                    int size, loff_t *offs)
1301 {
1302         int rc;
1303         rc = fsfilt_ext3_read(file->f_dentry->d_inode, buf, size, offs);
1304         if (rc > 0)
1305                 rc = 0;
1306         return rc;
1307 }
1308
1309 int fsfilt_ext3_write_handle(struct inode *inode, void *buf, int bufsize,
1310                                 loff_t *offs, handle_t *handle)
1311 {
1312         struct buffer_head *bh = NULL;
1313         loff_t old_size = i_size_read(inode), offset = *offs;
1314         loff_t new_size = i_size_read(inode);
1315         unsigned long block;
1316         int err = 0, blocksize = 1 << inode->i_blkbits, size, boffs;
1317
1318         while (bufsize > 0) {
1319                 if (bh != NULL)
1320                         brelse(bh);
1321
1322                 block = offset >> inode->i_blkbits;
1323                 boffs = offset & (blocksize - 1);
1324                 size = min(blocksize - boffs, bufsize);
1325                 bh = ext3_bread(handle, inode, block, 1, &err);
1326                 if (!bh) {
1327                         CERROR("can't read/create block: %d\n", err);
1328                         break;
1329                 }
1330
1331                 err = ext3_journal_get_write_access(handle, bh);
1332                 if (err) {
1333                         CERROR("journal_get_write_access() returned error %d\n",
1334                                err);
1335                         break;
1336                 }
1337                 LASSERT(bh->b_data + boffs + size <= bh->b_data + bh->b_size);
1338                 memcpy(bh->b_data + boffs, buf, size);
1339                 err = ext3_journal_dirty_metadata(handle, bh);
1340                 if (err) {
1341                         CERROR("journal_dirty_metadata() returned error %d\n",
1342                                err);
1343                         break;
1344                 }
1345                 if (offset + size > new_size)
1346                         new_size = offset + size;
1347                 offset += size;
1348                 bufsize -= size;
1349                 buf += size;
1350         }
1351         if (bh)
1352                 brelse(bh);
1353
1354         /* correct in-core and on-disk sizes */
1355         if (new_size > i_size_read(inode)) {
1356                 cfs_lock_kernel();
1357                 if (new_size > i_size_read(inode))
1358                         i_size_write(inode, new_size);
1359                 if (i_size_read(inode) > EXT3_I(inode)->i_disksize)
1360                         EXT3_I(inode)->i_disksize = i_size_read(inode);
1361                 if (i_size_read(inode) > old_size)
1362                         mark_inode_dirty(inode);
1363                 cfs_unlock_kernel();
1364         }
1365
1366         if (err == 0)
1367                 *offs = offset;
1368         return err;
1369 }
1370 EXPORT_SYMBOL(fsfilt_ext3_write_handle);
1371
1372 static int fsfilt_ext3_write_record(struct file *file, void *buf, int bufsize,
1373                                     loff_t *offs, int force_sync)
1374 {
1375         struct inode *inode = file->f_dentry->d_inode;
1376         handle_t *handle;
1377         int err, block_count = 0, blocksize;
1378
1379         /* Determine how many transaction credits are needed */
1380         blocksize = 1 << inode->i_blkbits;
1381         block_count = (*offs & (blocksize - 1)) + bufsize;
1382         block_count = (block_count + blocksize - 1) >> inode->i_blkbits;
1383
1384         handle = ext3_journal_start(inode,
1385                                block_count * FSFILT_DATA_TRANS_BLOCKS(inode->i_sb) + 2);
1386         if (IS_ERR(handle)) {
1387                 CERROR("can't start transaction for %d blocks (%d bytes)\n",
1388                        block_count * FSFILT_DATA_TRANS_BLOCKS(inode->i_sb) + 2, bufsize);
1389                 return PTR_ERR(handle);
1390         }
1391
1392         err = fsfilt_ext3_write_handle(inode, buf, bufsize, offs, handle);
1393
1394         if (!err && force_sync)
1395                 handle->h_sync = 1; /* recovery likes this */
1396
1397         ext3_journal_stop(handle);
1398
1399         return err;
1400 }
1401
1402 static int fsfilt_ext3_setup(struct super_block *sb)
1403 {
1404 #if ((LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,6)) && \
1405      defined(HAVE_QUOTA_SUPPORT)) || defined(S_PDIROPS)
1406         struct ext3_sb_info *sbi = EXT3_SB(sb);
1407 #if 0
1408         sbi->dx_lock = fsfilt_ext3_dx_lock;
1409         sbi->dx_unlock = fsfilt_ext3_dx_unlock;
1410 #endif
1411 #endif
1412 #ifdef S_PDIROPS
1413         CWARN("Enabling PDIROPS\n");
1414         set_opt(sbi->s_mount_opt, PDIROPS);
1415         sb->s_flags |= S_PDIROPS;
1416 #endif
1417         if (!EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1418                 CWARN("filesystem doesn't have dir_index feature enabled\n");
1419 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,6)) && defined(HAVE_QUOTA_SUPPORT)
1420         /* enable journaled quota support */
1421         /* kfreed in ext3_put_super() */
1422         sbi->s_qf_names[USRQUOTA] = kstrdup("lquota.user.reserved", GFP_KERNEL);
1423         if (!sbi->s_qf_names[USRQUOTA])
1424                 return -ENOMEM;
1425         sbi->s_qf_names[GRPQUOTA] = kstrdup("lquota.group.reserved", GFP_KERNEL);
1426         if (!sbi->s_qf_names[GRPQUOTA]) {
1427                 kfree(sbi->s_qf_names[USRQUOTA]);
1428                 sbi->s_qf_names[USRQUOTA] = NULL;
1429                 return -ENOMEM;
1430         }
1431         sbi->s_jquota_fmt = QFMT_VFS_V0;
1432 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,13))
1433         set_opt(sbi->s_mount_opt, QUOTA);
1434 #endif
1435 #endif
1436         return 0;
1437 }
1438
1439 /* If fso is NULL, op is FSFILT operation, otherwise op is number of fso
1440    objects. Logs is number of logfiles to update */
1441 static int fsfilt_ext3_get_op_len(int op, struct fsfilt_objinfo *fso, int logs)
1442 {
1443         if ( !fso ) {
1444                 switch(op) {
1445                 case FSFILT_OP_CREATE:
1446                                  /* directory leaf, index & indirect & EA*/
1447                         return 4 + 3 * logs;
1448                 case FSFILT_OP_UNLINK:
1449                         return 3 * logs;
1450                 }
1451         } else {
1452                 int i;
1453                 int needed = 0;
1454                 struct super_block *sb = fso->fso_dentry->d_inode->i_sb;
1455                 int blockpp = 1 << (CFS_PAGE_SHIFT - sb->s_blocksize_bits);
1456                 int addrpp = EXT3_ADDR_PER_BLOCK(sb) * blockpp;
1457                 for (i = 0; i < op; i++, fso++) {
1458                         int nblocks = fso->fso_bufcnt * blockpp;
1459                         int ndindirect = min(nblocks, addrpp + 1);
1460                         int nindir = nblocks + ndindirect + 1;
1461
1462                         needed += nindir;
1463                 }
1464                 return needed + 3 * logs;
1465         }
1466
1467         return 0;
1468 }
1469
1470 #ifdef HAVE_QUOTA_SUPPORT
1471 #define DQINFO_COPY(out, in)                    \
1472 do {                                            \
1473         Q_COPY(out, in, dqi_bgrace);            \
1474         Q_COPY(out, in, dqi_igrace);            \
1475         Q_COPY(out, in, dqi_flags);             \
1476         Q_COPY(out, in, dqi_valid);             \
1477 } while (0)
1478
1479 #define DQBLK_COPY(out, in)                     \
1480 do {                                            \
1481         Q_COPY(out, in, dqb_bhardlimit);        \
1482         Q_COPY(out, in, dqb_bsoftlimit);        \
1483         Q_COPY(out, in, dqb_curspace);          \
1484         Q_COPY(out, in, dqb_ihardlimit);        \
1485         Q_COPY(out, in, dqb_isoftlimit);        \
1486         Q_COPY(out, in, dqb_curinodes);         \
1487         Q_COPY(out, in, dqb_btime);             \
1488         Q_COPY(out, in, dqb_itime);             \
1489         Q_COPY(out, in, dqb_valid);             \
1490 } while (0)
1491
1492 static int fsfilt_ext3_quotactl(struct super_block *sb,
1493                                 struct obd_quotactl *oqc)
1494 {
1495         int i, rc = 0, error = 0;
1496         const struct quotactl_ops *qcop;
1497         struct if_dqinfo *info;
1498         struct if_dqblk *dqblk;
1499         ENTRY;
1500
1501         if (!sb->s_qcop)
1502                 RETURN(-ENOSYS);
1503
1504         OBD_ALLOC_PTR(info);
1505         if (!info)
1506                 RETURN(-ENOMEM);
1507         OBD_ALLOC_PTR(dqblk);
1508         if (!dqblk) {
1509                 OBD_FREE_PTR(info);
1510                 RETURN(-ENOMEM);
1511         }
1512
1513         DQINFO_COPY(info, &oqc->qc_dqinfo);
1514         DQBLK_COPY(dqblk, &oqc->qc_dqblk);
1515
1516         qcop = sb->s_qcop;
1517         if (oqc->qc_cmd == Q_QUOTAON || oqc->qc_cmd == Q_QUOTAOFF) {
1518                 for (i = 0; i < MAXQUOTAS; i++) {
1519                         if (!Q_TYPESET(oqc, i))
1520                                 continue;
1521
1522                         if (oqc->qc_cmd == Q_QUOTAON) {
1523                                 char *name[MAXQUOTAS] = LUSTRE_OPQFILES_NAMES_V2;
1524
1525                                 LASSERT(oqc->qc_id == LUSTRE_QUOTA_V2);
1526
1527                                 rc = ll_quota_on(sb, i, QFMT_VFS_V0,
1528                                                  name[i], 0);
1529                         } else if (oqc->qc_cmd == Q_QUOTAOFF) {
1530                                 rc = ll_quota_off(sb, i, 0);
1531                         }
1532
1533                         if (rc == -EBUSY)
1534                                 error = rc;
1535                         else if (rc)
1536                                 GOTO(out, rc);
1537                 }
1538                 GOTO(out, rc ?: error);
1539         }
1540
1541         switch (oqc->qc_cmd) {
1542         case Q_GETOINFO:
1543         case Q_GETINFO:
1544                 if (!qcop->get_info)
1545                         GOTO(out, rc = -ENOSYS);
1546                 rc = qcop->get_info(sb, oqc->qc_type, info);
1547                 break;
1548         case Q_SETQUOTA:
1549         case Q_INITQUOTA:
1550                 if (!qcop->set_dqblk)
1551                         GOTO(out, rc = -ENOSYS);
1552                 rc = qcop->set_dqblk(sb, oqc->qc_type, oqc->qc_id, dqblk);
1553                 break;
1554         case Q_GETOQUOTA:
1555         case Q_GETQUOTA:
1556                 if (!qcop->get_dqblk)
1557                         GOTO(out, rc = -ENOSYS);
1558                 rc = qcop->get_dqblk(sb, oqc->qc_type, oqc->qc_id, dqblk);
1559                 if (!rc)
1560                         dqblk->dqb_valid = QIF_LIMITS | QIF_USAGE;
1561                 break;
1562         case Q_SYNC:
1563                 if (!sb->s_qcop->quota_sync)
1564                         GOTO(out, rc = -ENOSYS);
1565                 qcop->quota_sync(sb, oqc->qc_type);
1566                 break;
1567         case Q_FINVALIDATE:
1568                 CDEBUG(D_WARNING, "invalidating operational quota files\n");
1569                 for (i = 0; i < MAXQUOTAS; i++) {
1570                         struct file *fp;
1571                         char *name[MAXQUOTAS] = LUSTRE_OPQFILES_NAMES_V2;
1572
1573                         LASSERT(oqc->qc_id == LUSTRE_QUOTA_V2);
1574
1575                         if (!Q_TYPESET(oqc, i))
1576                                 continue;
1577
1578                         fp = filp_open(name[i], O_CREAT | O_TRUNC | O_RDWR, 0644);
1579                         if (IS_ERR(fp)) {
1580                                 rc = PTR_ERR(fp);
1581                                 CERROR("error invalidating operational quota file"
1582                                        " %s (rc:%d)\n", name[i], rc);
1583                         } else {
1584                                 filp_close(fp, 0);
1585                         }
1586
1587                 }
1588                 break;
1589         default:
1590                 CERROR("unsupported quotactl command: %d\n", oqc->qc_cmd);
1591                 LBUG();
1592         }
1593 out:
1594         DQINFO_COPY(&oqc->qc_dqinfo, info);
1595         DQBLK_COPY(&oqc->qc_dqblk, dqblk);
1596
1597         OBD_FREE_PTR(info);
1598         OBD_FREE_PTR(dqblk);
1599
1600         if (rc)
1601                 CDEBUG(D_QUOTA, "quotactl command %#x, id %u, type %u "
1602                                 "failed: %d\n",
1603                        oqc->qc_cmd, oqc->qc_id, oqc->qc_type, rc);
1604         RETURN(rc);
1605 }
1606
1607 struct chk_dqblk{
1608         cfs_hlist_node_t        dqb_hash;        /** quotacheck hash */
1609         cfs_list_t              dqb_list;        /** in list also */
1610         qid_t                   dqb_id;          /** uid/gid */
1611         short                   dqb_type;        /** USRQUOTA/GRPQUOTA */
1612         qsize_t                 dqb_bhardlimit;  /** block hard limit */
1613         qsize_t                 dqb_bsoftlimit;  /** block soft limit */
1614         qsize_t                 dqb_curspace;    /** current space */
1615         qsize_t                 dqb_ihardlimit;  /** inode hard limit */
1616         qsize_t                 dqb_isoftlimit;  /** inode soft limit */
1617         qsize_t                 dqb_curinodes;   /** current inodes */
1618         obd_time                dqb_btime;       /** block grace time */
1619         obd_time                dqb_itime;       /** inode grace time */
1620         __u32                   dqb_valid;       /** flag for above fields */
1621 };
1622
1623 static inline unsigned int chkquot_hash(qid_t id, int type)
1624                                         __attribute__((__const__));
1625
1626 static inline unsigned int chkquot_hash(qid_t id, int type)
1627 {
1628         return (id * (MAXQUOTAS - type)) % NR_DQHASH;
1629 }
1630
1631 static inline struct chk_dqblk *
1632 find_chkquot(cfs_hlist_head_t *head, qid_t id, int type)
1633 {
1634         cfs_hlist_node_t *node;
1635         struct chk_dqblk *cdqb;
1636
1637         cfs_hlist_for_each(node, head) {
1638                 cdqb = cfs_hlist_entry(node, struct chk_dqblk, dqb_hash);
1639                 if (cdqb->dqb_id == id && cdqb->dqb_type == type)
1640                         return cdqb;
1641         }
1642
1643         return NULL;
1644 }
1645
1646 static struct chk_dqblk *alloc_chkquot(qid_t id, int type)
1647 {
1648         struct chk_dqblk *cdqb;
1649
1650         OBD_ALLOC_PTR(cdqb);
1651         if (cdqb) {
1652                 CFS_INIT_HLIST_NODE(&cdqb->dqb_hash);
1653                 CFS_INIT_LIST_HEAD(&cdqb->dqb_list);
1654                 cdqb->dqb_id = id;
1655                 cdqb->dqb_type = type;
1656         }
1657
1658         return cdqb;
1659 }
1660
1661 static struct chk_dqblk *
1662 cqget(struct super_block *sb, cfs_hlist_head_t *hash,
1663       cfs_list_t *list, qid_t id, int type, int first_check)
1664 {
1665         cfs_hlist_head_t *head = hash + chkquot_hash(id, type);
1666         struct if_dqblk dqb;
1667         struct chk_dqblk *cdqb;
1668         int rc;
1669
1670         cdqb = find_chkquot(head, id, type);
1671         if (cdqb)
1672                 return cdqb;
1673
1674         cdqb = alloc_chkquot(id, type);
1675         if (!cdqb)
1676                 return NULL;
1677
1678         if (!first_check) {
1679                 rc = sb->s_qcop->get_dqblk(sb, type, id, &dqb);
1680                 if (rc) {
1681                         CERROR("get_dqblk of id %u, type %d failed: %d\n",
1682                                id, type, rc);
1683                 } else {
1684                         DQBLK_COPY(cdqb, &dqb);
1685                         cdqb->dqb_curspace = 0;
1686                         cdqb->dqb_curinodes = 0;
1687                 }
1688         }
1689
1690         cfs_hlist_add_head(&cdqb->dqb_hash, head);
1691         cfs_list_add_tail(&cdqb->dqb_list, list);
1692
1693         return cdqb;
1694 }
1695
1696 static inline int quota_onoff(struct super_block *sb, int cmd, int type, int qfmt)
1697 {
1698         struct obd_quotactl *oqctl;
1699         int rc;
1700
1701         OBD_ALLOC_PTR(oqctl);
1702         if (!oqctl)
1703                 RETURN(-ENOMEM);
1704
1705         oqctl->qc_cmd = cmd;
1706         oqctl->qc_id = qfmt;
1707         oqctl->qc_type = type;
1708         rc = fsfilt_ext3_quotactl(sb, oqctl);
1709
1710         OBD_FREE_PTR(oqctl);
1711         return rc;
1712 }
1713
1714 static inline int read_old_dqinfo(struct super_block *sb, int type,
1715                                   struct if_dqinfo *dqinfo)
1716 {
1717         struct obd_quotactl *oqctl;
1718         int rc;
1719         ENTRY;
1720
1721         OBD_ALLOC_PTR(oqctl);
1722         if (!oqctl)
1723                 RETURN(-ENOMEM);
1724
1725         oqctl->qc_cmd = Q_GETINFO;
1726         oqctl->qc_type = type;
1727         rc = fsfilt_ext3_quotactl(sb, oqctl);
1728         if (!rc)
1729                 ((struct obd_dqinfo *)dqinfo)[type] = oqctl->qc_dqinfo;
1730
1731         OBD_FREE_PTR(oqctl);
1732         RETURN(rc);
1733 }
1734
1735 #ifndef HAVE_EXT4_LDISKFS
1736 static inline struct ext3_group_desc *
1737 get_group_desc(struct super_block *sb, int group, struct buffer_head **bh)
1738 {
1739         unsigned long desc_block, desc;
1740         struct ext3_group_desc *gdp;
1741
1742         desc_block = group / EXT3_DESC_PER_BLOCK(sb);
1743         desc = group % EXT3_DESC_PER_BLOCK(sb);
1744         gdp = (struct ext3_group_desc *)
1745               EXT3_SB(sb)->s_group_desc[desc_block]->b_data;
1746
1747         return gdp + desc;
1748 }
1749
1750 static inline struct buffer_head *
1751 ext3_read_inode_bitmap(struct super_block *sb, unsigned long group)
1752 {
1753         struct ext3_group_desc *desc;
1754         struct buffer_head *bh;
1755
1756         desc = get_group_desc(sb, group, NULL);
1757         bh = sb_bread(sb, ext3_inode_bitmap(sb, desc));
1758         return bh;
1759 }
1760
1761 static __u32 ext3_itable_unused_count(struct super_block *sb,
1762                                struct ext3_group_desc *bg) {
1763        return le16_to_cpu(bg->bg_itable_unused);
1764 }
1765 #else
1766 #define get_group_desc ext3_get_group_desc
1767 #endif
1768
1769 struct qchk_ctxt {
1770         cfs_hlist_head_t        qckt_hash[NR_DQHASH];      /* quotacheck hash */
1771         cfs_list_t              qckt_list;                 /* quotacheck list */
1772         int                     qckt_first_check[MAXQUOTAS]; /* 1 if no old quotafile */
1773         struct if_dqinfo        qckt_dqinfo[MAXQUOTAS];    /* old dqinfo */
1774 };
1775
1776 static int add_inode_quota(struct inode *inode, struct qchk_ctxt *qctxt,
1777                            struct obd_quotactl *oqc)
1778 {
1779         struct chk_dqblk *cdqb[MAXQUOTAS] = { NULL, };
1780         loff_t size = 0;
1781         qid_t qid[MAXQUOTAS];
1782         int cnt, i, rc = 0;
1783
1784         if (!inode)
1785                 return 0;
1786
1787         qid[USRQUOTA] = inode->i_uid;
1788         qid[GRPQUOTA] = inode->i_gid;
1789
1790         if (S_ISDIR(inode->i_mode) ||
1791             S_ISREG(inode->i_mode) ||
1792             S_ISLNK(inode->i_mode))
1793                 size = inode_get_bytes(inode);
1794
1795         for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1796                 if (!Q_TYPESET(oqc, cnt))
1797                         continue;
1798
1799                 cdqb[cnt] = cqget(inode->i_sb, qctxt->qckt_hash,
1800                                 &qctxt->qckt_list, qid[cnt], cnt,
1801                                 qctxt->qckt_first_check[cnt]);
1802                 if (!cdqb[cnt]) {
1803                         rc = -ENOMEM;
1804                         break;
1805                 }
1806
1807                 cdqb[cnt]->dqb_curspace += size;
1808                 cdqb[cnt]->dqb_curinodes++;
1809         }
1810
1811         if (rc) {
1812                 for (i = 0; i < cnt; i++) {
1813                         if (!Q_TYPESET(oqc, i))
1814                                 continue;
1815                         LASSERT(cdqb[i]);
1816                         cdqb[i]->dqb_curspace -= size;
1817                         cdqb[i]->dqb_curinodes--;
1818                 }
1819         }
1820
1821         return rc;
1822 }
1823
1824 /* write dqinfo struct in a new quota file */
1825 static int v3_write_dqinfo(struct file *f, int type, struct if_dqinfo *info)
1826 {
1827         struct v2_disk_dqinfo dqinfo;
1828         __u32 blocks = V2_DQTREEOFF + 1;
1829         loff_t offset = V2_DQINFOOFF;
1830
1831         if (info) {
1832                 dqinfo.dqi_bgrace = cpu_to_le32(info->dqi_bgrace);
1833                 dqinfo.dqi_igrace = cpu_to_le32(info->dqi_igrace);
1834                 dqinfo.dqi_flags = cpu_to_le32(info->dqi_flags & DQF_MASK &
1835                                                ~DQF_INFO_DIRTY);
1836         } else {
1837                 dqinfo.dqi_bgrace = cpu_to_le32(MAX_DQ_TIME);
1838                 dqinfo.dqi_igrace = cpu_to_le32(MAX_IQ_TIME);
1839                 dqinfo.dqi_flags = 0;
1840         }
1841
1842         dqinfo.dqi_blocks = cpu_to_le32(blocks);
1843         dqinfo.dqi_free_blk = 0;
1844         dqinfo.dqi_free_entry = 0;
1845
1846         return cfs_user_write(f, (char *)&dqinfo, sizeof(dqinfo), &offset);
1847 }
1848
1849 static int v3_write_dqheader(struct file *f, int type)
1850 {
1851         static const __u32 quota_magics[] = V2_INITQMAGICS;
1852         static const __u32 quota_versions[] = LUSTRE_INITQVERSIONS_V2;
1853         struct v2_disk_dqheader dqhead;
1854         loff_t offset = 0;
1855
1856         CLASSERT(ARRAY_SIZE(quota_magics) == ARRAY_SIZE(quota_versions));
1857         LASSERT(0 <= type && type < ARRAY_SIZE(quota_magics));
1858
1859         dqhead.dqh_magic = cpu_to_le32(quota_magics[type]);
1860         dqhead.dqh_version = cpu_to_le32(quota_versions[type]);
1861
1862         return cfs_user_write(f, (char *)&dqhead, sizeof(dqhead), &offset);
1863 }
1864
1865 static int create_new_quota_files(struct qchk_ctxt *qctxt,
1866                                   struct obd_quotactl *oqc)
1867 {
1868         int i, rc = 0;
1869         ENTRY;
1870
1871         for (i = 0; i < MAXQUOTAS; i++) {
1872                 struct if_dqinfo *info = qctxt->qckt_first_check[i]?
1873                                          NULL : &qctxt->qckt_dqinfo[i];
1874                 struct file *file;
1875                 const char *name[MAXQUOTAS] = LUSTRE_OPQFILES_NAMES_V2;
1876
1877                 if (!Q_TYPESET(oqc, i))
1878                         continue;
1879
1880                 LASSERT(oqc->qc_id == LUSTRE_QUOTA_V2);
1881
1882                 file = filp_open(name[i], O_RDWR | O_CREAT | O_TRUNC, 0644);
1883                 if (IS_ERR(file)) {
1884                         rc = PTR_ERR(file);
1885                         CERROR("can't create %s file: rc = %d\n",
1886                                name[i], rc);
1887                         GOTO(out, rc);
1888                 }
1889
1890                 if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
1891                         CERROR("file %s is not regular", name[i]);
1892                         filp_close(file, 0);
1893                         GOTO(out, rc = -EINVAL);
1894                 }
1895
1896                 ll_vfs_dq_drop(file->f_dentry->d_inode);
1897
1898                 rc = v3_write_dqheader(file, i);
1899                 if (rc) {
1900                         filp_close(file, 0);
1901                         GOTO(out, rc);
1902                 }
1903
1904                 rc = v3_write_dqinfo(file, i, info);
1905                 filp_close(file, 0);
1906                 if (rc)
1907                         GOTO(out, rc);
1908         }
1909
1910 out:
1911         RETURN(rc);
1912 }
1913
1914
1915 static int commit_chkquot(struct super_block *sb, struct qchk_ctxt *qctxt,
1916                           struct chk_dqblk *cdqb)
1917 {
1918         struct obd_quotactl *oqc;
1919         long now;
1920         int rc;
1921         ENTRY;
1922
1923         OBD_ALLOC_PTR(oqc);
1924         if (!oqc)
1925                 RETURN(-ENOMEM);
1926
1927         now = cfs_time_current_sec();
1928
1929         if (cdqb->dqb_bsoftlimit &&
1930             toqb(cdqb->dqb_curspace) >= cdqb->dqb_bsoftlimit &&
1931             !cdqb->dqb_btime)
1932                 cdqb->dqb_btime =
1933                         now + qctxt->qckt_dqinfo[cdqb->dqb_type].dqi_bgrace;
1934
1935         if (cdqb->dqb_isoftlimit &&
1936             cdqb->dqb_curinodes >= cdqb->dqb_isoftlimit &&
1937             !cdqb->dqb_itime)
1938                 cdqb->dqb_itime =
1939                         now + qctxt->qckt_dqinfo[cdqb->dqb_type].dqi_igrace;
1940
1941         cdqb->dqb_valid = QIF_ALL;
1942
1943         oqc->qc_cmd = Q_SETQUOTA;
1944         oqc->qc_type = cdqb->dqb_type;
1945         oqc->qc_id = cdqb->dqb_id;
1946         DQBLK_COPY(&oqc->qc_dqblk, cdqb);
1947
1948         rc = fsfilt_ext3_quotactl(sb, oqc);
1949         OBD_FREE_PTR(oqc);
1950         RETURN(rc);
1951 }
1952
1953 static int prune_chkquots(struct super_block *sb,
1954                           struct qchk_ctxt *qctxt, int error)
1955 {
1956         struct chk_dqblk *cdqb, *tmp;
1957         int rc;
1958
1959         cfs_list_for_each_entry_safe(cdqb, tmp, &qctxt->qckt_list, dqb_list) {
1960                 if (!error) {
1961                         rc = commit_chkquot(sb, qctxt, cdqb);
1962                         if (rc)
1963                                 error = rc;
1964                 }
1965                 cfs_hlist_del_init(&cdqb->dqb_hash);
1966                 cfs_list_del(&cdqb->dqb_list);
1967                 OBD_FREE_PTR(cdqb);
1968         }
1969
1970         return error;
1971 }
1972
1973 #ifndef EXT3_FEATURE_RO_COMPAT_GDT_CSUM
1974 #define EXT3_FEATURE_RO_COMPAT_GDT_CSUM 0x0010
1975 #endif
1976
1977 static int fsfilt_ext3_quotacheck(struct super_block *sb,
1978                                   struct obd_quotactl *oqc)
1979 {
1980         struct ext3_sb_info *sbi = EXT3_SB(sb);
1981         int i, group, uninit_feat = 0;
1982         struct qchk_ctxt *qctxt;
1983         struct buffer_head *bitmap_bh = NULL;
1984         unsigned long ino, inode_inuse;
1985         struct inode *inode;
1986         int rc = 0;
1987         ENTRY;
1988
1989         /* turn on quota and read dqinfo if existed */
1990         OBD_ALLOC_PTR(qctxt);
1991         if (!qctxt) {
1992                 oqc->qc_stat = -ENOMEM;
1993                 RETURN(-ENOMEM);
1994         }
1995
1996         for (i = 0; i < NR_DQHASH; i++)
1997                 CFS_INIT_HLIST_HEAD(&qctxt->qckt_hash[i]);
1998         CFS_INIT_LIST_HEAD(&qctxt->qckt_list);
1999
2000         for (i = 0; i < MAXQUOTAS; i++) {
2001                 if (!Q_TYPESET(oqc, i))
2002                         continue;
2003
2004                 rc = quota_onoff(sb, Q_QUOTAON, i, oqc->qc_id);
2005                 if (!rc || rc == -EBUSY) {
2006                         rc = read_old_dqinfo(sb, i, qctxt->qckt_dqinfo);
2007                         if (rc)
2008                                 GOTO(out, rc);
2009                 } else if (rc == -ENOENT || rc == -EINVAL || rc == -EEXIST) {
2010                         qctxt->qckt_first_check[i] = 1;
2011                 } else if (rc) {
2012                         GOTO(out, rc);
2013                 }
2014         }
2015         if (EXT3_HAS_RO_COMPAT_FEATURE(sb, EXT3_FEATURE_RO_COMPAT_GDT_CSUM))
2016                 /* This filesystem supports the uninit group feature */
2017                 uninit_feat = 1;
2018
2019         /* number of inodes that have been allocated */
2020         inode_inuse = sbi->s_inodes_per_group * sbi->s_groups_count -
2021                       percpu_counter_sum(&sbi->s_freeinodes_counter);
2022
2023         /* check quota and update in hash */
2024         for (group = 0; group < sbi->s_groups_count && inode_inuse > 0;
2025              group++) {
2026                 unsigned long used_count = sbi->s_inodes_per_group;
2027
2028                 if (uninit_feat) {
2029                         struct ext3_group_desc *desc;
2030                         desc = get_group_desc(sb, group, NULL);
2031                         if (!desc)
2032                                 GOTO(out, -EIO);
2033
2034                         /* we don't really need to take the group lock here,
2035                          * but it may be useful if one day we support online
2036                          * quotacheck */
2037 #ifdef HAVE_EXT4_LDISKFS
2038                         ext4_lock_group(sb, group);
2039 #else
2040                         spin_lock(sb_bgl_lock(sbi, group));
2041 #endif
2042                         if (desc->bg_flags & cpu_to_le16(EXT3_BG_INODE_UNINIT)) {
2043                                 /* no inode in use in this group, just skip it */
2044 #ifdef HAVE_EXT4_LDISKFS
2045                                 ext3_unlock_group(sb, group);
2046 #else
2047                                 spin_unlock(sb_bgl_lock(sbi, group));
2048 #endif
2049                                 continue;
2050                         }
2051
2052                         used_count -= ext3_itable_unused_count(sb, desc);
2053 #ifdef HAVE_EXT4_LDISKFS
2054                         ext3_unlock_group(sb, group);
2055 #else
2056                         spin_unlock(sb_bgl_lock(sbi, group));
2057 #endif
2058                 }
2059
2060                 ino = group * sbi->s_inodes_per_group + 1;
2061                 bitmap_bh = ext3_read_inode_bitmap(sb, group);
2062                 if (!bitmap_bh) {
2063                         CERROR("%s: ext3_read_inode_bitmap group %d failed\n",
2064                                sb->s_id, group);
2065                         GOTO(out, -EIO);
2066                 }
2067
2068                 i = 0;
2069                 while (i < used_count &&
2070                        (i = ext3_find_next_bit(bitmap_bh->b_data,
2071                                                used_count, i)) < used_count) {
2072                         inode_inuse--;
2073                         i++;
2074                         ino = i + group * sbi->s_inodes_per_group;
2075                         if (ino < sbi->s_first_ino)
2076                                 continue;
2077 #if defined(HAVE_EXT4_LDISKFS) || !defined(HAVE_READ_INODE_IN_SBOPS)
2078                         inode = ext3_iget(sb, ino);
2079 #else
2080                         inode = iget(sb, ino);
2081 #endif
2082                         if (!inode || IS_ERR(inode))
2083                                 continue;
2084
2085                         rc = add_inode_quota(inode, qctxt, oqc);
2086                         iput(inode);
2087                         if (rc) {
2088                                 brelse(bitmap_bh);
2089                                 GOTO(out, rc);
2090                         }
2091                 }
2092                 brelse(bitmap_bh);
2093         }
2094
2095         /* read old quota limits from old quota file. (only for the user
2096          * has limits but hasn't file) */
2097 #ifdef HAVE_QUOTA_SUPPORT
2098         for (i = 0; i < MAXQUOTAS; i++) {
2099                 cfs_list_t id_list;
2100                 struct dquot_id *dqid, *tmp;
2101
2102                 if (!Q_TYPESET(oqc, i))
2103                         continue;
2104
2105                 if (qctxt->qckt_first_check[i])
2106                         continue;
2107
2108
2109                 LASSERT(sb_dqopt(sb)->files[i] != NULL);
2110                 CFS_INIT_LIST_HEAD(&id_list);
2111 #ifndef KERNEL_SUPPORTS_QUOTA_READ
2112                 rc = lustre_get_qids(sb_dqopt(sb)->files[i], NULL, i, &id_list);
2113 #else
2114                 rc = lustre_get_qids(NULL, sb_dqopt(sb)->files[i], i, &id_list);
2115 #endif
2116                 if (rc)
2117                         CERROR("read old limits failed. (rc:%d)\n", rc);
2118
2119                 cfs_list_for_each_entry_safe(dqid, tmp, &id_list, di_link) {
2120                         cfs_list_del_init(&dqid->di_link);
2121
2122                         if (!rc)
2123                                 cqget(sb, qctxt->qckt_hash, &qctxt->qckt_list,
2124                                       dqid->di_id, i,
2125                                       qctxt->qckt_first_check[i]);
2126                         OBD_FREE_PTR(dqid);
2127                 }
2128         }
2129 #endif
2130         /* turn off quota cause we are to dump chk_dqblk to files */
2131         quota_onoff(sb, Q_QUOTAOFF, oqc->qc_type, oqc->qc_id);
2132
2133         rc = create_new_quota_files(qctxt, oqc);
2134         if (rc)
2135                 GOTO(out, rc);
2136
2137         /* we use vfs functions to set dqblk, so turn quota on */
2138         rc = quota_onoff(sb, Q_QUOTAON, oqc->qc_type, oqc->qc_id);
2139 out:
2140         /* dump and free chk_dqblk */
2141         rc = prune_chkquots(sb, qctxt, rc);
2142         OBD_FREE_PTR(qctxt);
2143
2144         /* turn off quota, `lfs quotacheck` will turn on when all
2145          * nodes quotacheck finish. */
2146         quota_onoff(sb, Q_QUOTAOFF, oqc->qc_type, oqc->qc_id);
2147
2148         oqc->qc_stat = rc;
2149         if (rc)
2150                 CERROR("quotacheck failed: rc = %d\n", rc);
2151
2152         RETURN(rc);
2153 }
2154
2155 static int fsfilt_ext3_quotainfo(struct lustre_quota_info *lqi, int type,
2156                                  int cmd)
2157 {
2158         int rc = 0;
2159         ENTRY;
2160
2161         if (lqi->qi_files[type] == NULL) {
2162                 CERROR("operate qinfo before it's enabled!\n");
2163                 RETURN(-ESRCH);
2164         }
2165
2166         switch (cmd) {
2167         case QFILE_CHK:
2168                 rc = lustre_check_quota_file(lqi, type);
2169                 break;
2170         case QFILE_RD_INFO:
2171                 rc = lustre_read_quota_info(lqi, type);
2172                 break;
2173         case QFILE_WR_INFO:
2174                 rc = lustre_write_quota_info(lqi, type);
2175                 break;
2176         case QFILE_INIT_INFO:
2177                 rc = lustre_init_quota_info(lqi, type);
2178                 break;
2179         case QFILE_CONVERT:
2180                 rc = -ENOTSUPP;
2181                 CERROR("quota CONVERT command is not supported\n");
2182                 break;
2183         default:
2184                 rc = -ENOTSUPP;
2185                 CERROR("Unsupported admin quota file cmd %d\n"
2186                        "Are lquota.ko and fsfilt_ldiskfs.ko modules in sync?\n",
2187                        cmd);
2188                 break;
2189         }
2190         RETURN(rc);
2191 }
2192
2193 static int fsfilt_ext3_qids(struct file *file, struct inode *inode, int type,
2194                             cfs_list_t *list)
2195 {
2196         return lustre_get_qids(file, inode, type, list);
2197 }
2198
2199 static int fsfilt_ext3_dquot(struct lustre_dquot *dquot, int cmd)
2200 {
2201         int rc = 0;
2202         ENTRY;
2203
2204         if (dquot->dq_info->qi_files[dquot->dq_type] == NULL) {
2205                 CERROR("operate dquot before it's enabled!\n");
2206                 RETURN(-ESRCH);
2207         }
2208
2209         switch (cmd) {
2210         case QFILE_RD_DQUOT:
2211                 rc = lustre_read_dquot(dquot);
2212                 break;
2213         case QFILE_WR_DQUOT:
2214                 if (dquot->dq_dqb.dqb_ihardlimit ||
2215                     dquot->dq_dqb.dqb_isoftlimit ||
2216                     dquot->dq_dqb.dqb_bhardlimit ||
2217                     dquot->dq_dqb.dqb_bsoftlimit)
2218                         cfs_clear_bit(DQ_FAKE_B, &dquot->dq_flags);
2219                 else
2220                         cfs_set_bit(DQ_FAKE_B, &dquot->dq_flags);
2221
2222                 rc = lustre_commit_dquot(dquot);
2223                 if (rc >= 0)
2224                         rc = 0;
2225                 break;
2226         default:
2227                 CERROR("Unsupported admin quota file cmd %d\n", cmd);
2228                 LBUG();
2229                 break;
2230         }
2231         RETURN(rc);
2232 }
2233
2234 static int fsfilt_ext3_get_mblk(struct super_block *sb, int *count,
2235                                 struct inode *inode, int frags)
2236 {
2237 #ifdef EXT3_EXT_HAS_NO_TREE
2238         struct ext3_ext_base *base = inode;
2239 #else
2240         struct ext3_extents_tree tree;
2241         struct ext3_ext_base *base = &tree;
2242
2243         ext3_init_tree_desc(base, inode);
2244 #endif
2245         /* for an ost_write request, it needs <#fragments> * <tree depth + 1>
2246          * metablocks at maxium b=16542 */
2247         *count = frags * (EXT_DEPTH(base) + 1) * EXT3_BLOCK_SIZE(sb);
2248         return 0;
2249 }
2250
2251 #endif
2252
2253 lvfs_sbdev_type fsfilt_ext3_journal_sbdev(struct super_block *sb)
2254 {
2255         return (EXT3_SB(sb)->journal_bdev);
2256 }
2257 EXPORT_SYMBOL(fsfilt_ext3_journal_sbdev);
2258
2259 ssize_t lustre_read_quota(struct file *f, struct inode *inode, int type,
2260                           char *buf, int count, loff_t pos)
2261 {
2262         loff_t p = pos;
2263         int rc;
2264
2265         if (!f && !inode) {
2266                 CERROR("lustre_read_quota failed for no quota file!\n");
2267                 libcfs_debug_dumpstack(NULL);
2268                 return -EINVAL;
2269         }
2270
2271         /* Support for both adm and op quota files must be provided */
2272         if (f) {
2273                 rc = fsfilt_ext3_read_record(f, buf, count, &p);
2274                 rc = rc < 0 ? rc : p - pos;
2275         } else {
2276                 struct super_block *sb = inode->i_sb;
2277                 rc = sb->s_op->quota_read(sb, type, buf, count, pos);
2278         }
2279         return rc;
2280 }
2281
2282 ssize_t lustre_write_quota(struct file *f, char *buf, int count, loff_t pos)
2283 {
2284         loff_t p = pos;
2285         int rc;
2286
2287         /* Only adm quota files are supported, op updates are handled by vfs */
2288         rc = fsfilt_ext3_write_record(f, buf, count, &p, 0);
2289         rc = rc < 0 ? rc : p - pos;
2290
2291         return rc;
2292 }
2293
2294 void *lustre_quota_journal_start(struct inode *inode, int delete)
2295 {
2296         handle_t *handle;
2297         unsigned block_count;
2298
2299         if (delete) {
2300                 /* each indirect block (+4) may become free, attaching to the
2301                  * header list of free blocks (+1); the data block (+1) may
2302                  * become a free block (+0) or a block with free dqentries (+0) */
2303                 block_count = (4 + 1) + 1;
2304                 handle = ext3_journal_start(inode,
2305                             block_count*FSFILT_DATA_TRANS_BLOCKS(inode->i_sb)+2);
2306         } else {
2307                 /* indirect blocks are touched (+4), each causes file expansion (+0) or
2308                  * freeblk reusage with a header update (+1); dqentry is either reused
2309                  * causing update of the entry block (+1), prev (+1) and next (+1) or
2310                  * a new block allocation (+1) with a header update (+1)              */
2311                 block_count = (4 + 1) + 3;
2312                 handle = ext3_journal_start(inode,
2313                              block_count*FSFILT_DATA_TRANS_BLOCKS(inode->i_sb)+2);
2314
2315         }
2316
2317         return handle;
2318 }
2319
2320 void lustre_quota_journal_stop(void *handle)
2321 {
2322         ext3_journal_stop((handle_t *)handle);
2323 }
2324
2325 static struct fsfilt_operations fsfilt_ext3_ops = {
2326         .fs_type                = "ext3",
2327         .fs_owner               = THIS_MODULE,
2328         .fs_getlabel            = fsfilt_ext3_get_label,
2329         .fs_setlabel            = fsfilt_ext3_set_label,
2330         .fs_uuid                = fsfilt_ext3_uuid,
2331         .fs_start               = fsfilt_ext3_start,
2332         .fs_brw_start           = fsfilt_ext3_brw_start,
2333         .fs_extend              = fsfilt_ext3_extend,
2334         .fs_commit              = fsfilt_ext3_commit,
2335         .fs_commit_async        = fsfilt_ext3_commit_async,
2336         .fs_commit_wait         = fsfilt_ext3_commit_wait,
2337         .fs_setattr             = fsfilt_ext3_setattr,
2338         .fs_iocontrol           = fsfilt_ext3_iocontrol,
2339         .fs_set_md              = fsfilt_ext3_set_md,
2340         .fs_get_md              = fsfilt_ext3_get_md,
2341         .fs_readpage            = fsfilt_ext3_readpage,
2342         .fs_add_journal_cb      = fsfilt_ext3_add_journal_cb,
2343         .fs_statfs              = fsfilt_ext3_statfs,
2344         .fs_sync                = fsfilt_ext3_sync,
2345         .fs_map_inode_pages     = fsfilt_ext3_map_inode_pages,
2346         .fs_write_record        = fsfilt_ext3_write_record,
2347         .fs_read_record         = fsfilt_ext3_read_record,
2348         .fs_setup               = fsfilt_ext3_setup,
2349         .fs_send_bio            = fsfilt_ext3_send_bio,
2350         .fs_get_op_len          = fsfilt_ext3_get_op_len,
2351 #ifdef HAVE_DISK_INODE_VERSION
2352         .fs_get_version         = fsfilt_ext3_get_version,
2353         .fs_set_version         = fsfilt_ext3_set_version,
2354 #endif
2355 #ifdef HAVE_QUOTA_SUPPORT
2356         .fs_quotactl            = fsfilt_ext3_quotactl,
2357         .fs_quotacheck          = fsfilt_ext3_quotacheck,
2358         .fs_quotainfo           = fsfilt_ext3_quotainfo,
2359         .fs_qids                = fsfilt_ext3_qids,
2360         .fs_dquot               = fsfilt_ext3_dquot,
2361         .fs_get_mblk            = fsfilt_ext3_get_mblk,
2362 #endif
2363         .fs_journal_sbdev       = fsfilt_ext3_journal_sbdev,
2364 };
2365
2366 static int __init fsfilt_ext3_init(void)
2367 {
2368         int rc;
2369
2370         fcb_cache = cfs_mem_cache_create("fsfilt_ext3_fcb",
2371                                          sizeof(struct fsfilt_cb_data), 0, 0);
2372         if (!fcb_cache) {
2373                 CERROR("error allocating fsfilt journal callback cache\n");
2374                 GOTO(out, rc = -ENOMEM);
2375         }
2376
2377         rc = fsfilt_register_ops(&fsfilt_ext3_ops);
2378
2379         if (rc) {
2380                 int err = cfs_mem_cache_destroy(fcb_cache);
2381                 LASSERTF(err == 0, "error destroying new cache: rc %d\n", err);
2382         }
2383 out:
2384         return rc;
2385 }
2386
2387 static void __exit fsfilt_ext3_exit(void)
2388 {
2389         int rc;
2390
2391         fsfilt_unregister_ops(&fsfilt_ext3_ops);
2392         rc = cfs_mem_cache_destroy(fcb_cache);
2393         LASSERTF(rc == 0, "couldn't destroy fcb_cache slab\n");
2394 }
2395
2396 module_init(fsfilt_ext3_init);
2397 module_exit(fsfilt_ext3_exit);
2398
2399 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
2400 MODULE_DESCRIPTION("Lustre ext3 Filesystem Helper v0.1");
2401 MODULE_LICENSE("GPL");