Home
last modified time | relevance | path

Searched refs:remove (Results 1 – 25 of 349) sorted by relevance

12345678910>>...14

/f-stack/freebsd/contrib/openzfs/scripts/
H A Dzfs-helpers.sh51 Install/remove the ZFS helper utilities.
139 remove() { function
180 remove "$INSTALL_MOUNT_HELPER_DIR/mount.zfs"
181 remove "$INSTALL_MOUNT_HELPER_DIR/fsck.zfs"
182 remove "$INSTALL_UDEV_DIR/zvol_id"
183 remove "$INSTALL_UDEV_DIR/vdev_id"
186 remove "$INSTALL_UDEV_RULE_DIR/90-zfs.rules"
187 remove "$INSTALL_SYSCONF_DIR/zfs/zpool.d"
188 remove "$INSTALL_PYTHON_DIR/libzfs_core"
189 remove "/lib/libzfs_core.so"
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_table.lua212 assert(table.remove(a,1) == -1)
213 assert(table.remove(a,1) == -2)
214 assert(table.remove(a,1) == 10)
215 assert(table.remove(a,1) == 20)
216 assert(table.remove(a,1) == 40)
217 assert(table.remove(a,1) == 50)
231 assert(table.remove(a) == 10)
232 assert(table.remove(a) == 20)
233 assert(table.remove(a) == -1)
238 assert(table.remove(a, 1) == 'c')
[all …]
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dzfs_rlock.c566 if (remove->lr_count == 1) { in zfs_rangelock_exit_reader()
567 avl_remove(tree, remove); in zfs_rangelock_exit_reader()
568 if (remove->lr_write_wanted) in zfs_rangelock_exit_reader()
569 cv_broadcast(&remove->lr_write_cv); in zfs_rangelock_exit_reader()
570 if (remove->lr_read_wanted) in zfs_rangelock_exit_reader()
571 cv_broadcast(&remove->lr_read_cv); in zfs_rangelock_exit_reader()
572 list_insert_tail(free_list, remove); in zfs_rangelock_exit_reader()
574 ASSERT0(remove->lr_count); in zfs_rangelock_exit_reader()
575 ASSERT0(remove->lr_write_wanted); in zfs_rangelock_exit_reader()
576 ASSERT0(remove->lr_read_wanted); in zfs_rangelock_exit_reader()
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_wait/
H A Dzpool_wait_remove_cancel.ksh51 log_must zpool remove $TESTPOOL $DISK1
53 log_bkgrnd zpool wait -t remove $TESTPOOL
59 log_must zpool remove -s $TESTPOOL
H A Dzpool_wait_remove.ksh55 log_bkgrnd zpool remove -w $TESTPOOL $DISK1
62 log_must zpool remove $TESTPOOL $DISK1
63 log_bkgrnd zpool wait -t remove $TESTPOOL
H A Dzpool_wait_no_activity.ksh40 typeset activities=(free discard initialize replace remove resilver scrub)
47 log_must timeout $TIMEOUT_SECS zpool wait -t free,remove,discard $TESTPOOL
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/removal/
H A Dremove_raidz.ksh42 log_mustnot zpool remove $TESTPOOL $TMPDIR/dsk1
45 log_mustnot zpool remove $TESTPOOL $TMPDIR/dsk2
48 log_mustnot zpool remove $TESTPOOL raidz1-1
H A Dremove_mirror.ksh45 log_must zpool remove $TESTPOOL $DISK1
48 log_mustnot zpool remove $TESTPOOL $DISK2
55 log_must zpool remove $TESTPOOL mirror-1
H A Dremoval_with_errors.ksh67 log_must zpool wait -t remove $pool
94 log_must zpool remove $TESTPOOL mirror-0
105 log_must zpool remove $TESTPOOL mirror-0
H A Dremoval_all_vdev.ksh29 log_must zpool remove $TESTPOOL $disk
37 log_mustnot zpool remove $TESTPOOL $disk
H A Dremoval_cancel.ksh77 log_must zpool remove $TESTPOOL $REMOVEDISK
87 log_must zpool remove -s $TESTPOOL
H A Dremove_indirect.ksh50 log_must zpool remove $TESTPOOL $TEST_BASE_DIR/device-1
56 log_mustnot zpool remove $TESTPOOL $INDIRECT_VDEV
H A Dremoval.kshlib31 log_must zpool wait -t remove $pool
66 log_must zpool remove $pool $disk
H A Dremoval_multiple_indirection.ksh74 log_must zpool remove $TESTPOOL $TMPDIR/dsk1
83 log_must zpool remove $TESTPOOL $TMPDIR/dsk2
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dimport_cachefile_device_removed.ksh55 log_must zpool remove $TESTPOOL1 $removevdev
84 log_must zpool remove $TESTPOOL1 $VDEV4
87 log_must zpool remove $TESTPOOL1 $VDEV3
116 log_must zpool remove $TESTPOOL1 $VDEV1
118 log_must zpool remove $TESTPOOL1 $VDEV3
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-shmem.c605 static inline int __cvmx_shmem_close_dscptr(struct cvmx_shmem_dscptr *dscptr, int remove) in __cvmx_shmem_close_dscptr() argument
612 if ((dscptr->use_count == 0) && remove) in __cvmx_shmem_close_dscptr()
648 static inline int __cvmx_shmem_close_standalone(struct cvmx_shmem_dscptr *dscptr, int remove) in __cvmx_shmem_close_standalone() argument
650 return __cvmx_shmem_close_dscptr(dscptr, remove); in __cvmx_shmem_close_standalone()
670 int __cvmx_shmem_close_linux(struct cvmx_shmem_dscptr *dscptr, int remove) in __cvmx_shmem_close_linux() argument
673 ret = __cvmx_shmem_close_dscptr(dscptr, remove); in __cvmx_shmem_close_linux()
698 int cvmx_shmem_close(struct cvmx_shmem_dscptr *dscptr, int remove) in cvmx_shmem_close() argument
702 ret = __cvmx_shmem_close_linux(dscptr, remove); in cvmx_shmem_close()
704 ret = __cvmx_shmem_close_standalone(dscptr, remove); in cvmx_shmem_close()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/mmp/
H A Dmmp_hostid.ksh90 log_must zpool remove $MMP_POOL $MMP_DIR/file.2
91 log_must zpool remove $MMP_POOL $MMP_DIR/file.3
92 log_must zpool remove $MMP_POOL $MMP_DIR/file.4
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_remove/
H A Dzpool_remove_002_pos.ksh61 log_must zpool remove $TESTPOOL $spare_devs2
65 log_must zpool remove $TESTPOOL $spare_devs2
H A Dzpool_remove_003_pos.ksh67 log_mustnot zpool remove $TESTPOOL $spare_devs3
69 log_must zpool remove $TESTPOOL $spare_devs3
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/migration/
H A Dsetup.ksh51 rm -rf $TESTDIR || log_unresolved Could not remove $TESTDIR
57 rm -rf $NONZFS_TESTDIR || log_unresolved Could not remove $NONZFS_TESTDIR
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/casenorm/
H A Dcasenorm.kshlib27 rm -rf $TESTDIR || log_unresolved Could not remove $TESTDIR
38 rm -rf $TESTDIR || log_unresolved Could not remove $TESTDIR
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cache/
H A Dcache_010_pos.ksh74 log_must zpool remove $TESTPOOL ${DEV_RDSKDIR}/${dsk1}
80 log_must zpool remove $TESTPOOL $dsk1
/f-stack/dpdk/drivers/net/mlx5/linux/
H A Dmlx5_socket.c186 remove(sun.sun_path); in mlx5_pmd_socket_init()
206 remove(sun.sun_path); in mlx5_pmd_socket_init()
225 claim_zero(remove(path)); in RTE_FINI()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/mv_files/
H A Dmv_files_common.kshlib93 rm -rf $TESTDIR || log_unresolved Could not remove $TESTDIR
96 rm -rf $TESTDIR_TGT || log_unresolved Could not remove $TESTDIR_TGT
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dservice_cores.rst54 the runtime functions to add, remove and remap service cores.
85 The APIs to add and remove cores use lcore IDs similar to existing DPDK
114 To remove a service core, the steps are similar to adding but in reverse order.
115 Note that it is not allowed to remove a service core if the service is running,

12345678910>>...14