aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_trans.c
AgeCommit message (Expand)AuthorFilesLines
2025-09-22xfs: track the number of blocks in each buftargChristoph Hellwig1-11/+12
2025-08-11xfs: fix frozen file system assert in xfs_trans_allocChristoph Hellwig1-1/+1
2025-07-24xfs: return the allocated transaction from xfs_trans_alloc_emptyChristoph Hellwig1-5/+3
2025-07-24xfs: don't use xfs_trans_reserve in xfs_trans_rollChristoph Hellwig1-79/+54
2025-07-24xfs: decouple xfs_trans_alloc_empty from xfs_trans_allocChristoph Hellwig1-24/+28
2025-07-24xfs: don't use xfs_trans_reserve in xfs_trans_reserve_moreChristoph Hellwig1-3/+12
2025-07-24xfs: use xfs_trans_reserve_more in xfs_trans_reserve_more_inodeChristoph Hellwig1-2/+1
2025-06-27xfs: add tracepoints for stale pinned inode state debugDave Chinner1-1/+3
2025-01-13xfs: remove the t_magic field in struct xfs_transChristoph Hellwig1-2/+0
2024-12-23xfs: prepare to reuse the dquot pointer space in struct xfs_inodeDarrick J. Wong1-0/+4
2024-12-12xfs: don't lose solo dquot update transactionsDarrick J. Wong1-7/+3
2024-12-12xfs: don't lose solo superblock counter update transactionsDarrick J. Wong1-2/+7
2024-12-12xfs: avoid nested calls to __xfs_trans_commitDarrick J. Wong1-12/+14
2024-12-12xfs: only run precommits once per transaction objectDarrick J. Wong1-12/+4
2024-12-12xfs: unlock inodes when erroring out of xfs_trans_alloc_dirDarrick J. Wong1-0/+3
2024-11-05xfs: fix chown with rt quotaDarrick J. Wong1-2/+29
2024-11-05xfs: make xfs_rtblock_t a segmented address like xfs_fsblock_tDarrick J. Wong1-5/+16
2024-11-05xfs: grow the realtime section when realtime groups are enabledDarrick J. Wong1-0/+9
2024-11-05xfs: add frextents to the lazysbcounters when rtgroups enabledDarrick J. Wong1-14/+19
2024-11-05xfs: update realtime super every time we update the primary fs superDarrick J. Wong1-0/+1
2024-11-05xfs: remove the mount field from struct xfs_busy_extentsChristoph Hellwig1-1/+1
2024-07-04xfs: move and rename xfs_trans_committed_bulkDave Chinner1-129/+0
2024-04-22xfs: split xfs_mod_freecounterChristoph Hellwig1-16/+9
2024-04-22xfs: block deltas in xfs_trans_unreserve_and_mod_sb must be positiveChristoph Hellwig1-14/+24
2024-04-15xfs: Hold inode locks in xfs_trans_alloc_dirAllison Henderson1-2/+7
2024-02-19xfs: Replace xfs_isilocked with xfs_assert_ilockedMatthew Wilcox (Oracle)1-1/+1
2023-12-15xfs: repair inode fork block mapping data structuresDarrick J. Wong1-0/+62
2023-10-17xfs: use shifting and masking when converting rt extents, if possibleDarrick J. Wong1-0/+4
2023-10-17xfs: create a helper to convert extlen to rtextlenDarrick J. Wong1-1/+2
2023-06-05xfs: collect errors from inodegc for unlinked inode recoveryDave Chinner1-1/+3
2023-06-05xfs: defered work could create precommitsDave Chinner1-0/+5
2023-02-11xfs: don't assert fail on transaction cancel with deferred opsDave Chinner1-2/+2
2023-02-11xfs: t_firstblock is tracking AGs not blocksDave Chinner1-2/+2
2022-07-14Merge tag 'xfs-iunlink-item-5.20' of git://git.kernel.org/pub/scm/linux/kerne...Darrick J. Wong1-0/+91
2022-07-14xfs: add log item precommit operationDave Chinner1-0/+91
2022-07-07xfs: convert log vector chain to use list headsDave Chinner1-2/+2
2022-04-28xfs: report "max_resp" used for min log size computationDarrick J. Wong1-3/+0
2022-04-21Merge branch 'guilt/xlog-write-rework' into xfs-5.19-for-nextDave Chinner1-4/+2
2022-04-21xfs: log tickets don't need log client idDave Chinner1-4/+2
2022-04-12xfs: use a separate frextents counter for rt extent reservationsDarrick J. Wong1-6/+37
2022-03-29xfs: xfs_trans_commit() path must check for log shutdownDave Chinner1-15/+33
2022-03-20xfs: AIL should be log centricDave Chinner1-1/+1
2022-03-20xfs: log items should have a xlog pointer, not a mountDave Chinner1-1/+1
2022-03-14xfs: reserve quota for dir expansion when linking/unlinking filesDarrick J. Wong1-0/+86
2021-12-21xfs: shut down filesystem if we xfs_trans_cancel with deferred work itemsDarrick J. Wong1-1/+10
2021-10-22xfs: rename _zone variables to _cacheDarrick J. Wong1-4/+4
2021-10-22xfs: remove kmem_zone typedefDarrick J. Wong1-1/+1
2021-10-14xfs: remove the xfs_dsb_t typedefChristoph Hellwig1-4/+4
2021-08-19xfs: replace XFS_FORCED_SHUTDOWN with xfs_is_shutdownDave Chinner1-4/+4
2021-08-19xfs: replace xfs_sb_version checks with feature flag checksDave Chinner1-8/+8
2021-08-16xfs: AIL needs asynchronous CIL forcingDave Chinner1-1/+1
2021-08-16xfs: convert XLOG_FORCED_SHUTDOWN() to xlog_is_shutdown()Dave Chinner1-1/+1
2021-08-09xfs: use background worker pool when transactions can't get free spaceDarrick J. Wong1-4/+1
2021-06-21xfs: xfs_log_force_lsn isn't passed a LSNDave Chinner1-3/+3
2021-04-29xfs: update superblock counters correctly for !lazysbcountDave Chinner1-0/+3
2021-04-29xfs: remove obsolete AGF counter debuggingDarrick J. Wong1-7/+0
2021-04-07xfs: move the di_nblocks field to struct xfs_inodeChristoph Hellwig1-1/+1
2021-03-25xfs: support shrinking unused space in the last AGGao Xiang1-1/+0
2021-03-25xfs: __percpu_counter_compare() inode count debug too expensiveDave Chinner1-9/+2
2021-02-25xfs: use current->journal_info for detecting transaction recursionDave Chinner1-15/+5
2021-02-25xfs: don't nest transactions when scanning for eofblocksDarrick J. Wong1-3/+10
2021-02-03xfs: flush speculative space allocations when we run out of spaceDarrick J. Wong1-0/+11
2021-02-03xfs: flush eof/cowblocks if we can't reserve quota for chownDarrick J. Wong1-10/+19
2021-02-03xfs: flush eof/cowblocks if we can't reserve quota for inode creationDarrick J. Wong1-0/+8
2021-02-03xfs: flush eof/cowblocks if we can't reserve quota for file blocksDarrick J. Wong1-0/+10
2021-02-03xfs: remove xfs_qm_vop_chown_reserveDarrick J. Wong1-2/+14
2021-02-03xfs: refactor inode ownership change transaction/inode/quota allocation idiomDarrick J. Wong1-0/+62
2021-02-03xfs: refactor inode creation transaction/inode/quota allocation idiomDarrick J. Wong1-0/+33
2021-02-03xfs: allow reservation of rtblocks with xfs_trans_alloc_inodeDarrick J. Wong1-2/+4
2021-02-03xfs: refactor common transaction/inode/quota allocation idiomDarrick J. Wong1-0/+48
2020-12-16xfs: remove xfs_buf_t typedefDave Chinner1-1/+1
2020-09-25xfs: do the assert for all the log done items in xfs_trans_cancelKaixu Xia1-1/+1
2020-09-15xfs: simplify xfs_trans_getsbChristoph Hellwig1-1/+1
2020-07-28xfs: Remove kmem_zone_zalloc() usageCarlos Maiolino1-2/+2
2020-07-06xfs: preserve rmapbt swapext block reservation from freed blocksBrian Foster1-1/+18
2020-05-27xfs: remove the m_active_trans counterDave Chinner1-16/+11
2020-05-27xfs: reduce free inode accounting overheadDave Chinner1-4/+13
2020-05-27xfs: gut error handling in xfs_trans_unreserve_and_mod_sb()Dave Chinner1-143/+20
2020-03-27xfs: split xlog_ticket_doneChristoph Hellwig1-3/+6
2020-03-27xfs: refactor and split xfs_log_done()Dave Chinner1-12/+12
2020-03-26xfs: prohibit fs freezing when using empty transactionsDarrick J. Wong1-0/+5
2020-03-11xfs: remove XFS_BUF_TO_SBPChristoph Hellwig1-1/+1
2019-11-18xfs: Remove kmem_zone_free() wrapperCarlos Maiolino1-1/+1
2019-08-26fs: xfs: Remove KM_NOSLEEP and KM_SLEEP.Tetsuo Handa1-2/+2
2019-06-30xfs: remove XFS_TRANS_NOFSChristoph Hellwig1-3/+1
2019-06-28xfs: remove unused header filesEric Sandeen1-1/+0
2019-06-28xfs: add a flag to release log items on commitChristoph Hellwig1-0/+6
2019-06-28xfs: split iop_unlockChristoph Hellwig1-4/+3
2019-06-28xfs: don't use xfs_trans_free_items in the commit pathChristoph Hellwig1-7/+3
2019-06-28xfs: don't require log items to implement optional methodsChristoph Hellwig1-6/+15
2019-06-28xfs: stop using XFS_LI_ABORTED as a parameter flagChristoph Hellwig1-1/+1
2019-06-28xfs: fix a trivial comment typo in xfs_trans_committed_bulkChristoph Hellwig1-1/+1
2019-06-12xfs: remove unused flags arg from getsb interfacesEric Sandeen1-1/+1
2018-09-29xfs: avoid lockdep false positives in xfs_trans_allocDave Chinner1-2/+8
2018-08-02xfs: fold dfops into the transactionBrian Foster1-8/+5
2018-08-02xfs: replace xfs_defer_ops ->dop_pending with on-stack listBrian Foster1-1/+1
2018-08-02xfs: cancel dfops on xfs_defer_finish() errorBrian Foster1-3/+1
2018-08-02xfs: clean out superfluous dfops dop params/varsBrian Foster1-1/+1
2018-08-02xfs: pass transaction to dfops reset/move helpersBrian Foster1-1/+1
2018-08-02xfs: remove unused __xfs_defer_cancel() internal helperBrian Foster1-7/+0
2018-08-02xfs: refactor internal dfops initializationBrian Foster1-10/+9
2018-07-26xfs: bypass final dfops roll in trans commit pathBrian Foster1-1/+1
2018-07-26xfs: drop unnecessary xfs_defer_finish() dfops parameterBrian Foster1-3/+10
2018-07-26xfs: support embedded dfops in transactionBrian Foster1-4/+26
2018-07-11xfs: add firstblock field to xfs_transBrian Foster1-0/+2
2018-07-11xfs: rename xfs_trans ->t_agfl_dfops to ->t_dfopsBrian Foster1-3/+3
2018-06-24xfs: allow empty transactions while frozenDarrick J. Wong1-1/+6
2018-06-06xfs: convert to SPDX license tagsDave Chinner1-13/+1
2018-05-10xfs: get rid of the log item descriptorDave Chinner1-42/+16
2018-05-10xfs: add tracing to high level transaction operationsDave Chinner1-1/+19
2018-05-10xfs: log item flags are racyDave Chinner1-2/+2
2018-05-09xfs: defer agfl block frees when dfops is availableBrian Foster1-3/+8
2018-03-14xfs: merge _xfs_log_force_lsn and xfs_log_force_lsnChristoph Hellwig1-1/+1
2018-03-11xfs: shutdown if block allocation overruns tx reservationBrian Foster1-4/+8
2018-03-11xfs: Rename xa_ elements to ail_Matthew Wilcox1-9/+9
2018-01-08xfs: trace log reservations at mount timeDarrick J. Wong1-0/+22
2017-09-01xfs: refactor xfs_trans_rollChristoph Hellwig1-23/+5
2017-05-06Merge tag 'xfs-4.12-merge-7' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linuxLinus Torvalds1-15/+24
2017-05-03xfs: abstract PF_FSTRANS to PF_MEMALLOC_NOFSMichal Hocko1-6/+6
2017-04-06xfs: fold __xfs_trans_roll into xfs_trans_rollChristoph Hellwig1-15/+2
2017-04-03xfs: implement the GETFSMAP ioctlDarrick J. Wong1-0/+22
2016-10-03Merge branch 'xfs-4.9-reflink-prep' into for-nextDave Chinner1-1/+0
2016-09-19xfs: set up per-AG free space reservationsDarrick J. Wong1-1/+0
2016-09-14xfs: undo block reservation correctly in xfs_trans_reserve()Eryu Guan1-1/+1
2016-04-06xfs: remove transaction typesChristoph Hellwig1-1/+1
2016-04-06xfs: better xfs_trans_alloc interfaceChristoph Hellwig1-47/+41
2016-03-15xfs: ensure committed is initialized in xfs_trans_rollEric Sandeen1-1/+3
2015-10-12xfs: per-filesystem stats counter implementationBill O'Donnell1-3/+3
2015-08-19xfs: return committed status from xfs_trans_roll()Brian Foster1-2/+13
2015-06-04xfs: fix xfs_log_done interfaceChristoph Hellwig1-29/+4
2015-06-04xfs: saner xfs_trans_commit interfaceChristoph Hellwig1-16/+19
2015-06-04xfs: remove the flags argument to xfs_trans_cancelChristoph Hellwig1-18/+9
2015-06-04xfs: pass a boolean flag to xfs_trans_free_itemsChristoph Hellwig1-4/+4
2015-06-04xfs: switch remaining xfs_trans_dup users to xfs_trans_rollChristoph Hellwig1-3/+5
2015-02-23xfs: replace xfs_mod_incore_sb_batchedDave Chinner1-72/+126
2015-02-23xfs: introduce xfs_mod_frextentsDave Chinner1-8/+10
2015-02-23xfs: use generic percpu counters for free block counterDave Chinner1-10/+6
2015-02-23xfs: use generic percpu counters for free inode counterDave Chinner1-3/+2
2015-02-23xfs: use generic percpu counters for inode counterDave Chinner1-3/+2
2015-01-22xfs: set superblock buffer type correctlyDave Chinner1-0/+1
2014-11-28xfs: move most of xfs_sb.h to xfs_format.hChristoph Hellwig1-1/+0
2014-11-28xfs: merge xfs_ag.h into xfs_format.hChristoph Hellwig1-1/+0
2014-06-25xfs: global error sign conversionDave Chinner1-4/+4
2014-06-22xfs: Nuke XFS_ERROR macroEric Sandeen1-4/+4
2014-06-22xfs: return is not a functionEric Sandeen1-2/+2
2014-04-14xfs: remove unused ail pointer arg from xfs_trans_ail_cursor_done()Eric Sandeen1-1/+1
2014-02-07xfs: convert xfs_log_commit_cil() to voidJie Liu1-10/+2
2013-10-23xfs: decouple inode and bmap btree header filesDave Chinner1-15/+1
2013-10-23xfs: decouple log and transaction headersDave Chinner1-4/+6
2013-10-23xfs: unify directory/attribute format definitionsDave Chinner1-1/+1
2013-10-23xfs: create a shared header file for format-related informationDave Chinner1-0/+1
2013-08-30xfs: finish removing IOP_* macros.Dave Chinner1-10/+13
2013-08-12xfs: refactor xfs_trans_reserve() interfaceJie Liu1-25/+26
2013-08-12xfs: Introduce a new structure to hold transaction reservation itemsJie Liu1-1/+1
2013-08-12xfs: split out transaction reservation codeDave Chinner1-653/+1
2013-08-12xfs: split out on-disk transaction definitionsDave Chinner1-2/+2
2013-08-12xfs: separate dquot on disk format definitions out of xfs_quota.hDave Chinner1-1/+1
2013-06-27xfs: Inode create transaction reservationsDave Chinner1-41/+77
2013-02-01xfs: refactor space log reservation for XFS_TRANS_ATTR_SETJeff Liu1-4/+24
2013-02-01xfs: introduce XFS_SB_LOG_RES() for transactions that modify sb on diskJeff Liu1-0/+12
2013-02-01xfs: calculate XFS_TRANS_QM_QUOTAOFF_END space log reservation at mount timeJeff Liu1-0/+12
2013-02-01xfs: calculate XFS_TRANS_QM_QUOTAOFF space log reservation at mount timeJeff Liu1-0/+14
2013-02-01xfs: calculate XFS_TRANS_QM_DQALLOC space log reservation at mount timeJeff Liu1-0/+15
2013-02-01xfs: calcuate XFS_TRANS_QM_SETQLIM space log reservation at mount timeJeff Liu1-0/+12
2013-02-01xfs: calculate XFS_TRANS_QM_SBCHANGE space log reservation at mount timeJeff Liu1-0/+12
2013-02-01xfs: make use of xfs_calc_buf_res() in xfs_trans.cJeff Liu1-128/+112
2013-02-01xfs: add a helper to figure out the space log reservation per itemJeff Liu1-0/+31
2012-07-31xfs: Convert to new freezing codeJan Kara1-3/+14
2012-05-29xfs: switch to proper __bitwise type for KM_... flagsAl Viro1-1/+1
2012-05-14xfs: clean up xfs_bit.h includesDave Chinner1-1/+0
2012-05-14xfs: clean up busy extent namingDave Chinner1-2/+2
2012-05-14xfs: move busy extent handling to it's own fileDave Chinner1-0/+1
2012-05-14xfs: move xfsagino_t to xfs_types.hDave Chinner1-1/+0
2012-02-22xfs: split and cleanup xfs_log_reserveChristoph Hellwig1-11/+20
2012-02-13XFS: xfs_trans_add_item() - don't assign in ASSERT() when compare is intendedJesper Juhl1-2/+2
2011-12-08xfs: remove the lid_size field in struct log_item_descChristoph Hellwig1-1/+0
2011-12-08xfs: cleanup the transaction commit path a bitChristoph Hellwig1-77/+4
2011-12-08xfs: remove the deprecated nodelaylog optionChristoph Hellwig1-394/+1
2011-10-11xfs: simplify xfs_trans_ijoin* againChristoph Hellwig1-1/+1
2011-10-11xfs: unlock the inode before log force in xfs_fsyncChristoph Hellwig1-7/+4
2011-07-20xfs: use a cursor for bulk AIL insertionDave Chinner1-4/+23
2011-07-11Revert "xfs: fix filesystsem freeze race in xfs_trans_alloc"Alex Elder1-10/+17
2011-07-08xfs: fix filesystsem freeze race in xfs_trans_allocChristoph Hellwig1-17/+10
2011-07-06xfs: unpin stale inodes directly in IOP_COMMITTEDDave Chinner1-2/+2
2011-05-24xfs: add online discard supportChristoph Hellwig1-1/+1
2011-04-28xfs: reduce the number of pagb_lock roundtrips in xfs_alloc_clear_busyChristoph Hellwig1-4/+2
2011-01-28xfs: handle CIl transaction commit failures correctlyDave Chinner1-4/+1
2011-01-28xfs: fix efi item leak on forced shutdownDave Chinner1-7/+29
2011-01-11xfs: fix an assignment within an ASSERT()Jesper Juhl1-1/+1
2010-12-20xfs: bulk AIL insertion during transaction commitDave Chinner1-1/+78
2010-10-18xfs: fix the xfs_trans_committedChristoph Hellwig1-2/+3
2010-10-18xfs: remove unused t_callback field in struct xfs_transChristoph Hellwig1-4/+0
2010-10-18xfs: do not use xfs_mod_incore_sb_batch for per-cpu countersChristoph Hellwig1-28/+50
2010-10-18xfs: do not use xfs_mod_incore_sb for per-cpu countersChristoph Hellwig1-2/+2
2010-08-24xfs: unlock items before allowing the CIL to commitDave Chinner1-4/+1
2010-07-26xfs: fix xfs_trans_add_item() lockdep warningsDave Chinner1-1/+1
2010-07-26xfs: simplify inode to transaction joiningChristoph Hellwig1-2/+1
2010-07-26xfs: merge iop_unpin_remove into iop_unpinChristoph Hellwig1-2/+2
2010-07-26xfs: simplify log item descriptor trackingChristoph Hellwig1-69/+131
2010-07-26xfs: remove unneeded #include statementsChristoph Hellwig1-3/+0