1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2010 Red Hat, Inc.
7 #include "xfs_shared.h"
8 #include "xfs_format.h"
9 #include "xfs_log_format.h"
10 #include "xfs_trans_resv.h"
12 #include "xfs_mount.h"
13 #include "xfs_btree.h"
14 #include "xfs_alloc_btree.h"
15 #include "xfs_alloc.h"
16 #include "xfs_discard.h"
17 #include "xfs_error.h"
18 #include "xfs_extent_busy.h"
19 #include "xfs_trace.h"
29 uint64_t *blocks_trimmed
)
31 struct block_device
*bdev
= mp
->m_ddev_targp
->bt_bdev
;
32 struct xfs_btree_cur
*cur
;
34 struct xfs_perag
*pag
;
38 pag
= xfs_perag_get(mp
, agno
);
41 * Force out the log. This means any transactions that might have freed
42 * space before we take the AGF buffer lock are now on disk, and the
43 * volatile disk cache is flushed.
45 xfs_log_force(mp
, XFS_LOG_SYNC
);
47 error
= xfs_alloc_read_agf(mp
, NULL
, agno
, 0, &agbp
);
51 cur
= xfs_allocbt_init_cursor(mp
, NULL
, agbp
, agno
, XFS_BTNUM_CNT
);
54 * Look up the longest btree in the AGF and start with it.
56 error
= xfs_alloc_lookup_ge(cur
, 0,
57 be32_to_cpu(XFS_BUF_TO_AGF(agbp
)->agf_longest
), &i
);
62 * Loop until we are done with all extents that are large
63 * enough to be worth discarding.
71 error
= xfs_alloc_get_rec(cur
, &fbno
, &flen
, &i
);
74 if (XFS_IS_CORRUPT(mp
, i
!= 1)) {
75 error
= -EFSCORRUPTED
;
78 ASSERT(flen
<= be32_to_cpu(XFS_BUF_TO_AGF(agbp
)->agf_longest
));
81 * use daddr format for all range/len calculations as that is
82 * the format the range/len variables are supplied in by
85 dbno
= XFS_AGB_TO_DADDR(mp
, agno
, fbno
);
86 dlen
= XFS_FSB_TO_BB(mp
, flen
);
92 trace_xfs_discard_toosmall(mp
, agno
, fbno
, flen
);
97 * If the extent is entirely outside of the range we are
98 * supposed to discard skip it. Do not bother to trim
99 * down partially overlapping ranges for now.
101 if (dbno
+ dlen
< start
|| dbno
> end
) {
102 trace_xfs_discard_exclude(mp
, agno
, fbno
, flen
);
107 * If any blocks in the range are still busy, skip the
108 * discard and try again the next time.
110 if (xfs_extent_busy_search(mp
, agno
, fbno
, flen
)) {
111 trace_xfs_discard_busy(mp
, agno
, fbno
, flen
);
115 trace_xfs_discard_extent(mp
, agno
, fbno
, flen
);
116 error
= blkdev_issue_discard(bdev
, dbno
, dlen
, GFP_NOFS
, 0);
119 *blocks_trimmed
+= flen
;
122 error
= xfs_btree_decrement(cur
, 0, &i
);
126 if (fatal_signal_pending(current
)) {
127 error
= -ERESTARTSYS
;
133 xfs_btree_del_cursor(cur
, error
);
141 * trim a range of the filesystem.
143 * Note: the parameters passed from userspace are byte ranges into the
144 * filesystem which does not match to the format we use for filesystem block
145 * addressing. FSB addressing is sparse (AGNO|AGBNO), while the incoming format
146 * is a linear address range. Hence we need to use DADDR based conversions and
147 * comparisons for determining the correct offset and regions to trim.
151 struct xfs_mount
*mp
,
152 struct fstrim_range __user
*urange
)
154 struct request_queue
*q
= bdev_get_queue(mp
->m_ddev_targp
->bt_bdev
);
155 unsigned int granularity
= q
->limits
.discard_granularity
;
156 struct fstrim_range range
;
157 xfs_daddr_t start
, end
, minlen
;
158 xfs_agnumber_t start_agno
, end_agno
, agno
;
159 uint64_t blocks_trimmed
= 0;
160 int error
, last_error
= 0;
162 if (!capable(CAP_SYS_ADMIN
))
164 if (!blk_queue_discard(q
))
168 * We haven't recovered the log, so we cannot use our bnobt-guided
169 * storage zapping commands.
171 if (mp
->m_flags
& XFS_MOUNT_NORECOVERY
)
174 if (copy_from_user(&range
, urange
, sizeof(range
)))
177 range
.minlen
= max_t(u64
, granularity
, range
.minlen
);
178 minlen
= BTOBB(range
.minlen
);
180 * Truncating down the len isn't actually quite correct, but using
181 * BBTOB would mean we trivially get overflows for values
182 * of ULLONG_MAX or slightly lower. And ULLONG_MAX is the default
183 * used by the fstrim application. In the end it really doesn't
184 * matter as trimming blocks is an advisory interface.
186 if (range
.start
>= XFS_FSB_TO_B(mp
, mp
->m_sb
.sb_dblocks
) ||
187 range
.minlen
> XFS_FSB_TO_B(mp
, mp
->m_ag_max_usable
) ||
188 range
.len
< mp
->m_sb
.sb_blocksize
)
191 start
= BTOBB(range
.start
);
192 end
= start
+ BTOBBT(range
.len
) - 1;
194 if (end
> XFS_FSB_TO_BB(mp
, mp
->m_sb
.sb_dblocks
) - 1)
195 end
= XFS_FSB_TO_BB(mp
, mp
->m_sb
.sb_dblocks
)- 1;
197 start_agno
= xfs_daddr_to_agno(mp
, start
);
198 end_agno
= xfs_daddr_to_agno(mp
, end
);
200 for (agno
= start_agno
; agno
<= end_agno
; agno
++) {
201 error
= xfs_trim_extents(mp
, agno
, start
, end
, minlen
,
205 if (error
== -ERESTARTSYS
)
213 range
.len
= XFS_FSB_TO_B(mp
, blocks_trimmed
);
214 if (copy_to_user(urange
, &range
, sizeof(range
)))