@@ -83,6 +83,8 @@ void xfs_log_get_max_trans_res(struct xfs_mount *mp,
* made then this algorithm will eventually find all the space it needs.
*/
#define XFS_TRANS_LOWMODE 0x100 /* allocate in low space mode */
+/* Transaction should follow nowait semantics */
+#define XFS_TRANS_NOWAIT (1u << 9)
/*
* Field values for xfs_trans_mod_sb.
@@ -1054,7 +1054,8 @@ xfs_vn_update_time(
if (nowait)
old_pflags = memalloc_noio_save();
- error = xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0, 0, &tp);
+ error = xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0,
+ nowait ? XFS_TRANS_NOWAIT : 0, &tp);
if (error)
goto out;
@@ -251,6 +251,9 @@ xfs_trans_alloc(
struct xfs_trans *tp;
bool want_retry = true;
int error;
+ bool nowait = flags & XFS_TRANS_NOWAIT;
+ gfp_t gfp_flags = GFP_KERNEL |
+ (nowait ? 0 : __GFP_NOFAIL);
/*
* Allocate the handle before we do our freeze accounting and setting up
@@ -258,9 +261,21 @@ xfs_trans_alloc(
* by doing GFP_KERNEL allocations inside sb_start_intwrite().
*/
retry:
- tp = kmem_cache_zalloc(xfs_trans_cache, GFP_KERNEL | __GFP_NOFAIL);
- if (!(flags & XFS_TRANS_NO_WRITECOUNT))
- sb_start_intwrite(mp->m_super);
+ tp = kmem_cache_zalloc(xfs_trans_cache, gfp_flags);
+ if (!tp)
+ return -EAGAIN;
+ if (!(flags & XFS_TRANS_NO_WRITECOUNT)) {
+ if (nowait) {
+ bool locked = sb_start_intwrite_trylock(mp->m_super);
+
+ if (!locked) {
+ xfs_trans_cancel(tp);
+ return -EAGAIN;
+ }
+ } else {
+ sb_start_intwrite(mp->m_super);
+ }
+ }
xfs_trans_set_context(tp);
/*