Lines Matching +full:0 +full:x2b0

9 [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1
14 prog=$(basename "$0" .sh)
36 * [ 7.666646] dump_stack+0x57/0x6e
37 * [ 7.666717] spl_panic+0xd3/0xfb [spl]
38 * [ 7.667113] ? zfs_btree_find+0x16a/0x300 [zfs]
39 * [ 7.667278] ? range_tree_find_impl+0x55/0xa0 [zfs]
40 * [ 7.667333] ? _cond_resched+0x1a/0x50
41 * [ 7.667371] ? __kmalloc_node+0x14a/0x2b0
42 * [ 7.667415] ? spl_kmem_alloc_impl+0xb0/0xd0 [spl]
43 * [ 7.667555] ? __list_add+0x12/0x30 [zfs]
44 * [ 7.667681] spl_assert+0x17/0x20 [zfs]
45 * [ 7.667807] dbuf_redirty+0xad/0xb0 [zfs]
46 * [ 7.667963] dbuf_dirty+0xe76/0x1310 [zfs]
47 * [ 7.668011] ? mutex_lock+0xe/0x30
48 * [ 7.668133] ? dbuf_noread+0x112/0x240 [zfs]
49 * [ 7.668271] dmu_write_uio_dnode+0x101/0x1b0 [zfs]
50 * [ 7.668411] dmu_write_uio_dbuf+0x4a/0x70 [zfs]
51 * [ 7.668555] zfs_write+0x500/0xc80 [zfs]
52 * [ 7.668610] ? page_add_file_rmap+0xe/0xb0
53 * [ 7.668740] zpl_iter_write+0xe4/0x130 [zfs]
54 * [ 7.668803] new_sync_write+0x119/0x1b0
55 * [ 7.668843] vfs_write+0x1ce/0x260
56 * [ 7.668880] __x64_sys_pwrite64+0x91/0xc0
57 * [ 7.668918] do_syscall_64+0x30/0x40
58 * [ 7.668957] entry_SYSCALL_64_after_hwframe+0x61/0xc6
83 memset(data, 0x5a, DATASIZE);
87 S_IRUSR | S_IWUSR)) < 0) {
92 for (int i = 0; i < NDATA; i++) {
94 if (nwr < 0) {
104 if (lseek(fd, 0, SEEK_SET) < 0) {
118 if ((dfd = open(CLONE_NAME, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR)) < 0) {
123 if (copy_file_range(sfd, 0, dfd, 0, DATASIZE * NDATA, 0) < 0) {
134 void *p = mmap(NULL, DATASIZE*NDATA, PROT_READ, MAP_SHARED, fd, 0);
146 if (pwrite(fd, p, DATASIZE, 0) < 0) {
159 return (0);