1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2013 Fusion IO. All rights reserved.
6 #include <linux/pagemap.h>
7 #include <linux/sched.h>
8 #include <linux/slab.h>
9 #include <linux/sizes.h>
10 #include "btrfs-tests.h"
12 #include "../extent_io.h"
14 #define PROCESS_UNLOCK (1 << 0)
15 #define PROCESS_RELEASE (1 << 1)
16 #define PROCESS_TEST_LOCKED (1 << 2)
18 static noinline
int process_page_range(struct inode
*inode
, u64 start
, u64 end
,
22 struct page
*pages
[16];
23 unsigned long index
= start
>> PAGE_SHIFT
;
24 unsigned long end_index
= end
>> PAGE_SHIFT
;
25 unsigned long nr_pages
= end_index
- index
+ 1;
30 while (nr_pages
> 0) {
31 ret
= find_get_pages_contig(inode
->i_mapping
, index
,
32 min_t(unsigned long, nr_pages
,
33 ARRAY_SIZE(pages
)), pages
);
34 for (i
= 0; i
< ret
; i
++) {
35 if (flags
& PROCESS_TEST_LOCKED
&&
36 !PageLocked(pages
[i
]))
38 if (flags
& PROCESS_UNLOCK
&& PageLocked(pages
[i
]))
39 unlock_page(pages
[i
]);
41 if (flags
& PROCESS_RELEASE
)
49 printk(KERN_ERR
"stuck in a loop, start %Lu, end %Lu, nr_pages %lu, ret %d\n", start
, end
, nr_pages
, ret
);
56 static int test_find_delalloc(u32 sectorsize
)
59 struct extent_io_tree tmp
;
61 struct page
*locked_page
= NULL
;
62 unsigned long index
= 0;
63 u64 total_dirty
= SZ_256M
;
64 u64 max_bytes
= SZ_128M
;
65 u64 start
, end
, test_start
;
69 test_msg("Running find delalloc tests\n");
71 inode
= btrfs_new_test_inode();
73 test_msg("Failed to allocate test inode\n");
77 extent_io_tree_init(&tmp
, inode
);
80 * First go through and create and mark all of our pages dirty, we pin
81 * everything to make sure our pages don't get evicted and screw up our
84 for (index
= 0; index
< (total_dirty
>> PAGE_SHIFT
); index
++) {
85 page
= find_or_create_page(inode
->i_mapping
, index
, GFP_KERNEL
);
87 test_msg("Failed to allocate test page\n");
100 /* Test this scenario
104 set_extent_delalloc(&tmp
, 0, sectorsize
- 1, 0, NULL
);
107 found
= find_lock_delalloc_range(inode
, &tmp
, locked_page
, &start
,
110 test_msg("Should have found at least one delalloc\n");
113 if (start
!= 0 || end
!= (sectorsize
- 1)) {
114 test_msg("Expected start 0 end %u, got start %llu end %llu\n",
115 sectorsize
- 1, start
, end
);
118 unlock_extent(&tmp
, start
, end
);
119 unlock_page(locked_page
);
120 put_page(locked_page
);
129 locked_page
= find_lock_page(inode
->i_mapping
,
130 test_start
>> PAGE_SHIFT
);
132 test_msg("Couldn't find the locked page\n");
135 set_extent_delalloc(&tmp
, sectorsize
, max_bytes
- 1, 0, NULL
);
138 found
= find_lock_delalloc_range(inode
, &tmp
, locked_page
, &start
,
141 test_msg("Couldn't find delalloc in our range\n");
144 if (start
!= test_start
|| end
!= max_bytes
- 1) {
145 test_msg("Expected start %Lu end %Lu, got start %Lu, end "
146 "%Lu\n", test_start
, max_bytes
- 1, start
, end
);
149 if (process_page_range(inode
, start
, end
,
150 PROCESS_TEST_LOCKED
| PROCESS_UNLOCK
)) {
151 test_msg("There were unlocked pages in the range\n");
154 unlock_extent(&tmp
, start
, end
);
155 /* locked_page was unlocked above */
156 put_page(locked_page
);
163 test_start
= max_bytes
+ sectorsize
;
164 locked_page
= find_lock_page(inode
->i_mapping
, test_start
>>
167 test_msg("Couldn't find the locked page\n");
172 found
= find_lock_delalloc_range(inode
, &tmp
, locked_page
, &start
,
175 test_msg("Found range when we shouldn't have\n");
178 if (end
!= (u64
)-1) {
179 test_msg("Did not return the proper end offset\n");
185 * [------- delalloc -------|
186 * [max_bytes]|-- search--|
188 * We are re-using our test_start from above since it works out well.
190 set_extent_delalloc(&tmp
, max_bytes
, total_dirty
- 1, 0, NULL
);
193 found
= find_lock_delalloc_range(inode
, &tmp
, locked_page
, &start
,
196 test_msg("Didn't find our range\n");
199 if (start
!= test_start
|| end
!= total_dirty
- 1) {
200 test_msg("Expected start %Lu end %Lu, got start %Lu end %Lu\n",
201 test_start
, total_dirty
- 1, start
, end
);
204 if (process_page_range(inode
, start
, end
,
205 PROCESS_TEST_LOCKED
| PROCESS_UNLOCK
)) {
206 test_msg("Pages in range were not all locked\n");
209 unlock_extent(&tmp
, start
, end
);
212 * Now to test where we run into a page that is no longer dirty in the
213 * range we want to find.
215 page
= find_get_page(inode
->i_mapping
,
216 (max_bytes
+ SZ_1M
) >> PAGE_SHIFT
);
218 test_msg("Couldn't find our page\n");
221 ClearPageDirty(page
);
224 /* We unlocked it in the previous test */
225 lock_page(locked_page
);
229 * Currently if we fail to find dirty pages in the delalloc range we
230 * will adjust max_bytes down to PAGE_SIZE and then re-search. If
231 * this changes at any point in the future we will need to fix this
232 * tests expected behavior.
234 found
= find_lock_delalloc_range(inode
, &tmp
, locked_page
, &start
,
237 test_msg("Didn't find our range\n");
240 if (start
!= test_start
&& end
!= test_start
+ PAGE_SIZE
- 1) {
241 test_msg("Expected start %Lu end %Lu, got start %Lu end %Lu\n",
242 test_start
, test_start
+ PAGE_SIZE
- 1, start
,
246 if (process_page_range(inode
, start
, end
, PROCESS_TEST_LOCKED
|
248 test_msg("Pages in range were not all locked\n");
253 clear_extent_bits(&tmp
, 0, total_dirty
- 1, (unsigned)-1);
256 put_page(locked_page
);
257 process_page_range(inode
, 0, total_dirty
- 1,
258 PROCESS_UNLOCK
| PROCESS_RELEASE
);
263 static int check_eb_bitmap(unsigned long *bitmap
, struct extent_buffer
*eb
,
268 for (i
= 0; i
< len
* BITS_PER_BYTE
; i
++) {
271 bit
= !!test_bit(i
, bitmap
);
272 bit1
= !!extent_buffer_test_bit(eb
, 0, i
);
274 test_msg("Bits do not match\n");
278 bit1
= !!extent_buffer_test_bit(eb
, i
/ BITS_PER_BYTE
,
281 test_msg("Offset bits do not match\n");
288 static int __test_eb_bitmaps(unsigned long *bitmap
, struct extent_buffer
*eb
,
295 memset(bitmap
, 0, len
);
296 memzero_extent_buffer(eb
, 0, len
);
297 if (memcmp_extent_buffer(eb
, bitmap
, 0, len
) != 0) {
298 test_msg("Bitmap was not zeroed\n");
302 bitmap_set(bitmap
, 0, len
* BITS_PER_BYTE
);
303 extent_buffer_bitmap_set(eb
, 0, 0, len
* BITS_PER_BYTE
);
304 ret
= check_eb_bitmap(bitmap
, eb
, len
);
306 test_msg("Setting all bits failed\n");
310 bitmap_clear(bitmap
, 0, len
* BITS_PER_BYTE
);
311 extent_buffer_bitmap_clear(eb
, 0, 0, len
* BITS_PER_BYTE
);
312 ret
= check_eb_bitmap(bitmap
, eb
, len
);
314 test_msg("Clearing all bits failed\n");
318 /* Straddling pages test */
319 if (len
> PAGE_SIZE
) {
321 (PAGE_SIZE
- sizeof(long) / 2) * BITS_PER_BYTE
,
322 sizeof(long) * BITS_PER_BYTE
);
323 extent_buffer_bitmap_set(eb
, PAGE_SIZE
- sizeof(long) / 2, 0,
324 sizeof(long) * BITS_PER_BYTE
);
325 ret
= check_eb_bitmap(bitmap
, eb
, len
);
327 test_msg("Setting straddling pages failed\n");
331 bitmap_set(bitmap
, 0, len
* BITS_PER_BYTE
);
333 (PAGE_SIZE
- sizeof(long) / 2) * BITS_PER_BYTE
,
334 sizeof(long) * BITS_PER_BYTE
);
335 extent_buffer_bitmap_set(eb
, 0, 0, len
* BITS_PER_BYTE
);
336 extent_buffer_bitmap_clear(eb
, PAGE_SIZE
- sizeof(long) / 2, 0,
337 sizeof(long) * BITS_PER_BYTE
);
338 ret
= check_eb_bitmap(bitmap
, eb
, len
);
340 test_msg("Clearing straddling pages failed\n");
346 * Generate a wonky pseudo-random bit pattern for the sake of not using
347 * something repetitive that could miss some hypothetical off-by-n bug.
350 bitmap_clear(bitmap
, 0, len
* BITS_PER_BYTE
);
351 extent_buffer_bitmap_clear(eb
, 0, 0, len
* BITS_PER_BYTE
);
352 for (i
= 0; i
< len
* BITS_PER_BYTE
/ 32; i
++) {
353 x
= (0x19660dULL
* (u64
)x
+ 0x3c6ef35fULL
) & 0xffffffffU
;
354 for (j
= 0; j
< 32; j
++) {
356 bitmap_set(bitmap
, i
* 32 + j
, 1);
357 extent_buffer_bitmap_set(eb
, 0, i
* 32 + j
, 1);
362 ret
= check_eb_bitmap(bitmap
, eb
, len
);
364 test_msg("Random bit pattern failed\n");
371 static int test_eb_bitmaps(u32 sectorsize
, u32 nodesize
)
373 struct btrfs_fs_info
*fs_info
;
375 unsigned long *bitmap
;
376 struct extent_buffer
*eb
;
379 test_msg("Running extent buffer bitmap tests\n");
382 * In ppc64, sectorsize can be 64K, thus 4 * 64K will be larger than
383 * BTRFS_MAX_METADATA_BLOCKSIZE.
385 len
= (sectorsize
< BTRFS_MAX_METADATA_BLOCKSIZE
)
386 ? sectorsize
* 4 : sectorsize
;
388 fs_info
= btrfs_alloc_dummy_fs_info(len
, len
);
390 bitmap
= kmalloc(len
, GFP_KERNEL
);
392 test_msg("Couldn't allocate test bitmap\n");
396 eb
= __alloc_dummy_extent_buffer(fs_info
, 0, len
);
398 test_msg("Couldn't allocate test extent buffer\n");
403 ret
= __test_eb_bitmaps(bitmap
, eb
, len
);
407 /* Do it over again with an extent buffer which isn't page-aligned. */
408 free_extent_buffer(eb
);
409 eb
= __alloc_dummy_extent_buffer(NULL
, nodesize
/ 2, len
);
411 test_msg("Couldn't allocate test extent buffer\n");
416 ret
= __test_eb_bitmaps(bitmap
, eb
, len
);
418 free_extent_buffer(eb
);
423 int btrfs_test_extent_io(u32 sectorsize
, u32 nodesize
)
427 test_msg("Running extent I/O tests\n");
429 ret
= test_find_delalloc(sectorsize
);
433 ret
= test_eb_bitmaps(sectorsize
, nodesize
);
435 test_msg("Extent I/O tests finished\n");