1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
4 * lustre/lib/fsfilt_ext3.c
5 * Lustre filesystem abstraction routines
7 * Copyright (C) 2002, 2003 Cluster File Systems, Inc.
8 * Author: Andreas Dilger <adilger@clusterfs.com>
10 * This file is part of Lustre, http://www.lustre.org.
12 * Lustre is free software; you can redistribute it and/or
13 * modify it under the terms of version 2 of the GNU General Public
14 * License as published by the Free Software Foundation.
16 * Lustre is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with Lustre; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 #define DEBUG_SUBSYSTEM S_FILTER
29 #include <linux/jbd.h>
30 #include <linux/slab.h>
31 #include <linux/pagemap.h>
32 #include <linux/quotaops.h>
33 #include <linux/ext3_fs.h>
34 #include <linux/ext3_jbd.h>
35 #include <linux/version.h>
37 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
38 #include <linux/ext3_xattr.h>
40 #include <linux/../../fs/ext3/xattr.h>
42 #include <linux/kp30.h>
43 #include <linux/lustre_fsfilt.h>
44 #include <linux/obd.h>
45 #include <linux/obd_class.h>
46 #include <linux/module.h>
48 static kmem_cache_t *fcb_cache;
49 static atomic_t fcb_cache_count = ATOMIC_INIT(0);
51 struct fsfilt_cb_data {
52 struct journal_callback cb_jcb; /* jbd private data - MUST BE FIRST */
53 fsfilt_cb_t cb_func; /* MDS/OBD completion function */
54 struct obd_device *cb_obd; /* MDS/OBD completion device */
55 __u64 cb_last_rcvd; /* MDS/OST last committed operation */
56 void *cb_data; /* MDS/OST completion function data */
59 #ifndef EXT3_XATTR_INDEX_TRUSTED /* temporary until we hit l28 kernel */
60 #define EXT3_XATTR_INDEX_TRUSTED 4
62 #define XATTR_LUSTRE_MDS_LOV_EA "lov"
64 #define EXT3_XATTR_INDEX_LUSTRE 5 /* old */
65 #define XATTR_LUSTRE_MDS_OBJID "system.lustre_mds_objid" /* old */
68 * We don't currently need any additional blocks for rmdir and
69 * unlink transactions because we are storing the OST oa_id inside
70 * the inode (which we will be changing anyways as part of this
73 static void *fsfilt_ext3_start(struct inode *inode, int op, void *desc_private)
75 /* For updates to the last recieved file */
76 int nblocks = EXT3_DATA_TRANS_BLOCKS;
79 if (current->journal_info) {
80 CDEBUG(D_INODE, "increasing refcount on %p\n", current->journal_info);
85 case FSFILT_OP_CREATE_LOG:
86 nblocks += EXT3_INDEX_EXTRA_TRANS_BLOCKS+EXT3_DATA_TRANS_BLOCKS;
87 op = FSFILT_OP_CREATE;
89 case FSFILT_OP_UNLINK_LOG:
90 nblocks += EXT3_INDEX_EXTRA_TRANS_BLOCKS+EXT3_DATA_TRANS_BLOCKS;
91 op = FSFILT_OP_UNLINK;
97 case FSFILT_OP_UNLINK:
98 nblocks += EXT3_DELETE_TRANS_BLOCKS;
100 case FSFILT_OP_RENAME:
101 /* modify additional directory */
102 nblocks += EXT3_DATA_TRANS_BLOCKS;
104 case FSFILT_OP_SYMLINK:
105 /* additional block + block bitmap + GDT for long symlink */
108 case FSFILT_OP_CREATE:
109 case FSFILT_OP_MKDIR:
110 case FSFILT_OP_MKNOD:
111 /* modify one inode + block bitmap + GDT */
115 /* modify parent directory */
116 nblocks += EXT3_INDEX_EXTRA_TRANS_BLOCKS+EXT3_DATA_TRANS_BLOCKS;
118 case FSFILT_OP_SETATTR:
119 /* Setattr on inode */
122 default: CERROR("unknown transaction start op %d\n", op);
126 LASSERT(current->journal_info == desc_private);
130 handle = journal_start(EXT3_JOURNAL(inode), nblocks);
134 LASSERT(current->journal_info == handle);
139 * Calculate the number of buffer credits needed to write multiple pages in
140 * a single ext3 transaction. No, this shouldn't be here, but as yet ext3
141 * doesn't have a nice API for calculating this sort of thing in advance.
143 * See comment above ext3_writepage_trans_blocks for details. We assume
144 * no data journaling is being done, but it does allow for all of the pages
145 * being non-contiguous. If we are guaranteed contiguous pages we could
146 * reduce the number of (d)indirect blocks a lot.
148 * With N blocks per page and P pages, for each inode we have at most:
150 * min(N*P, blocksize/4 + 1) dindirect blocks
153 * For the entire filesystem, we have at most:
154 * min(sum(nindir + P), ngroups) bitmap blocks (from the above)
155 * min(sum(nindir + P), gdblocks) group descriptor blocks (from the above)
156 * objcount inode blocks
158 * 2 * EXT3_SINGLEDATA_TRANS_BLOCKS for the quota files
160 * 1 EXT3_DATA_TRANS_BLOCKS for the last_rcvd update.
162 static int fsfilt_ext3_credits_needed(int objcount, struct fsfilt_objinfo *fso)
164 struct super_block *sb = fso->fso_dentry->d_inode->i_sb;
165 int blockpp = 1 << (PAGE_CACHE_SHIFT - sb->s_blocksize_bits);
166 int addrpp = EXT3_ADDR_PER_BLOCK(sb) * blockpp;
169 int needed = objcount + 1;
172 for (i = 0; i < objcount; i++, fso++) {
173 int nblocks = fso->fso_bufcnt * blockpp;
174 int ndindirect = min(nblocks, addrpp + 1);
175 int nindir = nblocks + ndindirect + 1;
177 nbitmaps += nindir + nblocks;
178 ngdblocks += nindir + nblocks;
183 /* Assumes ext3 and ext3 have same sb_info layout at the start. */
184 if (nbitmaps > EXT3_SB(sb)->s_groups_count)
185 nbitmaps = EXT3_SB(sb)->s_groups_count;
186 if (ngdblocks > EXT3_SB(sb)->s_gdb_count)
187 ngdblocks = EXT3_SB(sb)->s_gdb_count;
189 needed += nbitmaps + ngdblocks;
191 /* last_rcvd update */
192 needed += EXT3_DATA_TRANS_BLOCKS;
195 /* We assume that there will be 1 bit set in s_dquot.flags for each
196 * quota file that is active. This is at least true for now.
198 needed += hweight32(sb_any_quota_enabled(sb)) *
199 EXT3_SINGLEDATA_TRANS_BLOCKS;
205 /* We have to start a huge journal transaction here to hold all of the
206 * metadata for the pages being written here. This is necessitated by
207 * the fact that we do lots of prepare_write operations before we do
208 * any of the matching commit_write operations, so even if we split
209 * up to use "smaller" transactions none of them could complete until
210 * all of them were opened. By having a single journal transaction,
211 * we eliminate duplicate reservations for common blocks like the
212 * superblock and group descriptors or bitmaps.
214 * We will start the transaction here, but each prepare_write will
215 * add a refcount to the transaction, and each commit_write will
216 * remove a refcount. The transaction will be closed when all of
217 * the pages have been written.
219 static void *fsfilt_ext3_brw_start(int objcount, struct fsfilt_objinfo *fso,
220 int niocount, void *desc_private)
227 LASSERT(current->journal_info == desc_private);
228 journal = EXT3_SB(fso->fso_dentry->d_inode->i_sb)->s_journal;
229 needed = fsfilt_ext3_credits_needed(objcount, fso);
231 /* The number of blocks we could _possibly_ dirty can very large.
232 * We reduce our request if it is absurd (and we couldn't get that
233 * many credits for a single handle anyways).
235 * At some point we have to limit the size of I/Os sent at one time,
236 * increase the size of the journal, or we have to calculate the
237 * actual journal requirements more carefully by checking all of
238 * the blocks instead of being maximally pessimistic. It remains to
239 * be seen if this is a real problem or not.
241 if (needed > journal->j_max_transaction_buffers) {
242 CERROR("want too many journal credits (%d) using %d instead\n",
243 needed, journal->j_max_transaction_buffers);
244 needed = journal->j_max_transaction_buffers;
248 handle = journal_start(journal, needed);
250 if (IS_ERR(handle)) {
251 CERROR("can't get handle for %d credits: rc = %ld\n", needed,
254 LASSERT(handle->h_buffer_credits >= needed);
255 LASSERT(current->journal_info == handle);
261 static int fsfilt_ext3_commit(struct inode *inode, void *h, int force_sync)
264 handle_t *handle = h;
266 LASSERT(current->journal_info == handle);
268 handle->h_sync = 1; /* recovery likes this */
271 rc = journal_stop(handle);
274 // LASSERT(current->journal_info == NULL);
278 static int fsfilt_ext3_commit_async(struct inode *inode, void *h,
281 transaction_t *transaction;
282 unsigned long tid, rtid;
283 handle_t *handle = h;
287 LASSERT(current->journal_info == handle);
290 transaction = handle->h_transaction;
291 journal = transaction->t_journal;
292 tid = transaction->t_tid;
293 /* we don't want to be blocked */
295 rc = journal_stop(handle);
297 CERROR("error while stopping transaction: %d\n", rc);
302 rtid = log_start_commit(journal, transaction);
304 CERROR("strange race: %lu != %lu\n",
305 (unsigned long) tid, (unsigned long) rtid);
308 *wait_handle = (void *) tid;
309 CDEBUG(D_INODE, "commit async: %lu\n", (unsigned long) tid);
313 static int fsfilt_ext3_commit_wait(struct inode *inode, void *h)
315 tid_t tid = (tid_t)(long)h;
317 CDEBUG(D_INODE, "commit wait: %lu\n", (unsigned long) tid);
318 if (is_journal_aborted(EXT3_JOURNAL(inode)))
321 log_wait_commit(EXT3_JOURNAL(inode), tid);
326 static int fsfilt_ext3_setattr(struct dentry *dentry, void *handle,
327 struct iattr *iattr, int do_trunc)
329 struct inode *inode = dentry->d_inode;
334 /* A _really_ horrible hack to avoid removing the data stored
335 * in the block pointers; this is really the "small" stripe MD data.
336 * We can avoid further hackery by virtue of the MDS file size being
337 * zero all the time (which doesn't invoke block truncate at unlink
338 * time), so we assert we never change the MDS file size from zero. */
339 if (iattr->ia_valid & ATTR_SIZE && !do_trunc) {
340 /* ATTR_SIZE would invoke truncate: clear it */
341 iattr->ia_valid &= ~ATTR_SIZE;
342 EXT3_I(inode)->i_disksize = inode->i_size = iattr->ia_size;
344 /* make sure _something_ gets set - so new inode
345 * goes to disk (probably won't work over XFS */
346 if (!(iattr->ia_valid & (ATTR_MODE | ATTR_MTIME | ATTR_CTIME))){
347 iattr->ia_valid |= ATTR_MODE;
348 iattr->ia_mode = inode->i_mode;
352 /* Don't allow setattr to change file type */
353 iattr->ia_mode = (inode->i_mode & S_IFMT)|(iattr->ia_mode & ~S_IFMT);
355 /* We set these flags on the client, but have already checked perms
356 * so don't confuse inode_change_ok. */
357 iattr->ia_valid &= ~(ATTR_MTIME_SET | ATTR_ATIME_SET);
359 if (inode->i_op->setattr) {
360 rc = inode->i_op->setattr(dentry, iattr);
362 rc = inode_change_ok(inode, iattr);
364 rc = inode_setattr(inode, iattr);
372 static int fsfilt_ext3_iocontrol(struct inode * inode, struct file *file,
373 unsigned int cmd, unsigned long arg)
378 if (inode->i_fop->ioctl)
379 rc = inode->i_fop->ioctl(inode, file, cmd, arg);
388 static int fsfilt_ext3_set_md(struct inode *inode, void *handle,
389 void *lmm, int lmm_size)
393 #ifdef INLINE_EA /* can go away before 1.0 - just for testing bug 2097 now */
394 /* Nasty hack city - store stripe MD data in the block pointers if
395 * it will fit, because putting it in an EA currently kills the MDS
396 * performance. We'll fix this with "fast EAs" in the future.
398 if (inode->i_blocks == 0 && lmm_size <= sizeof(EXT3_I(inode)->i_data) -
399 sizeof(EXT3_I(inode)->i_data[0])) {
400 unsigned old_size = EXT3_I(inode)->i_data[0];
402 LASSERT(old_size < sizeof(EXT3_I(inode)->i_data));
403 CERROR("setting EA on %lu/%u again... interesting\n",
404 inode->i_ino, inode->i_generation);
407 EXT3_I(inode)->i_data[0] = cpu_to_le32(lmm_size);
408 memcpy(&EXT3_I(inode)->i_data[1], lmm, lmm_size);
409 mark_inode_dirty(inode);
414 /* keep this when we get rid of OLD_EA (too noisy during conversion) */
415 if (EXT3_I(inode)->i_file_acl /* || large inode EA flag */) {
416 CWARN("setting EA on %lu/%u again... interesting\n",
417 inode->i_ino, inode->i_generation);
422 /* this can go away before 1.0. For bug 2097 testing only. */
423 rc = ext3_xattr_set_handle(handle, inode, EXT3_XATTR_INDEX_LUSTRE,
424 XATTR_LUSTRE_MDS_OBJID, lmm, lmm_size, 0);
427 rc = ext3_xattr_set_handle(handle, inode, EXT3_XATTR_INDEX_TRUSTED,
428 XATTR_LUSTRE_MDS_LOV_EA, lmm, lmm_size, 0);
430 /* This tries to delete the old-format LOV EA, but only as long as we
431 * have successfully saved the new-format LOV EA (we can always try
432 * the conversion again the next time the file is accessed). It is
433 * possible (although unlikely) that the new-format LOV EA couldn't be
434 * saved because it ran out of space but we would need a file striped
435 * over least 123 OSTs before the two EAs filled a 4kB block.
437 * This can be removed when all filesystems have converted to the
438 * new EA format, but otherwise adds little if any overhead. If we
439 * wanted backward compatibility for existing files, we could keep
440 * the old EA around for a while but we'd have to clean it up later. */
441 if (rc >= 0 && old_ea) {
442 int err = ext3_xattr_set_handle(handle, inode,
443 EXT3_XATTR_INDEX_LUSTRE,
444 XATTR_LUSTRE_MDS_OBJID,
447 CERROR("error deleting old LOV EA on %lu/%u: rc %d\n",
448 inode->i_ino, inode->i_generation, err);
454 CERROR("error adding MD data to inode %lu: rc = %d\n",
459 /* Must be called with i_sem held */
460 static int fsfilt_ext3_get_md(struct inode *inode, void *lmm, int lmm_size)
464 LASSERT(down_trylock(&inode->i_sem) != 0);
466 /* Keep support for reading "inline EAs" until we convert
467 * users over to new format entirely. See bug 841/2097. */
468 if (inode->i_blocks == 0 && EXT3_I(inode)->i_data[0]) {
469 unsigned size = le32_to_cpu(EXT3_I(inode)->i_data[0]);
472 LASSERT(size < sizeof(EXT3_I(inode)->i_data));
474 if (size > lmm_size) {
475 CERROR("inline EA on %lu/%u bad size %u > %u\n",
476 inode->i_ino, inode->i_generation,
480 memcpy(lmm, &EXT3_I(inode)->i_data[1], size);
484 /* migrate LOV EA data to external block - keep same format */
485 CWARN("DEBUG: migrate inline EA for inode %lu/%u to block\n",
486 inode->i_ino, inode->i_generation);
488 handle = journal_start(EXT3_JOURNAL(inode),
489 EXT3_XATTR_TRANS_BLOCKS);
490 if (!IS_ERR(handle)) {
492 rc = fsfilt_ext3_set_md(inode, handle,
493 &EXT3_I(inode)->i_data[1],size);
495 memset(EXT3_I(inode)->i_data, 0,
496 sizeof(EXT3_I(inode)->i_data));
497 mark_inode_dirty(inode);
499 err = journal_stop(handle);
503 rc = PTR_ERR(handle);
510 rc = ext3_xattr_get(inode, EXT3_XATTR_INDEX_TRUSTED,
511 XATTR_LUSTRE_MDS_LOV_EA, lmm, lmm_size);
512 /* try old EA type if new one failed - MDS will convert it for us */
513 if (rc == -ENODATA) {
514 CDEBUG(D_INFO,"failed new LOV EA %d/%s from inode %lu: rc %d\n",
515 EXT3_XATTR_INDEX_TRUSTED, XATTR_LUSTRE_MDS_LOV_EA,
518 rc = ext3_xattr_get(inode, EXT3_XATTR_INDEX_LUSTRE,
519 XATTR_LUSTRE_MDS_OBJID, lmm, lmm_size);
523 /* This gives us the MD size */
525 return (rc == -ENODATA) ? 0 : rc;
528 CDEBUG(D_INFO, "error getting EA %d/%s from inode %lu: rc %d\n",
529 EXT3_XATTR_INDEX_LUSTRE, XATTR_LUSTRE_MDS_OBJID,
531 memset(lmm, 0, lmm_size);
532 return (rc == -ENODATA) ? 0 : rc;
538 static ssize_t fsfilt_ext3_readpage(struct file *file, char *buf, size_t count,
541 struct inode *inode = file->f_dentry->d_inode;
544 if (S_ISREG(inode->i_mode))
545 rc = file->f_op->read(file, buf, count, off);
547 const int blkbits = inode->i_sb->s_blocksize_bits;
548 const int blksize = inode->i_sb->s_blocksize;
550 CDEBUG(D_EXT2, "reading "LPSZ" at dir %lu+%llu\n",
551 count, inode->i_ino, *off);
553 struct buffer_head *bh;
556 if (*off < inode->i_size) {
559 bh = ext3_bread(NULL, inode, *off >> blkbits,
562 CDEBUG(D_EXT2, "read %u@%llu\n", blksize, *off);
565 memcpy(buf, bh->b_data, blksize);
568 /* XXX in theory we should just fake
569 * this buffer and continue like ext3,
570 * especially if this is a partial read
572 CERROR("error read dir %lu+%llu: %d\n",
573 inode->i_ino, *off, err);
578 struct ext3_dir_entry_2 *fake = (void *)buf;
580 CDEBUG(D_EXT2, "fake %u@%llu\n", blksize, *off);
581 memset(fake, 0, sizeof(*fake));
582 fake->rec_len = cpu_to_le32(blksize);
594 static void fsfilt_ext3_cb_func(struct journal_callback *jcb, int error)
596 struct fsfilt_cb_data *fcb = (struct fsfilt_cb_data *)jcb;
598 fcb->cb_func(fcb->cb_obd, fcb->cb_last_rcvd, fcb->cb_data, error);
600 OBD_SLAB_FREE(fcb, fcb_cache, sizeof *fcb);
601 atomic_dec(&fcb_cache_count);
604 static int fsfilt_ext3_add_journal_cb(struct obd_device *obd, __u64 last_rcvd,
605 void *handle, fsfilt_cb_t cb_func,
608 struct fsfilt_cb_data *fcb;
610 OBD_SLAB_ALLOC(fcb, fcb_cache, GFP_NOFS, sizeof *fcb);
614 atomic_inc(&fcb_cache_count);
615 fcb->cb_func = cb_func;
617 fcb->cb_last_rcvd = last_rcvd;
618 fcb->cb_data = cb_data;
620 CDEBUG(D_EXT2, "set callback for last_rcvd: "LPD64"\n", last_rcvd);
622 journal_callback_set(handle, fsfilt_ext3_cb_func,
623 (struct journal_callback *)fcb);
630 * We need to hack the return value for the free inode counts because
631 * the current EA code requires one filesystem block per inode with EAs,
632 * so it is possible to run out of blocks before we run out of inodes.
634 * This can be removed when the ext3 EA code is fixed.
636 static int fsfilt_ext3_statfs(struct super_block *sb, struct obd_statfs *osfs)
639 int rc = vfs_statfs(sb, &sfs);
641 if (!rc && sfs.f_bfree < sfs.f_ffree) {
642 sfs.f_files = (sfs.f_files - sfs.f_ffree) + sfs.f_bfree;
643 sfs.f_ffree = sfs.f_bfree;
646 statfs_pack(osfs, &sfs);
650 static int fsfilt_ext3_sync(struct super_block *sb)
652 return ext3_force_commit(sb);
655 extern int ext3_map_inode_page(struct inode *inode, struct page *page,
656 unsigned long *blocks, int *created, int create);
657 int fsfilt_ext3_map_inode_page(struct inode *inode, struct page *page,
658 unsigned long *blocks, int *created, int create)
660 return ext3_map_inode_page(inode, page, blocks, created, create);
663 extern int ext3_prep_san_write(struct inode *inode, long *blocks,
664 int nblocks, loff_t newsize);
665 static int fsfilt_ext3_prep_san_write(struct inode *inode, long *blocks,
666 int nblocks, loff_t newsize)
668 return ext3_prep_san_write(inode, blocks, nblocks, newsize);
671 static int fsfilt_ext3_read_record(struct file * file, void *buf,
672 int size, loff_t *offs)
674 struct buffer_head *bh;
675 unsigned long block, boffs;
676 struct inode *inode = file->f_dentry->d_inode;
679 if (inode->i_size < *offs + size) {
680 size = inode->i_size - *offs;
682 CERROR("size %llu is too short for read %u@%llu\n",
683 inode->i_size, size, *offs);
685 } else if (size == 0)
689 block = *offs >> inode->i_blkbits;
690 bh = ext3_bread(NULL, inode, block, 0, &err);
692 CERROR("can't read block: %d\n", err);
696 boffs = (unsigned)*offs % bh->b_size;
697 if (boffs + size > bh->b_size) {
698 CERROR("request crosses block's border. offset %llu, size %u\n",
704 memcpy(buf, bh->b_data + boffs, size);
710 static int fsfilt_ext3_write_record(struct file *file, void *buf, int size,
711 loff_t *offs, int force_sync)
713 struct buffer_head *bh;
714 unsigned long block, boffs;
715 struct inode *inode = file->f_dentry->d_inode;
716 loff_t old_size = inode->i_size;
721 journal = EXT3_SB(inode->i_sb)->s_journal;
722 handle = journal_start(journal, EXT3_DATA_TRANS_BLOCKS + 2);
723 if (IS_ERR(handle)) {
724 CERROR("can't start transaction\n");
725 return PTR_ERR(handle);
728 block = *offs >> inode->i_blkbits;
729 if (*offs + size > inode->i_size) {
731 if (*offs + size > inode->i_size)
732 inode->i_size = *offs + size;
733 if (inode->i_size > EXT3_I(inode)->i_disksize)
734 EXT3_I(inode)->i_disksize = inode->i_size;
738 bh = ext3_bread(handle, inode, block, 1, &err);
740 CERROR("can't read/create block: %d\n", err);
744 /* This is a hack only needed because ext3_get_block_handle() updates
745 * i_disksize after marking the inode dirty in ext3_splice_branch().
746 * We will fix that when we get a chance, as ext3_mark_inode_dirty()
747 * is not without cost, nor is it even exported.
749 if (inode->i_size > old_size)
750 mark_inode_dirty(inode);
752 boffs = (unsigned)*offs % bh->b_size;
753 if (boffs + size > bh->b_size) {
754 CERROR("request crosses block's border. offset %llu, size %u\n",
760 err = ext3_journal_get_write_access(handle, bh);
762 CERROR("journal_get_write_access() returned error %d\n", err);
765 memcpy(bh->b_data + boffs, buf, size);
766 err = ext3_journal_dirty_metadata(handle, bh);
768 CERROR("journal_dirty_metadata() returned error %d\n", err);
773 handle->h_sync = 1; /* recovery likes this */
777 journal_stop(handle);
783 static int fsfilt_ext3_setup(struct super_block *sb)
786 EXT3_SB(sb)->dx_lock = fsfilt_ext3_dx_lock;
787 EXT3_SB(sb)->dx_unlock = fsfilt_ext3_dx_unlock;
790 CWARN("Enabling PDIROPS\n");
791 set_opt(EXT3_SB(sb)->s_mount_opt, PDIROPS);
792 sb->s_flags |= S_PDIROPS;
797 static struct fsfilt_operations fsfilt_ext3_ops = {
799 fs_owner: THIS_MODULE,
800 fs_start: fsfilt_ext3_start,
801 fs_brw_start: fsfilt_ext3_brw_start,
802 fs_commit: fsfilt_ext3_commit,
803 fs_commit_async: fsfilt_ext3_commit_async,
804 fs_commit_wait: fsfilt_ext3_commit_wait,
805 fs_setattr: fsfilt_ext3_setattr,
806 fs_iocontrol: fsfilt_ext3_iocontrol,
807 fs_set_md: fsfilt_ext3_set_md,
808 fs_get_md: fsfilt_ext3_get_md,
809 fs_readpage: fsfilt_ext3_readpage,
810 fs_add_journal_cb: fsfilt_ext3_add_journal_cb,
811 fs_statfs: fsfilt_ext3_statfs,
812 fs_sync: fsfilt_ext3_sync,
813 fs_map_inode_page: fsfilt_ext3_map_inode_page,
814 fs_prep_san_write: fsfilt_ext3_prep_san_write,
815 fs_write_record: fsfilt_ext3_write_record,
816 fs_read_record: fsfilt_ext3_read_record,
817 fs_setup: fsfilt_ext3_setup,
820 static int __init fsfilt_ext3_init(void)
824 //rc = ext3_xattr_register();
825 fcb_cache = kmem_cache_create("fsfilt_ext3_fcb",
826 sizeof(struct fsfilt_cb_data), 0,
829 CERROR("error allocating fsfilt journal callback cache\n");
830 GOTO(out, rc = -ENOMEM);
833 rc = fsfilt_register_ops(&fsfilt_ext3_ops);
836 kmem_cache_destroy(fcb_cache);
841 static void __exit fsfilt_ext3_exit(void)
845 fsfilt_unregister_ops(&fsfilt_ext3_ops);
846 rc = kmem_cache_destroy(fcb_cache);
848 if (rc || atomic_read(&fcb_cache_count)) {
849 CERROR("can't free fsfilt callback cache: count %d, rc = %d\n",
850 atomic_read(&fcb_cache_count), rc);
853 //rc = ext3_xattr_unregister();
856 module_init(fsfilt_ext3_init);
857 module_exit(fsfilt_ext3_exit);
859 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
860 MODULE_DESCRIPTION("Lustre ext3 Filesystem Helper v0.1");
861 MODULE_LICENSE("GPL");