blob: 45560ee1a4ba8b1ccfdc36f9616cc5355e03558d [file] [log] [blame]
Christoph Hellwiga46db602011-01-07 13:02:04 +00001/*
2 * Copyright (C) 2010 Red Hat, Inc.
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18#include "xfs.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +100019#include "xfs_format.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000020#include "xfs_log.h"
Dave Chinner7fd36c42013-08-12 20:49:32 +100021#include "xfs_trans.h"
22#include "xfs_sb.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000023#include "xfs_ag.h"
24#include "xfs_mount.h"
25#include "xfs_quota.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000026#include "xfs_alloc_btree.h"
27#include "xfs_bmap_btree.h"
28#include "xfs_ialloc_btree.h"
29#include "xfs_btree.h"
30#include "xfs_inode.h"
31#include "xfs_alloc.h"
32#include "xfs_error.h"
Dave Chinnerefc27b52012-04-29 10:39:43 +000033#include "xfs_extent_busy.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000034#include "xfs_discard.h"
35#include "xfs_trace.h"
36
37STATIC int
38xfs_trim_extents(
39 struct xfs_mount *mp,
40 xfs_agnumber_t agno,
Dave Chinnera66d6362012-03-22 05:15:12 +000041 xfs_daddr_t start,
42 xfs_daddr_t end,
43 xfs_daddr_t minlen,
Christoph Hellwiga46db602011-01-07 13:02:04 +000044 __uint64_t *blocks_trimmed)
45{
46 struct block_device *bdev = mp->m_ddev_targp->bt_bdev;
47 struct xfs_btree_cur *cur;
48 struct xfs_buf *agbp;
49 struct xfs_perag *pag;
50 int error;
51 int i;
52
53 pag = xfs_perag_get(mp, agno);
54
55 error = xfs_alloc_read_agf(mp, NULL, agno, 0, &agbp);
56 if (error || !agbp)
57 goto out_put_perag;
58
59 cur = xfs_allocbt_init_cursor(mp, NULL, agbp, agno, XFS_BTNUM_CNT);
60
61 /*
62 * Force out the log. This means any transactions that might have freed
63 * space before we took the AGF buffer lock are now on disk, and the
64 * volatile disk cache is flushed.
65 */
66 xfs_log_force(mp, XFS_LOG_SYNC);
67
68 /*
69 * Look up the longest btree in the AGF and start with it.
70 */
Dave Chinnera66d6362012-03-22 05:15:12 +000071 error = xfs_alloc_lookup_ge(cur, 0,
Dave Chinnerb1c770c2011-12-21 00:07:42 +000072 be32_to_cpu(XFS_BUF_TO_AGF(agbp)->agf_longest), &i);
Christoph Hellwiga46db602011-01-07 13:02:04 +000073 if (error)
74 goto out_del_cursor;
75
76 /*
77 * Loop until we are done with all extents that are large
78 * enough to be worth discarding.
79 */
80 while (i) {
Dave Chinnera66d6362012-03-22 05:15:12 +000081 xfs_agblock_t fbno;
82 xfs_extlen_t flen;
83 xfs_daddr_t dbno;
84 xfs_extlen_t dlen;
Christoph Hellwiga46db602011-01-07 13:02:04 +000085
86 error = xfs_alloc_get_rec(cur, &fbno, &flen, &i);
87 if (error)
88 goto out_del_cursor;
89 XFS_WANT_CORRUPTED_GOTO(i == 1, out_del_cursor);
Dave Chinnerb1c770c2011-12-21 00:07:42 +000090 ASSERT(flen <= be32_to_cpu(XFS_BUF_TO_AGF(agbp)->agf_longest));
Christoph Hellwiga46db602011-01-07 13:02:04 +000091
92 /*
Dave Chinnera66d6362012-03-22 05:15:12 +000093 * use daddr format for all range/len calculations as that is
94 * the format the range/len variables are supplied in by
95 * userspace.
96 */
97 dbno = XFS_AGB_TO_DADDR(mp, agno, fbno);
98 dlen = XFS_FSB_TO_BB(mp, flen);
99
100 /*
Christoph Hellwiga46db602011-01-07 13:02:04 +0000101 * Too small? Give up.
102 */
Dave Chinnera66d6362012-03-22 05:15:12 +0000103 if (dlen < minlen) {
Christoph Hellwiga46db602011-01-07 13:02:04 +0000104 trace_xfs_discard_toosmall(mp, agno, fbno, flen);
105 goto out_del_cursor;
106 }
107
108 /*
109 * If the extent is entirely outside of the range we are
110 * supposed to discard skip it. Do not bother to trim
111 * down partially overlapping ranges for now.
112 */
Dave Chinnera66d6362012-03-22 05:15:12 +0000113 if (dbno + dlen < start || dbno > end) {
Christoph Hellwiga46db602011-01-07 13:02:04 +0000114 trace_xfs_discard_exclude(mp, agno, fbno, flen);
115 goto next_extent;
116 }
117
118 /*
119 * If any blocks in the range are still busy, skip the
120 * discard and try again the next time.
121 */
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000122 if (xfs_extent_busy_search(mp, agno, fbno, flen)) {
Christoph Hellwiga46db602011-01-07 13:02:04 +0000123 trace_xfs_discard_busy(mp, agno, fbno, flen);
124 goto next_extent;
125 }
126
127 trace_xfs_discard_extent(mp, agno, fbno, flen);
Dave Chinnera66d6362012-03-22 05:15:12 +0000128 error = -blkdev_issue_discard(bdev, dbno, dlen, GFP_NOFS, 0);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000129 if (error)
130 goto out_del_cursor;
131 *blocks_trimmed += flen;
132
133next_extent:
134 error = xfs_btree_decrement(cur, 0, &i);
135 if (error)
136 goto out_del_cursor;
137 }
138
139out_del_cursor:
140 xfs_btree_del_cursor(cur, error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
141 xfs_buf_relse(agbp);
142out_put_perag:
143 xfs_perag_put(pag);
144 return error;
145}
146
Dave Chinnera66d6362012-03-22 05:15:12 +0000147/*
148 * trim a range of the filesystem.
149 *
150 * Note: the parameters passed from userspace are byte ranges into the
151 * filesystem which does not match to the format we use for filesystem block
152 * addressing. FSB addressing is sparse (AGNO|AGBNO), while the incoming format
153 * is a linear address range. Hence we need to use DADDR based conversions and
154 * comparisons for determining the correct offset and regions to trim.
155 */
Christoph Hellwiga46db602011-01-07 13:02:04 +0000156int
157xfs_ioc_trim(
158 struct xfs_mount *mp,
159 struct fstrim_range __user *urange)
160{
161 struct request_queue *q = mp->m_ddev_targp->bt_bdev->bd_disk->queue;
162 unsigned int granularity = q->limits.discard_granularity;
163 struct fstrim_range range;
Dave Chinnera66d6362012-03-22 05:15:12 +0000164 xfs_daddr_t start, end, minlen;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000165 xfs_agnumber_t start_agno, end_agno, agno;
166 __uint64_t blocks_trimmed = 0;
167 int error, last_error = 0;
168
169 if (!capable(CAP_SYS_ADMIN))
170 return -XFS_ERROR(EPERM);
Lukas Czernerbe715142011-02-15 17:07:36 +0000171 if (!blk_queue_discard(q))
172 return -XFS_ERROR(EOPNOTSUPP);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000173 if (copy_from_user(&range, urange, sizeof(range)))
174 return -XFS_ERROR(EFAULT);
175
176 /*
177 * Truncating down the len isn't actually quite correct, but using
Dave Chinnera66d6362012-03-22 05:15:12 +0000178 * BBTOB would mean we trivially get overflows for values
Christoph Hellwiga46db602011-01-07 13:02:04 +0000179 * of ULLONG_MAX or slightly lower. And ULLONG_MAX is the default
180 * used by the fstrim application. In the end it really doesn't
181 * matter as trimming blocks is an advisory interface.
182 */
Tomas Raceka672e1b2012-08-14 10:35:04 +0200183 if (range.start >= XFS_FSB_TO_B(mp, mp->m_sb.sb_dblocks) ||
184 range.minlen > XFS_FSB_TO_B(mp, XFS_ALLOC_AG_MAX_USABLE(mp)))
185 return -XFS_ERROR(EINVAL);
186
Dave Chinnera66d6362012-03-22 05:15:12 +0000187 start = BTOBB(range.start);
188 end = start + BTOBBT(range.len) - 1;
189 minlen = BTOBB(max_t(u64, granularity, range.minlen));
Christoph Hellwiga46db602011-01-07 13:02:04 +0000190
Dave Chinnera66d6362012-03-22 05:15:12 +0000191 if (end > XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks) - 1)
192 end = XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)- 1;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000193
Dave Chinnera66d6362012-03-22 05:15:12 +0000194 start_agno = xfs_daddr_to_agno(mp, start);
195 end_agno = xfs_daddr_to_agno(mp, end);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000196
197 for (agno = start_agno; agno <= end_agno; agno++) {
Lukas Czernerc029a502011-09-21 09:42:30 +0000198 error = -xfs_trim_extents(mp, agno, start, end, minlen,
Christoph Hellwiga46db602011-01-07 13:02:04 +0000199 &blocks_trimmed);
200 if (error)
201 last_error = error;
202 }
203
204 if (last_error)
205 return last_error;
206
207 range.len = XFS_FSB_TO_B(mp, blocks_trimmed);
208 if (copy_to_user(urange, &range, sizeof(range)))
209 return -XFS_ERROR(EFAULT);
210 return 0;
211}
Christoph Hellwige84661a2011-05-20 13:45:32 +0000212
213int
214xfs_discard_extents(
215 struct xfs_mount *mp,
216 struct list_head *list)
217{
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000218 struct xfs_extent_busy *busyp;
Christoph Hellwige84661a2011-05-20 13:45:32 +0000219 int error = 0;
220
221 list_for_each_entry(busyp, list, list) {
222 trace_xfs_discard_extent(mp, busyp->agno, busyp->bno,
223 busyp->length);
224
225 error = -blkdev_issue_discard(mp->m_ddev_targp->bt_bdev,
226 XFS_AGB_TO_DADDR(mp, busyp->agno, busyp->bno),
227 XFS_FSB_TO_BB(mp, busyp->length),
228 GFP_NOFS, 0);
229 if (error && error != EOPNOTSUPP) {
230 xfs_info(mp,
231 "discard failed for extent [0x%llu,%u], error %d",
232 (unsigned long long)busyp->bno,
233 busyp->length,
234 error);
235 return error;
236 }
237 }
238
239 return 0;
240}