xfs_dquot.c (6af0479d8b6b162b7f006581553705521af9984b) xfs_dquot.c (2b3cf09356d54711b6afdc7694b382c379ea42c4)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2000-2003 Silicon Graphics, Inc.
4 * All Rights Reserved.
5 */
6#include "xfs.h"
7#include "xfs_fs.h"
8#include "xfs_format.h"

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

1157 }
1158
1159 trace_xfs_dqflush_done(dqp);
1160 *bpp = bp;
1161 return 0;
1162
1163out_abort:
1164 dqp->dq_flags &= ~XFS_DQ_DIRTY;
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2000-2003 Silicon Graphics, Inc.
4 * All Rights Reserved.
5 */
6#include "xfs.h"
7#include "xfs_fs.h"
8#include "xfs_format.h"

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

1157 }
1158
1159 trace_xfs_dqflush_done(dqp);
1160 *bpp = bp;
1161 return 0;
1162
1163out_abort:
1164 dqp->dq_flags &= ~XFS_DQ_DIRTY;
1165 xfs_trans_ail_remove(lip);
1165 xfs_trans_ail_delete(lip, 0);
1166 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1167out_unlock:
1168 xfs_dqfunlock(dqp);
1169 return error;
1170}
1171
1172/*
1173 * Lock two xfs_dquot structures.

--- 87 unchanged lines hidden ---
1166 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1167out_unlock:
1168 xfs_dqfunlock(dqp);
1169 return error;
1170}
1171
1172/*
1173 * Lock two xfs_dquot structures.

--- 87 unchanged lines hidden ---