super.c (b43fa8284d7790d9cca32c9c55e24f29be2fa33b) super.c (257ba15cedf1288f0c96118d7e63947231d27278)
1/*
2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
3 *
4 * Trivial changes by Alan Cox to add the LFS fixes
5 *
6 * Trivial Changes:
7 * Rights granted to Hans Reiser to redistribute under other terms providing
8 * he accepts all liability including but not limited to patent, fitness

--- 564 unchanged lines hidden (view full) ---

573
574 reiserfs_update_sd(&th, inode);
575 journal_end(&th, inode->i_sb, 1);
576
577out:
578 reiserfs_write_unlock_once(inode->i_sb, lock_depth);
579}
580
1/*
2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
3 *
4 * Trivial changes by Alan Cox to add the LFS fixes
5 *
6 * Trivial Changes:
7 * Rights granted to Hans Reiser to redistribute under other terms providing
8 * he accepts all liability including but not limited to patent, fitness

--- 564 unchanged lines hidden (view full) ---

573
574 reiserfs_update_sd(&th, inode);
575 journal_end(&th, inode->i_sb, 1);
576
577out:
578 reiserfs_write_unlock_once(inode->i_sb, lock_depth);
579}
580
581static void reiserfs_clear_inode(struct inode *inode)
582{
583 vfs_dq_drop(inode);
584}
585
581#ifdef CONFIG_QUOTA
582static ssize_t reiserfs_quota_write(struct super_block *, int, const char *,
583 size_t, loff_t);
584static ssize_t reiserfs_quota_read(struct super_block *, int, char *, size_t,
585 loff_t);
586#endif
587
588static const struct super_operations reiserfs_sops = {
589 .alloc_inode = reiserfs_alloc_inode,
590 .destroy_inode = reiserfs_destroy_inode,
591 .write_inode = reiserfs_write_inode,
592 .dirty_inode = reiserfs_dirty_inode,
586#ifdef CONFIG_QUOTA
587static ssize_t reiserfs_quota_write(struct super_block *, int, const char *,
588 size_t, loff_t);
589static ssize_t reiserfs_quota_read(struct super_block *, int, char *, size_t,
590 loff_t);
591#endif
592
593static const struct super_operations reiserfs_sops = {
594 .alloc_inode = reiserfs_alloc_inode,
595 .destroy_inode = reiserfs_destroy_inode,
596 .write_inode = reiserfs_write_inode,
597 .dirty_inode = reiserfs_dirty_inode,
598 .clear_inode = reiserfs_clear_inode,
593 .delete_inode = reiserfs_delete_inode,
594 .put_super = reiserfs_put_super,
595 .write_super = reiserfs_write_super,
596 .sync_fs = reiserfs_sync_fs,
597 .freeze_fs = reiserfs_freeze,
598 .unfreeze_fs = reiserfs_unfreeze,
599 .statfs = reiserfs_statfs,
600 .remount_fs = reiserfs_remount,

--- 1653 unchanged lines hidden ---
599 .delete_inode = reiserfs_delete_inode,
600 .put_super = reiserfs_put_super,
601 .write_super = reiserfs_write_super,
602 .sync_fs = reiserfs_sync_fs,
603 .freeze_fs = reiserfs_freeze,
604 .unfreeze_fs = reiserfs_unfreeze,
605 .statfs = reiserfs_statfs,
606 .remount_fs = reiserfs_remount,

--- 1653 unchanged lines hidden ---