| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/events/ |
| H A D | events_001_pos.ksh | 44 if poolexists $MPOOL; then 45 destroy_pool $MPOOL 64 run_and_verify -p "$MPOOL" \ 68 "zpool create $MPOOL mirror $VDEV1 $VDEV2" 71 run_and_verify -p "$MPOOL" \ 73 "zpool set comment=string $MPOOL" 76 run_and_verify -p "$MPOOL" \ 79 "zpool add -f $MPOOL spare $VDEV3" 80 run_and_verify -p "$MPOOL" \ 82 "zpool remove $MPOOL $VDEV3" [all …]
|
| H A D | events_002_pos.ksh | 46 poolexists $MPOOL && log_must destroy_pool $MPOOL 59 log_must zpool create -O compression=off $MPOOL mirror $VDEV1 $VDEV2 66 log_mustnot awk -v event="sysevent.fs.zfs.pool_create" -v crit="\\nZEVENT_POOL=$MPOOL" \ 75 log_must zpool offline $MPOOL $VDEV1 76 log_must zpool online $MPOOL $VDEV1 77 log_must zpool wait -t resilver $MPOOL 79 log_must zpool scrub $MPOOL 82 while ! is_pool_scrubbed $MPOOL; do
|
| H A D | events.cfg | 28 export MPOOL=mpool.$$
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/ |
| H A D | history_001_pos.ksh | 50 destroy_pool $MPOOL 69 run_and_verify -p "$MPOOL" "zpool create $MPOOL mirror $VDEV1 $VDEV2" 70 run_and_verify -p "$MPOOL" "zpool add -f $MPOOL spare $VDEV3" 71 run_and_verify -p "$MPOOL" "zpool remove $MPOOL $VDEV3" 72 run_and_verify -p "$MPOOL" "zpool offline $MPOOL $VDEV1" 73 run_and_verify -p "$MPOOL" "zpool online $MPOOL $VDEV1" 74 run_and_verify -p "$MPOOL" "zpool attach $MPOOL $VDEV1 $VDEV4" 75 run_and_verify -p "$MPOOL" "zpool detach $MPOOL $VDEV4" 76 run_and_verify -p "$MPOOL" "zpool replace -f $MPOOL $VDEV1 $VDEV4" 77 run_and_verify -p "$MPOOL" "zpool scrub $MPOOL" [all …]
|
| H A D | history.cfg | 34 export MPOOL=mpool.$$
|
| /freebsd/tests/sys/cddl/zfs/tests/history/ |
| H A D | history_001_pos.ksh | 61 destroy_pool $MPOOL 82 exec_record $ZPOOL create $MPOOL mirror $VDEV1 $VDEV2 83 exec_record $ZPOOL add -f $MPOOL spare $VDEV3 84 exec_record $ZPOOL remove $MPOOL $VDEV3 85 exec_record $ZPOOL offline $MPOOL $VDEV1 86 exec_record $ZPOOL online $MPOOL $VDEV1 87 exec_record $ZPOOL attach $MPOOL $VDEV1 $VDEV4 88 exec_record $ZPOOL detach $MPOOL $VDEV4 89 exec_record $ZPOOL replace -f $MPOOL $VDEV1 $VDEV4 90 exec_record $ZPOOL export $MPOOL [all …]
|
| H A D | history.cfg | 29 export MPOOL=mpool.${TESTCASE_ID}
|
| /freebsd/include/ |
| H A D | mpool.h | 60 typedef struct MPOOL { struct 85 } MPOOL; argument 94 MPOOL *mpool_open(void *, int, pgno_t, pgno_t); 95 void mpool_filter(MPOOL *, void (*)(void *, pgno_t, void *), 97 void *mpool_new(MPOOL *, pgno_t *, unsigned int); 98 void *mpool_get(MPOOL *, pgno_t, unsigned int); 99 int mpool_delete(MPOOL *, void *); 100 int mpool_put(MPOOL *, void *, unsigned int); 101 int mpool_sync(MPOOL *); 102 int mpool_close(MPOOL *); [all …]
|
| /freebsd/crypto/krb5/src/plugins/kdb/db2/libdb2/mpool/ |
| H A D | mpool.h | 61 typedef struct MPOOL { struct 86 } MPOOL; argument 105 MPOOL *mpool_open __P((void *, int, db_pgno_t, db_pgno_t)); 106 void mpool_filter __P((MPOOL *, void (*)(void *, db_pgno_t, void *), 108 void *mpool_new __P((MPOOL *, db_pgno_t *, u_int)); 109 void *mpool_get __P((MPOOL *, db_pgno_t, u_int)); 110 int mpool_delete __P((MPOOL *, void *)); 111 int mpool_put __P((MPOOL *, void *, u_int)); 112 int mpool_sync __P((MPOOL *)); 113 int mpool_close __P((MPOOL *)); [all …]
|
| H A D | mpool.c | 50 static BKT *mpool_bkt __P((MPOOL *)); 51 static BKT *mpool_look __P((MPOOL *, db_pgno_t)); 52 static int mpool_write __P((MPOOL *, BKT *)); 58 MPOOL * 62 MPOOL *mp; in mpool_open() 79 if ((mp = (MPOOL *)calloc(1, sizeof(MPOOL))) == NULL) in mpool_open() 96 mpool_filter(MPOOL *mp, void (*pgin) __P((void *, db_pgno_t, void *)), in mpool_filter() 109 mpool_new(MPOOL *mp, db_pgno_t *pgnoaddr, u_int flags) in mpool_new() 143 mpool_delete(MPOOL *mp, void *page) in mpool_delete() 172 mpool_get(MPOOL *mp, db_pgno_t pgno, u_int flags) in mpool_get() [all …]
|
| /freebsd/lib/libc/db/mpool/ |
| H A D | mpool.c | 49 static BKT *mpool_bkt(MPOOL *); 50 static BKT *mpool_look(MPOOL *, pgno_t); 51 static int mpool_write(MPOOL *, BKT *); 58 MPOOL * 62 MPOOL *mp; in mpool_open() 79 if ((mp = (MPOOL *)calloc(1, sizeof(MPOOL))) == NULL) in mpool_open() 96 mpool_filter(MPOOL *mp, void (*pgin) (void *, pgno_t, void *), in mpool_filter() 109 mpool_new(MPOOL *mp, pgno_t *pgnoaddr, u_int flags) in mpool_new() 143 mpool_delete(MPOOL *mp, void *page) in mpool_delete() 174 mpool_get(MPOOL *mp, pgno_t pgno, in mpool_get() [all …]
|
| H A D | mpool-compat.c | 32 void *__mpool_new__44bsd(MPOOL *, pgno_t *); 35 __mpool_new__44bsd(MPOOL *mp, pgno_t *pgnoaddr) in __mpool_new__44bsd()
|
| /freebsd/crypto/krb5/src/plugins/kdb/db2/libdb2/man/ |
| H A D | spell.ok | 38 MPOOL 39 MPOOL's
|
| /freebsd/crypto/krb5/src/plugins/kdb/db2/libdb2/hash/ |
| H A D | hash.h | 103 MPOOL *mp; /* mpool for buffer management */
|
| /freebsd/lib/libc/db/btree/ |
| H A D | btree.h | 301 MPOOL *bt_mp; /* memory pool cookie */
|
| /freebsd/crypto/krb5/src/plugins/kdb/db2/libdb2/btree/ |
| H A D | btree.h | 305 MPOOL *bt_mp; /* memory pool cookie */
|