diff options
| author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-06-24 08:41:41 -0400 |
|---|---|---|
| committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-06-24 13:07:53 -0400 |
| commit | 816724e65c72a90a44fbad0ef0b59b186c85fa90 (patch) | |
| tree | 421fa29aedff988e392f92780637553e275d37a0 /fs/xfs/xfs_log.c | |
| parent | 70ac4385a13f78bc478f26d317511893741b05bd (diff) | |
| parent | d384ea691fe4ea8c2dd5b9b8d9042eb181776f18 (diff) | |
Merge branch 'master' of /home/trondmy/kernel/linux-2.6/
Conflicts:
fs/nfs/inode.c
fs/super.c
Fix conflicts between patch 'NFS: Split fs/nfs/inode.c' and patch
'VFS: Permit filesystem to override root dentry on mount'
Diffstat (limited to 'fs/xfs/xfs_log.c')
| -rw-r--r-- | fs/xfs/xfs_log.c | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index 32e841d2f26d..d8f5d4cbe8b7 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c | |||
| @@ -24,7 +24,6 @@ | |||
| 24 | #include "xfs_trans.h" | 24 | #include "xfs_trans.h" |
| 25 | #include "xfs_sb.h" | 25 | #include "xfs_sb.h" |
| 26 | #include "xfs_ag.h" | 26 | #include "xfs_ag.h" |
| 27 | #include "xfs_dir.h" | ||
| 28 | #include "xfs_dir2.h" | 27 | #include "xfs_dir2.h" |
| 29 | #include "xfs_dmapi.h" | 28 | #include "xfs_dmapi.h" |
| 30 | #include "xfs_mount.h" | 29 | #include "xfs_mount.h" |
| @@ -36,7 +35,6 @@ | |||
| 36 | #include "xfs_ialloc_btree.h" | 35 | #include "xfs_ialloc_btree.h" |
| 37 | #include "xfs_log_recover.h" | 36 | #include "xfs_log_recover.h" |
| 38 | #include "xfs_trans_priv.h" | 37 | #include "xfs_trans_priv.h" |
| 39 | #include "xfs_dir_sf.h" | ||
| 40 | #include "xfs_dir2_sf.h" | 38 | #include "xfs_dir2_sf.h" |
| 41 | #include "xfs_attr_sf.h" | 39 | #include "xfs_attr_sf.h" |
| 42 | #include "xfs_dinode.h" | 40 | #include "xfs_dinode.h" |
| @@ -402,7 +400,7 @@ xfs_log_release_iclog(xfs_mount_t *mp, | |||
| 402 | xlog_in_core_t *iclog = (xlog_in_core_t *)iclog_hndl; | 400 | xlog_in_core_t *iclog = (xlog_in_core_t *)iclog_hndl; |
| 403 | 401 | ||
| 404 | if (xlog_state_release_iclog(log, iclog)) { | 402 | if (xlog_state_release_iclog(log, iclog)) { |
| 405 | xfs_force_shutdown(mp, XFS_LOG_IO_ERROR); | 403 | xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR); |
| 406 | return EIO; | 404 | return EIO; |
| 407 | } | 405 | } |
| 408 | 406 | ||
| @@ -498,9 +496,8 @@ xfs_log_mount(xfs_mount_t *mp, | |||
| 498 | * just worked. | 496 | * just worked. |
| 499 | */ | 497 | */ |
| 500 | if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) { | 498 | if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) { |
| 501 | int error; | 499 | bhv_vfs_t *vfsp = XFS_MTOVFS(mp); |
| 502 | vfs_t *vfsp = XFS_MTOVFS(mp); | 500 | int error, readonly = (vfsp->vfs_flag & VFS_RDONLY); |
| 503 | int readonly = (vfsp->vfs_flag & VFS_RDONLY); | ||
| 504 | 501 | ||
| 505 | if (readonly) | 502 | if (readonly) |
| 506 | vfsp->vfs_flag &= ~VFS_RDONLY; | 503 | vfsp->vfs_flag &= ~VFS_RDONLY; |
| @@ -726,7 +723,7 @@ xfs_log_write(xfs_mount_t * mp, | |||
| 726 | return XFS_ERROR(EIO); | 723 | return XFS_ERROR(EIO); |
| 727 | 724 | ||
| 728 | if ((error = xlog_write(mp, reg, nentries, tic, start_lsn, NULL, 0))) { | 725 | if ((error = xlog_write(mp, reg, nentries, tic, start_lsn, NULL, 0))) { |
| 729 | xfs_force_shutdown(mp, XFS_LOG_IO_ERROR); | 726 | xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR); |
| 730 | } | 727 | } |
| 731 | return error; | 728 | return error; |
| 732 | } /* xfs_log_write */ | 729 | } /* xfs_log_write */ |
| @@ -816,9 +813,9 @@ xfs_log_need_covered(xfs_mount_t *mp) | |||
| 816 | SPLDECL(s); | 813 | SPLDECL(s); |
| 817 | int needed = 0, gen; | 814 | int needed = 0, gen; |
| 818 | xlog_t *log = mp->m_log; | 815 | xlog_t *log = mp->m_log; |
| 819 | vfs_t *vfsp = XFS_MTOVFS(mp); | 816 | bhv_vfs_t *vfsp = XFS_MTOVFS(mp); |
| 820 | 817 | ||
| 821 | if (fs_frozen(vfsp) || XFS_FORCED_SHUTDOWN(mp) || | 818 | if (vfs_test_for_freeze(vfsp) || XFS_FORCED_SHUTDOWN(mp) || |
| 822 | (vfsp->vfs_flag & VFS_RDONLY)) | 819 | (vfsp->vfs_flag & VFS_RDONLY)) |
| 823 | return 0; | 820 | return 0; |
| 824 | 821 | ||
| @@ -956,7 +953,7 @@ xlog_iodone(xfs_buf_t *bp) | |||
| 956 | XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) { | 953 | XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) { |
| 957 | xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp)); | 954 | xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp)); |
| 958 | XFS_BUF_STALE(bp); | 955 | XFS_BUF_STALE(bp); |
| 959 | xfs_force_shutdown(l->l_mp, XFS_LOG_IO_ERROR); | 956 | xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR); |
| 960 | /* | 957 | /* |
| 961 | * This flag will be propagated to the trans-committed | 958 | * This flag will be propagated to the trans-committed |
| 962 | * callback routines to let them know that the log-commit | 959 | * callback routines to let them know that the log-commit |
| @@ -1261,7 +1258,7 @@ xlog_commit_record(xfs_mount_t *mp, | |||
| 1261 | ASSERT_ALWAYS(iclog); | 1258 | ASSERT_ALWAYS(iclog); |
| 1262 | if ((error = xlog_write(mp, reg, 1, ticket, commitlsnp, | 1259 | if ((error = xlog_write(mp, reg, 1, ticket, commitlsnp, |
| 1263 | iclog, XLOG_COMMIT_TRANS))) { | 1260 | iclog, XLOG_COMMIT_TRANS))) { |
| 1264 | xfs_force_shutdown(mp, XFS_LOG_IO_ERROR); | 1261 | xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR); |
| 1265 | } | 1262 | } |
| 1266 | return error; | 1263 | return error; |
| 1267 | } /* xlog_commit_record */ | 1264 | } /* xlog_commit_record */ |
| @@ -1790,7 +1787,7 @@ xlog_write(xfs_mount_t * mp, | |||
| 1790 | xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp, | 1787 | xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp, |
| 1791 | "xfs_log_write: reservation ran out. Need to up reservation"); | 1788 | "xfs_log_write: reservation ran out. Need to up reservation"); |
| 1792 | /* If we did not panic, shutdown the filesystem */ | 1789 | /* If we did not panic, shutdown the filesystem */ |
| 1793 | xfs_force_shutdown(mp, XFS_CORRUPT_INCORE); | 1790 | xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE); |
| 1794 | #endif | 1791 | #endif |
| 1795 | } else | 1792 | } else |
| 1796 | ticket->t_curr_res -= len; | 1793 | ticket->t_curr_res -= len; |
