sdb-debugger 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sdb_debugger-0.2.1/.github/scripts/clear-dump.sh +13 -0
- sdb_debugger-0.2.1/.github/scripts/download-dumps-from-gdrive.sh +10 -0
- sdb_debugger-0.2.1/.github/scripts/extract-dump.sh +73 -0
- sdb_debugger-0.2.1/.github/scripts/install-drgn.sh +17 -0
- sdb_debugger-0.2.1/.github/scripts/install-libkdumpfile.sh +23 -0
- sdb_debugger-0.2.1/.github/workflows/main.yml +145 -0
- sdb_debugger-0.2.1/.github/workflows/release.yml +154 -0
- sdb_debugger-0.2.1/.gitignore +119 -0
- sdb_debugger-0.2.1/CODE_OF_CONDUCT.md +128 -0
- sdb_debugger-0.2.1/LICENSE +201 -0
- sdb_debugger-0.2.1/PKG-INFO +186 -0
- sdb_debugger-0.2.1/PUBLISHING.md +163 -0
- sdb_debugger-0.2.1/README.md +153 -0
- sdb_debugger-0.2.1/assets/img/sdb-logo.jpg +0 -0
- sdb_debugger-0.2.1/assets/img/sdb-logo.png +0 -0
- sdb_debugger-0.2.1/assets/img/sdb-logo_white.png +0 -0
- sdb_debugger-0.2.1/debian/compat +1 -0
- sdb_debugger-0.2.1/debian/control +11 -0
- sdb_debugger-0.2.1/debian/copyright +27 -0
- sdb_debugger-0.2.1/debian/rules +11 -0
- sdb_debugger-0.2.1/pyproject.toml +136 -0
- sdb_debugger-0.2.1/requirements-dev.txt +23 -0
- sdb_debugger-0.2.1/requirements.txt +4 -0
- sdb_debugger-0.2.1/scripts/publish-to-pypi.sh +64 -0
- sdb_debugger-0.2.1/sdb/__init__.py +101 -0
- sdb_debugger-0.2.1/sdb/_version.py +34 -0
- sdb_debugger-0.2.1/sdb/command.py +894 -0
- sdb_debugger-0.2.1/sdb/commands/__init__.py +30 -0
- sdb_debugger-0.2.1/sdb/commands/array.py +125 -0
- sdb_debugger-0.2.1/sdb/commands/container_of.py +66 -0
- sdb_debugger-0.2.1/sdb/commands/count.py +57 -0
- sdb_debugger-0.2.1/sdb/commands/echo.py +48 -0
- sdb_debugger-0.2.1/sdb/commands/exit.py +32 -0
- sdb_debugger-0.2.1/sdb/commands/filter.py +140 -0
- sdb_debugger-0.2.1/sdb/commands/head.py +52 -0
- sdb_debugger-0.2.1/sdb/commands/help.py +61 -0
- sdb_debugger-0.2.1/sdb/commands/history.py +49 -0
- sdb_debugger-0.2.1/sdb/commands/internal/__init__.py +26 -0
- sdb_debugger-0.2.1/sdb/commands/internal/fmt.py +32 -0
- sdb_debugger-0.2.1/sdb/commands/internal/p2.py +25 -0
- sdb_debugger-0.2.1/sdb/commands/internal/table.py +96 -0
- sdb_debugger-0.2.1/sdb/commands/internal/util.py +154 -0
- sdb_debugger-0.2.1/sdb/commands/linux/__init__.py +30 -0
- sdb_debugger-0.2.1/sdb/commands/linux/dmesg.py +79 -0
- sdb_debugger-0.2.1/sdb/commands/linux/internal/__init__.py +26 -0
- sdb_debugger-0.2.1/sdb/commands/linux/internal/slub_helpers.py +163 -0
- sdb_debugger-0.2.1/sdb/commands/linux/linked_lists.py +136 -0
- sdb_debugger-0.2.1/sdb/commands/linux/per_cpu.py +106 -0
- sdb_debugger-0.2.1/sdb/commands/linux/process.py +99 -0
- sdb_debugger-0.2.1/sdb/commands/linux/slabs.py +247 -0
- sdb_debugger-0.2.1/sdb/commands/linux/stacks.py +458 -0
- sdb_debugger-0.2.1/sdb/commands/linux/threads.py +106 -0
- sdb_debugger-0.2.1/sdb/commands/linux/tree.py +69 -0
- sdb_debugger-0.2.1/sdb/commands/linux/vfs.py +54 -0
- sdb_debugger-0.2.1/sdb/commands/linux/whatis.py +78 -0
- sdb_debugger-0.2.1/sdb/commands/member.py +311 -0
- sdb_debugger-0.2.1/sdb/commands/pretty_print.py +54 -0
- sdb_debugger-0.2.1/sdb/commands/print.py +98 -0
- sdb_debugger-0.2.1/sdb/commands/ptype.py +79 -0
- sdb_debugger-0.2.1/sdb/commands/pyfilter.py +58 -0
- sdb_debugger-0.2.1/sdb/commands/sizeof.py +64 -0
- sdb_debugger-0.2.1/sdb/commands/spl/__init__.py +26 -0
- sdb_debugger-0.2.1/sdb/commands/spl/avl.py +48 -0
- sdb_debugger-0.2.1/sdb/commands/spl/internal/__init__.py +26 -0
- sdb_debugger-0.2.1/sdb/commands/spl/internal/kmem_helpers.py +219 -0
- sdb_debugger-0.2.1/sdb/commands/spl/multilist.py +34 -0
- sdb_debugger-0.2.1/sdb/commands/spl/spl_kmem_caches.py +234 -0
- sdb_debugger-0.2.1/sdb/commands/spl/spl_list.py +36 -0
- sdb_debugger-0.2.1/sdb/commands/sum.py +54 -0
- sdb_debugger-0.2.1/sdb/commands/tail.py +51 -0
- sdb_debugger-0.2.1/sdb/commands/type.py +38 -0
- sdb_debugger-0.2.1/sdb/commands/ustacks.py +284 -0
- sdb_debugger-0.2.1/sdb/commands/uthreads.py +38 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/__init__.py +26 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/arc.py +43 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/blkptr.py +164 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/btree.py +98 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/dbuf.py +139 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/histograms.py +155 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/internal/__init__.py +272 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/metaslab.py +200 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/range_tree.py +87 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/spa.py +92 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/vdev.py +180 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/zfs_dbgmsg.py +63 -0
- sdb_debugger-0.2.1/sdb/commands/zfs/zio.py +146 -0
- sdb_debugger-0.2.1/sdb/error.py +109 -0
- sdb_debugger-0.2.1/sdb/internal/__init__.py +0 -0
- sdb_debugger-0.2.1/sdb/internal/cli.py +251 -0
- sdb_debugger-0.2.1/sdb/internal/repl.py +198 -0
- sdb_debugger-0.2.1/sdb/parser.py +250 -0
- sdb_debugger-0.2.1/sdb/pipeline.py +174 -0
- sdb_debugger-0.2.1/sdb/target.py +213 -0
- sdb_debugger-0.2.1/sdb_debugger.egg-info/PKG-INFO +186 -0
- sdb_debugger-0.2.1/sdb_debugger.egg-info/SOURCES.txt +571 -0
- sdb_debugger-0.2.1/sdb_debugger.egg-info/dependency_links.txt +1 -0
- sdb_debugger-0.2.1/sdb_debugger.egg-info/entry_points.txt +2 -0
- sdb_debugger-0.2.1/sdb_debugger.egg-info/requires.txt +9 -0
- sdb_debugger-0.2.1/sdb_debugger.egg-info/top_level.txt +1 -0
- sdb_debugger-0.2.1/setup.cfg +4 -0
- sdb_debugger-0.2.1/tests/__init__.py +0 -0
- sdb_debugger-0.2.1/tests/integration/__init__.py +0 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr fget | deref +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr jiffies | deref +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr jiffies | deref | deref +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl zfs_dbgmsgs | print -d +78 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | deref +9 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | deref | addr +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | deref | print +9 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | member avl_root->avl_child[0]->avl_child +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | member avl_root->avl_child[1 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | member avl_root->avl_child[3] +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | member avl_root->avl_child[a] +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | member avl_root.avl_child[0].avl_child +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | member avl_root.avl_pcb avl_size +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | print +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | print --RAW +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | print -d +9 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | print -n +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | print -nr +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | print -r +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 0x1 0x2 | filter 'obj < 1' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 0x1 0x2 | filter 'obj <= 1' +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 0x1 0x2 | filter 'obj == 1' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 0x1 0x2 | filter 'obj > 1' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 0x1 0x2 | filter 'obj >= 1' +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | addr spa_namespace_avl | echo 0x1 | cast avl_tree_t * | member avl_root +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | cast int * | array 1 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | cast int * | deref +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | cast spa_t * | member spa_name +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | cast void * | array 1 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | filter 'obj == 0' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | filter 'obj == 1' +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x1 | filter 'obj == obj' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x10 | cast int * | deref +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x1234 | cast dmu_recv_cookie_t * | member drc_os +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0xffff90cc11b28000 | deref +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 1 | echo 2 | sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 1234 | cast int | array +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/filter 'obj == 1' +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/member no_object +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype $abc +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'a b c' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'bogus union' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'struct bogus' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'struct spa' +197 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'struct union' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'struct' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'union struct struct' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 2abc +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype @ +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype bogus_t +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype spa vdev +339 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype spa_t +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype struct spa +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype thread_union +6 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype zfs_case +7 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/sizeof bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/sizeof size_t +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/sizeof spa vdev +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/sizeof struct spa +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/sizeof task_struct +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.bogus == 1624' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.spa_syncing_txg < 1624' | member spa_name +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.spa_syncing_txg <= 1624' | member spa_name +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.spa_syncing_txg == 1624' | member spa_name +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.spa_syncing_txg > 1624' | member spa_name +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.spa_syncing_txg >= 1624' | member spa_name +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.spa_syncing_txg bogus_op 1624' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | deref | sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | deref | print --RAW -s +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | deref | print -rs +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | member spa_name[1] | print +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | member spa_name[1] | print -c +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | member spa_name[1] | print -cr +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | member spa_zio_taskq[0][0].stqs_taskq +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | member spa_zio_taskq[0][0].stqs_taskq[0] +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_ubsync->ub_rootbp +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_ubsync.bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_ubsync.ub_rootbp.blk_dva[0].dva_word +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_zio_taskq[0][0].stqs_taskq | array +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_zio_taskq[0][0].stqs_taskq | array 2 +8 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_zio_taskq[0][0].stqs_taskq-> +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_zio_taskq[0][0].stqs_taskq. +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | range_tree +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | vdev | metaslab | deref | sizeof | sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/thread | filter /"obj.comm == ///"bogus///"/" | thread" +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/threads | deref | sizeof | sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/threads | sizeof | sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | filter '== obj' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | filter 'obj ==' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | filter 'obj' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | head 1 | member zdm_msg | array +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | head 1 | member zdm_msg | array -1 +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | head 1 | member zdm_msg | array 0 +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | head 1 | member zdm_msg | array 2 +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | head 1 | member zdm_msg[2] +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member comm | addr | container_of bogus_type comm | cast void * +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member comm | addr | container_of int comm | cast void * +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member comm | addr | container_of pid comm | cast void * +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member comm | addr | container_of task_struct bogus_member | cast void * +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member comm | addr | container_of task_struct comm | cast void * +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member comm | container_of task_struct comm | cast void * +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member thread_pid.tasks[3] | lxhlist bogus_type pid_links[3] | member comm +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member thread_pid.tasks[3] | lxhlist task_struct bogus_member | member comm +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member thread_pid.tasks[3] | lxhlist task_struct pid_links[3] | member comm +364 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr modules | lxlist bogus_type list | member name +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr modules | lxlist module bogus_member | member name +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr modules | lxlist module list | member name +80 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr spa_namespace_avl | cpu_counter_sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr tcp_orphan_count | cpu_counter_sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr tcp_sockets_allocated | cpu_counter_sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr vm_committed_as | cpu_counter_sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr vmap_area_root | rbtree bogus_type rb_node +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr vmap_area_root | rbtree vmap_area bogus_member +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr vmap_area_root | rbtree vmap_area rb_node +1658 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/crashed_thread +21 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/crashed_thread | stacks +21 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/dbuf |head 1 |deref |member db_buf |whatis +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/dmesg +1267 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/dmesg -l 3 +9 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/echo 0x0 | cpu_counter_sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/echo 0xffffa089669edc00 | stack +18 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/find_task 1 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/find_task 1 2 +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/find_task 1 2 | member comm +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/find_task 1 | fget 1 4 +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/find_task 1 | fget 1 4 123123 +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/pid 1 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/pid 1 10 12437 +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs +211 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -o bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -s active_objs -o active_objs,util,name +211 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -s active_objs -o util +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -s bogus +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -s util +211 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -s util | slabs +211 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -v +211 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"UNIX/"' | slub_cache | count" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"dnode_t/"' |walk | head 6056 | tail 1| cast dnode_t * | deref |member dn_phys |member dn_blkptr[0] |blkptr" +8 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"dnode_t/"' |walk | tail 8 | head 1 | cast dnode_t * | deref |member dn_phys |member dn_blkptr[0] |blkptr" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu" +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 0" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 0 1" +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 0 2 1" +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 1" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 100" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 2" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 3" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"zio_cache/"' | slub_cache" +20 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"zio_cache/"' | slub_cache | cast zio_t * | member io_spa.spa_name" +20 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"zio_cache/"' | slub_cache | count" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"zio_cache/"' | walk" +20 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | head 2 | slabs +6 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | pp +211 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks +603 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -a +1127 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -c bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -c spa_sync +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -m bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -m bogus | count +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -m zfs +144 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -m zfs -c spa_sync +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -m zfs -c zthr_procedure +29 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -m zfs | count +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -t bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/thread +577 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/threads +577 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/threads | count +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/threads | filter 'obj.comm == /"java/"' | stack" +105 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/threads | filter 'obj.comm == /"java/"' | threads" +87 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/whatis 0xf987kkbbh +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/whatis 0xffff +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/whatis 0xffffa0888c766000 0xffffa089407ca870 +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/whatis 0xffffa089407ca870 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/addr arc_mru | member [0].arcs_list[1] | multilist | head +12 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/addr arc_mru | member [0].arcs_list[1] | walk | head +12 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/addr spa_namespace_avl | avl +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/addr spa_namespace_avl | walk +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spa | member spa_config_list | spl_list +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spa | member spa_config_list | walk +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spa | member spa_evicting_os_list | spl_list +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spa | member spa_evicting_os_list | walk +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spa | member spa_normal_class.mc_metaslab_txg_list | multilist +52 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spa | member spa_normal_class.mc_metaslab_txg_list | walk +52 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches +142 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches -o name,entry_size -s entry_size +142 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches -o name,source +142 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches -s entry_size +142 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches -s entry_size | head 4 | spl_kmem_caches +8 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches -v +142 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches | filter 'obj.skc_linux_cache == 0' | spl_cache +3566 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches | filter 'obj.skc_linux_cache == 0' | spl_cache | cnt +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches | filter 'obj.skc_linux_cache > 0' | filter 'obj.skc_obj_alloc > 0' | head 1 | spl_cache +37 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches | filter 'obj.skc_name == /"ddt_cache/"' | walk" +48 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches | pp +142 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/arc +100 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/dbuf +4037 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/dbuf -l 1 +277 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/dbuf | dbuf -l 1 +277 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/dbuf | dbuf -l 1 | head | dbuf +13 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/dbuf | head 1 | member db_blkptr | blkptr +6 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa +7 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa -H +52 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa -mH +849 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa -v +28 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa -vH +119 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa -vm +216 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa -vmH +849 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa data | member spa_normal_class.mc_histogram | zfs_histogram +25 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa data | vdev | metaslab | filter 'obj.ms_loaded == 1' | head 1 | member ms_allocatable.rt_histogram | zhist +24 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa data | vdev | metaslab | filter 'obj.ms_loaded == 1' | head 1 | member ms_sm.sm_phys.smp_histogram | zhist +25 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa data | vdev | metaslab | filter 'obj.ms_loaded == 1' | head 1 | member ms_sm.sm_phys.smp_histogram | zhist 9 +25 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa rpool +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | head 1 | deref |member spa_uberblock | member ub_rootbp | blkptr +8 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | head 1 | spa +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | pp +7 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | vdev +19 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | vdev | metaslab +184 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | vdev | metaslab -w +184 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | vdev | metaslab | member ms_allocatable | range_tree +2880 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | vdev | metaslab | member ms_allocatable.rt_root | zfs_btree +2700 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | vdev | pp +19 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/zfs_dbgmsg +101 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/zfs_dbgmsg | tail 5 | zfs_dbgmsg +7 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/zio +21 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/zio -r +21 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr fget | deref +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr jiffies | deref +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr jiffies | deref | deref +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl zfs_dbgmsgs | print -d +77 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | deref +8 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | deref | addr +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | deref | print +8 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | member avl_root->avl_child[0]->avl_child +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | member avl_root->avl_child[1 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | member avl_root->avl_child[3] +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | member avl_root->avl_child[a] +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | member avl_root.avl_child[0].avl_child +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | member avl_root.avl_pcb avl_size +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | print +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | print --RAW +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | print -d +8 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | print -n +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | print -nr +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | print -r +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 0x1 0x2 | filter 'obj < 1' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 0x1 0x2 | filter 'obj <= 1' +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 0x1 0x2 | filter 'obj == 1' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 0x1 0x2 | filter 'obj > 1' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 0x1 0x2 | filter 'obj >= 1' +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | addr spa_namespace_avl | echo 0x1 | cast avl_tree_t * | member avl_root +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | cast int * | array 1 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | cast int * | deref +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | cast spa_t * | member spa_name +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | cast void * | array 1 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | filter 'obj == 0' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | filter 'obj == 1' +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x1 | filter 'obj == obj' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x10 | cast int * | deref +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x1234 | cast dmu_recv_cookie_t * | member drc_os +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0xffff90cc11b28000 | deref +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 1 | echo 2 | sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 1234 | cast int | array +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/filter 'obj == 1' +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/member no_object +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype $abc +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'a b c' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'bogus union' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'struct bogus' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'struct spa' +204 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'struct union' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'struct' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'union struct struct' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 2abc +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype @ +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype bogus_t +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype spa vdev +367 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype spa_t +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype struct spa +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype thread_union +6 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype zfs_case +7 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/sizeof bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/sizeof size_t +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/sizeof spa vdev +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/sizeof struct spa +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/sizeof task_struct +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.bogus == 1624' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.spa_syncing_txg < 1624' | member spa_name +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.spa_syncing_txg <= 1624' | member spa_name +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.spa_syncing_txg == 1624' | member spa_name +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.spa_syncing_txg > 1624' | member spa_name +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.spa_syncing_txg >= 1624' | member spa_name +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.spa_syncing_txg bogus_op 1624' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | deref | sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | deref | print --RAW -s +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | deref | print -rs +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | member spa_name[1] | print +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | member spa_name[1] | print -c +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | member spa_name[1] | print -cr +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | member spa_zio_taskq[0][0].stqs_taskq +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | member spa_zio_taskq[0][0].stqs_taskq[0] +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_ubsync->ub_rootbp +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_ubsync.bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_ubsync.ub_rootbp.blk_dva[0].dva_word +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_zio_taskq[0][0].stqs_taskq | array +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_zio_taskq[0][0].stqs_taskq | array 2 +8 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_zio_taskq[0][0].stqs_taskq-> +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_zio_taskq[0][0].stqs_taskq. +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | range_tree +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | vdev | metaslab | deref | sizeof | sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/thread | filter /"obj.comm == ///"bogus///"/" | thread" +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/threads | deref | sizeof | sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/threads | sizeof | sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | filter '== obj' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | filter 'obj ==' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | filter 'obj' +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | head 1 | member zdm_msg | array +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | head 1 | member zdm_msg | array -1 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | head 1 | member zdm_msg | array 0 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | head 1 | member zdm_msg | array 2 +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | head 1 | member zdm_msg[2] +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member comm | addr | container_of bogus_type comm | cast void * +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member comm | addr | container_of int comm | cast void * +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member comm | addr | container_of pid comm | cast void * +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member comm | addr | container_of task_struct bogus_member | cast void * +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member comm | addr | container_of task_struct comm | cast void * +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member comm | container_of task_struct comm | cast void * +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member thread_pid.tasks[3] | lxhlist bogus_type pid_links[3] | member comm +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member thread_pid.tasks[3] | lxhlist task_struct bogus_member | member comm +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member thread_pid.tasks[3] | lxhlist task_struct pid_links[3] | member comm +712 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr modules | lxlist bogus_type list | member name +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr modules | lxlist module bogus_member | member name +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr modules | lxlist module list | member name +69 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr spa_namespace_avl | cpu_counter_sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr tcp_orphan_count | cpu_counter_sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr tcp_sockets_allocated | cpu_counter_sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr vm_committed_as | cpu_counter_sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr vmap_area_root | rbtree bogus_type rb_node +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr vmap_area_root | rbtree vmap_area bogus_member +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr vmap_area_root | rbtree vmap_area rb_node +2792 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/crashed_thread +22 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/crashed_thread | stacks +22 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/dbuf |head 1 |deref |member db_buf |whatis +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/dmesg +613 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/dmesg -l 3 +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/echo 0x0 | cpu_counter_sum +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/echo 0xffffa089669edc00 | stack +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/find_task 1 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/find_task 1 2 +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/find_task 1 2 | member comm +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/find_task 1 | fget 1 4 +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/find_task 1 | fget 1 4 123123 +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/pid 1 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/pid 1 10 12437 +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs +180 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -o bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -s active_objs -o active_objs,util,name +180 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -s active_objs -o util +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -s bogus +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -s util +180 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -s util | slabs +180 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -v +180 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"UNIX/"' | slub_cache | count" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"dnode_t/"' |walk | head 6056 | tail 1| cast dnode_t * | deref |member dn_phys |member dn_blkptr[0] |blkptr" +6 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"dnode_t/"' |walk | tail 8 | head 1 | cast dnode_t * | deref |member dn_phys |member dn_blkptr[0] |blkptr" +6 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu" +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 0" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 0 1" +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 0 2 1" +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 1" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 100" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 2" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 3" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"zio_cache/"' | slub_cache" +1609 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"zio_cache/"' | slub_cache | cast zio_t * | member io_spa.spa_name" +1609 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"zio_cache/"' | slub_cache | count" +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"zio_cache/"' | walk" +1609 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | head 2 | slabs +6 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | pp +180 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks +902 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -a +1965 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -c bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -c spa_sync +21 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -m bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -m bogus | count +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -m zfs +309 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -m zfs -c spa_sync +21 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -m zfs -c zthr_procedure +41 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -m zfs | count +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -t bogus +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/thread +1135 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/threads +1135 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/threads | count +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/threads | filter 'obj.comm == /"java/"' | stack" +18 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/threads | filter 'obj.comm == /"java/"' | threads" +8 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/whatis 0xf987kkbbh +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/whatis 0xffff +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/whatis 0xffffa0888c766000 0xffffa089407ca870 +4 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/whatis 0xffffa089407ca870 +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/addr arc_mru | member [0].arcs_list[1] | multilist | head +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/addr arc_mru | member [0].arcs_list[1] | walk | head +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/addr spa_namespace_avl | avl +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/addr spa_namespace_avl | walk +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spa | member spa_config_list | spl_list +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spa | member spa_config_list | walk +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spa | member spa_evicting_os_list | spl_list +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spa | member spa_evicting_os_list | walk +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spa | member spa_normal_class.mc_metaslab_txg_list | multilist +50 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spa | member spa_normal_class.mc_metaslab_txg_list | walk +50 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches +85 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches -o name,entry_size -s entry_size +85 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches -o name,source +85 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches -s entry_size +85 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches -s entry_size | head 4 | spl_kmem_caches +8 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches -v +85 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches | filter 'obj.skc_linux_cache == 0' | spl_cache +6551 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches | filter 'obj.skc_linux_cache == 0' | spl_cache | cnt +3 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches | filter 'obj.skc_linux_cache > 0' | filter 'obj.skc_obj_alloc > 0' | head 1 | spl_cache +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches | filter 'obj.skc_name == /"ddt_cache/"' | walk" +50 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches | pp +85 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/arc +138 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/dbuf +8473 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/dbuf -l 1 +246 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/dbuf | dbuf -l 1 +246 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/dbuf | dbuf -l 1 | head | dbuf +13 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/dbuf | head 1 | member db_blkptr | blkptr +6 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa +7 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa -H +32 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa -mH +934 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa -v +20 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa -vH +93 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa -vm +198 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa -vmH +934 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa data | member spa_normal_class.mc_histogram | zfs_histogram +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa data | vdev | metaslab | filter 'obj.ms_loaded == 1' | head 1 | member ms_allocatable.rt_histogram | zhist +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa data | vdev | metaslab | filter 'obj.ms_loaded == 1' | head 1 | member ms_sm.sm_phys.smp_histogram | zhist +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa data | vdev | metaslab | filter 'obj.ms_loaded == 1' | head 1 | member ms_sm.sm_phys.smp_histogram | zhist 9 +2 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa rpool +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | head 1 | deref |member spa_uberblock | member ub_rootbp | blkptr +6 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | head 1 | spa +5 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | pp +7 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | vdev +11 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | vdev | metaslab +174 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | vdev | metaslab -w +174 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | vdev | metaslab | member ms_allocatable | range_tree +2468 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | vdev | metaslab | member ms_allocatable.rt_root | zfs_btree +2298 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | vdev | pp +11 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/zfs_dbgmsg +1506 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/zfs_dbgmsg | tail 5 | zfs_dbgmsg +7 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/zio +33 -0
- sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/zio -r +1682 -0
- sdb_debugger-0.2.1/tests/integration/gen_regression_output.py +40 -0
- sdb_debugger-0.2.1/tests/integration/infra.py +401 -0
- sdb_debugger-0.2.1/tests/integration/test_core_generic.py +228 -0
- sdb_debugger-0.2.1/tests/integration/test_linux_generic.py +189 -0
- sdb_debugger-0.2.1/tests/integration/test_spl_generic.py +76 -0
- sdb_debugger-0.2.1/tests/integration/test_zfs_generic.py +82 -0
- sdb_debugger-0.2.1/tests/unit/__init__.py +216 -0
- sdb_debugger-0.2.1/tests/unit/commands/__init__.py +0 -0
- sdb_debugger-0.2.1/tests/unit/commands/test_address.py +99 -0
- sdb_debugger-0.2.1/tests/unit/commands/test_cast.py +105 -0
- sdb_debugger-0.2.1/tests/unit/commands/test_count.py +72 -0
- sdb_debugger-0.2.1/tests/unit/commands/test_echo.py +162 -0
- sdb_debugger-0.2.1/tests/unit/commands/test_filter.py +114 -0
- sdb_debugger-0.2.1/tests/unit/commands/test_member.py +92 -0
- sdb_debugger-0.2.1/tests/unit/test_parser.py +146 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/bin/bash -eux
|
|
2
|
+
|
|
3
|
+
#
|
|
4
|
+
# Download all the reference core dumps from the public gDrive folder
|
|
5
|
+
# and place them in the root directory.
|
|
6
|
+
#
|
|
7
|
+
python3 -m pip install gdown
|
|
8
|
+
gdown --folder 1fdPVuGXbxNKcMEVwhuda04hZTPCcYJms
|
|
9
|
+
mv SDB-Public/* .
|
|
10
|
+
rmdir SDB-Public
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
#!/bin/bash -eu
|
|
2
|
+
|
|
3
|
+
#
|
|
4
|
+
# Assumptions for this to work:
|
|
5
|
+
# [1] This script is executed from the root of the SDB repo
|
|
6
|
+
# [2] The archive downloaded from gdrive has one of the following profiles:
|
|
7
|
+
# Profile A - It is lzma-compressed and has the following file structure:
|
|
8
|
+
# dump-data
|
|
9
|
+
# ├── dump.201912060006
|
|
10
|
+
# ├── mods
|
|
11
|
+
# │ ├── avl
|
|
12
|
+
# │ │ └── zavl.ko
|
|
13
|
+
# .....
|
|
14
|
+
# │ └── zfs
|
|
15
|
+
# │ └── zfs.ko
|
|
16
|
+
# └── vmlinux-5.0.0-36-generic
|
|
17
|
+
# Profile B - It is gzip-compressed and generated by the savedump utility.
|
|
18
|
+
#
|
|
19
|
+
# Note: Profile A is deprecated. It was format used for dump archives created
|
|
20
|
+
# manually.
|
|
21
|
+
#
|
|
22
|
+
|
|
23
|
+
DATA_DIR="tests/integration/data"
|
|
24
|
+
|
|
25
|
+
if [ $# -eq 0 ]; then
|
|
26
|
+
echo "error: no crash dump archive argument supplied"
|
|
27
|
+
exit 1
|
|
28
|
+
fi
|
|
29
|
+
|
|
30
|
+
echo "checking folder structure ..."
|
|
31
|
+
if [ ! -d $DATA_DIR ]; then
|
|
32
|
+
echo "error: please cd to the root of the git repo"
|
|
33
|
+
exit 1
|
|
34
|
+
fi
|
|
35
|
+
|
|
36
|
+
if [ ! -f "$1" ]; then
|
|
37
|
+
echo "error: $1: file not found"
|
|
38
|
+
fi
|
|
39
|
+
|
|
40
|
+
if [[ $1 == *.tar.lzma ]]; then
|
|
41
|
+
# Profile A
|
|
42
|
+
dump_name=${1%.tar.lzma}
|
|
43
|
+
|
|
44
|
+
echo "decompressing dump ..."
|
|
45
|
+
tar -x --lzma -f $1
|
|
46
|
+
|
|
47
|
+
echo "moving contents to tests/integration/data/dumps/${dump_name} ..."
|
|
48
|
+
mkdir -p $DATA_DIR/dumps/${dump_name}
|
|
49
|
+
mv dump-data/* $DATA_DIR/dumps/${dump_name}
|
|
50
|
+
[ $? -eq 0 ] || exit 1
|
|
51
|
+
|
|
52
|
+
rmdir dump-data
|
|
53
|
+
[ $? -eq 0 ] || exit 1
|
|
54
|
+
elif [[ $1 == *.tar.gz ]]; then
|
|
55
|
+
# Profile B
|
|
56
|
+
dump_name=${1%.tar.gz}
|
|
57
|
+
|
|
58
|
+
echo "decompressing dump ..."
|
|
59
|
+
tar xzf $1
|
|
60
|
+
|
|
61
|
+
echo "moving contents to tests/integration/data/dumps/${dump_name} ..."
|
|
62
|
+
mkdir -p $DATA_DIR/dumps/${dump_name}
|
|
63
|
+
mv *${dump_name}/* $DATA_DIR/dumps/${dump_name}
|
|
64
|
+
[ $? -eq 0 ] || exit 1
|
|
65
|
+
|
|
66
|
+
rmdir *${dump_name}
|
|
67
|
+
[ $? -eq 0 ] || exit 1
|
|
68
|
+
else
|
|
69
|
+
echo "unknown dump profile"
|
|
70
|
+
exit 1
|
|
71
|
+
fi
|
|
72
|
+
|
|
73
|
+
echo "Done"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/bin/bash -eux
|
|
2
|
+
|
|
3
|
+
#
|
|
4
|
+
# These are build requirements of "drgn"; if we don't install these, the
|
|
5
|
+
# build/install of "drgn" will fail below.
|
|
6
|
+
#
|
|
7
|
+
sudo apt update
|
|
8
|
+
sudo apt install bison flex libelf-dev libdw-dev libomp5 libomp-dev
|
|
9
|
+
|
|
10
|
+
# Install setuptools for Python 3.12+ compatibility
|
|
11
|
+
python3 -m pip install --upgrade pip setuptools wheel
|
|
12
|
+
|
|
13
|
+
git clone https://github.com/osandov/drgn.git
|
|
14
|
+
|
|
15
|
+
cd drgn
|
|
16
|
+
python3 -m pip install .
|
|
17
|
+
cd -
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#!/bin/bash -eux
|
|
2
|
+
|
|
3
|
+
#
|
|
4
|
+
# These are build requirements of "libkdumpfile"; if we don't install these,
|
|
5
|
+
# the build/install of "libkdumpfile" will fail below. We install python3-dev
|
|
6
|
+
# which will work with whatever Python version is set up by actions/setup-python.
|
|
7
|
+
#
|
|
8
|
+
sudo apt update
|
|
9
|
+
sudo apt install autoconf automake liblzo2-dev libsnappy-dev libtool pkg-config zlib1g-dev binutils-dev python3-dev
|
|
10
|
+
|
|
11
|
+
git clone https://codeberg.org/ptesarik/libkdumpfile.git
|
|
12
|
+
|
|
13
|
+
cd libkdumpfile
|
|
14
|
+
autoreconf -fi
|
|
15
|
+
./configure --with-python=$(which python3)
|
|
16
|
+
make
|
|
17
|
+
sudo make install
|
|
18
|
+
cd -
|
|
19
|
+
|
|
20
|
+
#
|
|
21
|
+
# Debug statements
|
|
22
|
+
#
|
|
23
|
+
echo $(which python3)
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
on:
|
|
2
|
+
push:
|
|
3
|
+
branches:
|
|
4
|
+
- '**'
|
|
5
|
+
tags-ignore:
|
|
6
|
+
- 'v*' # Release workflow handles version tags
|
|
7
|
+
pull_request:
|
|
8
|
+
schedule:
|
|
9
|
+
- cron: '0 0 * * *'
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
#
|
|
13
|
+
# Verify the build and installation of SDB.
|
|
14
|
+
#
|
|
15
|
+
install:
|
|
16
|
+
runs-on: ubuntu-24.04
|
|
17
|
+
strategy:
|
|
18
|
+
matrix:
|
|
19
|
+
python-version: ['3.10', '3.12']
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@v4
|
|
22
|
+
- uses: actions/setup-python@v5
|
|
23
|
+
with:
|
|
24
|
+
python-version: ${{ matrix.python-version }}
|
|
25
|
+
- run: python3 -m pip install --upgrade pip setuptools wheel
|
|
26
|
+
- run: python3 -m pip install .
|
|
27
|
+
#
|
|
28
|
+
# The statement below is used for debugging the Github job.
|
|
29
|
+
#
|
|
30
|
+
- run: python3 --version
|
|
31
|
+
#
|
|
32
|
+
# Verify "pylint" runs successfully.
|
|
33
|
+
#
|
|
34
|
+
# Note, we need to have "drgn" installed in order to run "pylint".
|
|
35
|
+
# Thus, prior to running "pylint" we have to clone, build, and install
|
|
36
|
+
# the "drgn" from source (there's no package currently available).
|
|
37
|
+
#
|
|
38
|
+
pylint:
|
|
39
|
+
runs-on: ubuntu-24.04
|
|
40
|
+
steps:
|
|
41
|
+
- uses: actions/checkout@v4
|
|
42
|
+
- uses: actions/setup-python@v5
|
|
43
|
+
with:
|
|
44
|
+
python-version: '3.10'
|
|
45
|
+
- run: ./.github/scripts/install-drgn.sh
|
|
46
|
+
- run: python3 -m pip install pylint pytest
|
|
47
|
+
- run: pylint -d duplicate-code -d invalid-name sdb
|
|
48
|
+
- run: pylint -d duplicate-code -d invalid-name tests
|
|
49
|
+
#
|
|
50
|
+
# Verify "pytest" runs successfully on unit tests.
|
|
51
|
+
#
|
|
52
|
+
# Note, we need to have "drgn" installed in order to run "pytest". Thus,
|
|
53
|
+
# prior to running "pytest" we have to clone, build, and install the
|
|
54
|
+
# "drgn" from source (there's no package currently available).
|
|
55
|
+
#
|
|
56
|
+
pytest-unit:
|
|
57
|
+
runs-on: ubuntu-24.04
|
|
58
|
+
strategy:
|
|
59
|
+
matrix:
|
|
60
|
+
python-version: ['3.10', '3.12']
|
|
61
|
+
steps:
|
|
62
|
+
- uses: actions/checkout@v4
|
|
63
|
+
- uses: actions/setup-python@v5
|
|
64
|
+
with:
|
|
65
|
+
python-version: ${{ matrix.python-version }}
|
|
66
|
+
- run: python3 -m pip install pytest pytest-cov
|
|
67
|
+
- run: ./.github/scripts/install-drgn.sh
|
|
68
|
+
- run: pytest -v --cov sdb --cov-report xml tests/unit
|
|
69
|
+
- uses: codecov/codecov-action@v4
|
|
70
|
+
with:
|
|
71
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
72
|
+
#
|
|
73
|
+
# Verify "pytest" runs successfully on integration tests with crash dumps.
|
|
74
|
+
#
|
|
75
|
+
# Note, we need to have "drgn" and "libkdumpfile" installed to run pytest
|
|
76
|
+
# with crash dumps. We download both reference dumps for full integration testing.
|
|
77
|
+
#
|
|
78
|
+
pytest-integration:
|
|
79
|
+
runs-on: ubuntu-24.04
|
|
80
|
+
strategy:
|
|
81
|
+
matrix:
|
|
82
|
+
python-version: ['3.10', '3.12']
|
|
83
|
+
env:
|
|
84
|
+
AWS_DEFAULT_REGION: 'us-west-2'
|
|
85
|
+
steps:
|
|
86
|
+
- uses: actions/checkout@v4
|
|
87
|
+
- uses: actions/setup-python@v5
|
|
88
|
+
with:
|
|
89
|
+
python-version: ${{ matrix.python-version }}
|
|
90
|
+
- run: python3 -m pip install pytest pytest-cov
|
|
91
|
+
- run: ./.github/scripts/install-libkdumpfile.sh
|
|
92
|
+
- run: ./.github/scripts/install-drgn.sh
|
|
93
|
+
- run: ./.github/scripts/download-dumps-from-gdrive.sh
|
|
94
|
+
- run: ./.github/scripts/extract-dump.sh dump.201912060006.tar.lzma
|
|
95
|
+
- run: ./.github/scripts/extract-dump.sh dump.202303131823.tar.gz
|
|
96
|
+
- run: pytest -v --cov sdb --cov-report xml tests/integration
|
|
97
|
+
- uses: codecov/codecov-action@v4
|
|
98
|
+
with:
|
|
99
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
100
|
+
#
|
|
101
|
+
# Verify "yapf" runs successfully.
|
|
102
|
+
#
|
|
103
|
+
yapf:
|
|
104
|
+
runs-on: ubuntu-24.04
|
|
105
|
+
steps:
|
|
106
|
+
- uses: actions/checkout@v4
|
|
107
|
+
- uses: actions/setup-python@v5
|
|
108
|
+
with:
|
|
109
|
+
python-version: '3.10'
|
|
110
|
+
- run: python3 -m pip install yapf
|
|
111
|
+
- run: yapf --diff --style google --recursive sdb
|
|
112
|
+
- run: yapf --diff --style google --recursive tests
|
|
113
|
+
#
|
|
114
|
+
# Verify "ruff" runs successfully.
|
|
115
|
+
#
|
|
116
|
+
ruff:
|
|
117
|
+
runs-on: ubuntu-24.04
|
|
118
|
+
steps:
|
|
119
|
+
- uses: actions/checkout@v4
|
|
120
|
+
- uses: actions/setup-python@v5
|
|
121
|
+
with:
|
|
122
|
+
python-version: '3.10'
|
|
123
|
+
- run: python3 -m pip install ruff
|
|
124
|
+
- run: ruff check sdb tests
|
|
125
|
+
#
|
|
126
|
+
# Verify "mypy" runs successfully.
|
|
127
|
+
#
|
|
128
|
+
# Note, we need to have "drgn" installed in order to run "mypy".
|
|
129
|
+
# Thus, prior to running "mypy" we have to clone, build, and install
|
|
130
|
+
# the "drgn" from source (there's no package currently available).
|
|
131
|
+
#
|
|
132
|
+
# Also note that we supply --ignore-missing-imports to the tests package
|
|
133
|
+
# because pytest doesn't provide stubs on typeshed.
|
|
134
|
+
#
|
|
135
|
+
mypy:
|
|
136
|
+
runs-on: ubuntu-24.04
|
|
137
|
+
steps:
|
|
138
|
+
- uses: actions/checkout@v4
|
|
139
|
+
- uses: actions/setup-python@v5
|
|
140
|
+
with:
|
|
141
|
+
python-version: '3.10'
|
|
142
|
+
- run: ./.github/scripts/install-drgn.sh
|
|
143
|
+
- run: python3 -m pip install mypy pytest
|
|
144
|
+
- run: python3 -m mypy --strict --show-error-codes -p sdb
|
|
145
|
+
- run: python3 -m mypy --strict --ignore-missing-imports --show-error-codes -p tests
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Release workflow - triggered on version tag push (e.g., v0.2.0)
|
|
3
|
+
#
|
|
4
|
+
# This workflow:
|
|
5
|
+
# 1. Runs all CI checks (lint, type-check, tests)
|
|
6
|
+
# 2. Builds the package (sdist + wheel)
|
|
7
|
+
# 3. Publishes to PyPI using Trusted Publishing (OIDC)
|
|
8
|
+
# 4. Creates a GitHub Release with auto-generated notes
|
|
9
|
+
#
|
|
10
|
+
name: Release
|
|
11
|
+
|
|
12
|
+
on:
|
|
13
|
+
push:
|
|
14
|
+
tags:
|
|
15
|
+
- 'v*'
|
|
16
|
+
|
|
17
|
+
# Required for PyPI Trusted Publishing (OIDC)
|
|
18
|
+
permissions:
|
|
19
|
+
contents: write # For creating GitHub releases
|
|
20
|
+
id-token: write # For PyPI OIDC authentication
|
|
21
|
+
|
|
22
|
+
jobs:
|
|
23
|
+
#
|
|
24
|
+
# Run all CI checks before releasing
|
|
25
|
+
#
|
|
26
|
+
lint:
|
|
27
|
+
runs-on: ubuntu-24.04
|
|
28
|
+
steps:
|
|
29
|
+
- uses: actions/checkout@v4
|
|
30
|
+
- uses: actions/setup-python@v5
|
|
31
|
+
with:
|
|
32
|
+
python-version: '3.10'
|
|
33
|
+
- run: ./.github/scripts/install-drgn.sh
|
|
34
|
+
- run: python3 -m pip install pylint pytest ruff yapf
|
|
35
|
+
- run: pylint -d duplicate-code -d invalid-name sdb
|
|
36
|
+
- run: pylint -d duplicate-code -d invalid-name tests
|
|
37
|
+
- run: ruff check sdb tests
|
|
38
|
+
- run: yapf --diff --style google --recursive sdb
|
|
39
|
+
- run: yapf --diff --style google --recursive tests
|
|
40
|
+
|
|
41
|
+
type-check:
|
|
42
|
+
runs-on: ubuntu-24.04
|
|
43
|
+
steps:
|
|
44
|
+
- uses: actions/checkout@v4
|
|
45
|
+
- uses: actions/setup-python@v5
|
|
46
|
+
with:
|
|
47
|
+
python-version: '3.10'
|
|
48
|
+
- run: ./.github/scripts/install-drgn.sh
|
|
49
|
+
- run: python3 -m pip install mypy pytest
|
|
50
|
+
- run: python3 -m mypy --strict --show-error-codes -p sdb
|
|
51
|
+
- run: python3 -m mypy --strict --ignore-missing-imports --show-error-codes -p tests
|
|
52
|
+
|
|
53
|
+
test-unit:
|
|
54
|
+
runs-on: ubuntu-24.04
|
|
55
|
+
strategy:
|
|
56
|
+
matrix:
|
|
57
|
+
python-version: ['3.10', '3.12']
|
|
58
|
+
steps:
|
|
59
|
+
- uses: actions/checkout@v4
|
|
60
|
+
- uses: actions/setup-python@v5
|
|
61
|
+
with:
|
|
62
|
+
python-version: ${{ matrix.python-version }}
|
|
63
|
+
- run: python3 -m pip install pytest pytest-cov
|
|
64
|
+
- run: ./.github/scripts/install-drgn.sh
|
|
65
|
+
- run: pytest -v --cov sdb --cov-report xml tests/unit
|
|
66
|
+
|
|
67
|
+
test-integration:
|
|
68
|
+
runs-on: ubuntu-24.04
|
|
69
|
+
strategy:
|
|
70
|
+
matrix:
|
|
71
|
+
python-version: ['3.10', '3.12']
|
|
72
|
+
env:
|
|
73
|
+
AWS_DEFAULT_REGION: 'us-west-2'
|
|
74
|
+
steps:
|
|
75
|
+
- uses: actions/checkout@v4
|
|
76
|
+
- uses: actions/setup-python@v5
|
|
77
|
+
with:
|
|
78
|
+
python-version: ${{ matrix.python-version }}
|
|
79
|
+
- run: python3 -m pip install pytest pytest-cov
|
|
80
|
+
- run: ./.github/scripts/install-libkdumpfile.sh
|
|
81
|
+
- run: ./.github/scripts/install-drgn.sh
|
|
82
|
+
- run: ./.github/scripts/download-dumps-from-gdrive.sh
|
|
83
|
+
- run: ./.github/scripts/extract-dump.sh dump.201912060006.tar.lzma
|
|
84
|
+
- run: ./.github/scripts/extract-dump.sh dump.202303131823.tar.gz
|
|
85
|
+
- run: pytest -v --cov sdb --cov-report xml tests/integration
|
|
86
|
+
|
|
87
|
+
#
|
|
88
|
+
# Build the package
|
|
89
|
+
#
|
|
90
|
+
build:
|
|
91
|
+
needs: [lint, type-check, test-unit, test-integration]
|
|
92
|
+
runs-on: ubuntu-24.04
|
|
93
|
+
steps:
|
|
94
|
+
- uses: actions/checkout@v4
|
|
95
|
+
with:
|
|
96
|
+
fetch-depth: 0 # Required for setuptools_scm to get version from tags
|
|
97
|
+
- uses: actions/setup-python@v5
|
|
98
|
+
with:
|
|
99
|
+
python-version: '3.10'
|
|
100
|
+
- name: Install build dependencies
|
|
101
|
+
run: python3 -m pip install build
|
|
102
|
+
- name: Build package
|
|
103
|
+
run: python3 -m build
|
|
104
|
+
- name: Upload build artifacts
|
|
105
|
+
uses: actions/upload-artifact@v4
|
|
106
|
+
with:
|
|
107
|
+
name: dist
|
|
108
|
+
path: dist/
|
|
109
|
+
|
|
110
|
+
#
|
|
111
|
+
# Publish to PyPI using Trusted Publishing (OIDC)
|
|
112
|
+
#
|
|
113
|
+
publish-pypi:
|
|
114
|
+
needs: build
|
|
115
|
+
runs-on: ubuntu-24.04
|
|
116
|
+
environment:
|
|
117
|
+
name: pypi
|
|
118
|
+
url: https://pypi.org/project/sdb-debugger/
|
|
119
|
+
steps:
|
|
120
|
+
- name: Download build artifacts
|
|
121
|
+
uses: actions/download-artifact@v4
|
|
122
|
+
with:
|
|
123
|
+
name: dist
|
|
124
|
+
path: dist/
|
|
125
|
+
- name: Publish to PyPI
|
|
126
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
127
|
+
|
|
128
|
+
#
|
|
129
|
+
# Create GitHub Release with auto-generated notes
|
|
130
|
+
#
|
|
131
|
+
github-release:
|
|
132
|
+
needs: publish-pypi
|
|
133
|
+
runs-on: ubuntu-24.04
|
|
134
|
+
steps:
|
|
135
|
+
- uses: actions/checkout@v4
|
|
136
|
+
with:
|
|
137
|
+
fetch-depth: 0 # Required for generating release notes
|
|
138
|
+
- name: Download build artifacts
|
|
139
|
+
uses: actions/download-artifact@v4
|
|
140
|
+
with:
|
|
141
|
+
name: dist
|
|
142
|
+
path: dist/
|
|
143
|
+
- name: Get version from tag
|
|
144
|
+
id: version
|
|
145
|
+
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
|
|
146
|
+
- name: Create GitHub Release
|
|
147
|
+
uses: softprops/action-gh-release@v2
|
|
148
|
+
with:
|
|
149
|
+
name: SDB ${{ steps.version.outputs.VERSION }}
|
|
150
|
+
generate_release_notes: true
|
|
151
|
+
files: |
|
|
152
|
+
dist/*
|
|
153
|
+
env:
|
|
154
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
*.egg-info/
|
|
24
|
+
.installed.cfg
|
|
25
|
+
*.egg
|
|
26
|
+
MANIFEST
|
|
27
|
+
|
|
28
|
+
# PyInstaller
|
|
29
|
+
# Usually these files are written by a python script from a template
|
|
30
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
31
|
+
*.manifest
|
|
32
|
+
*.spec
|
|
33
|
+
|
|
34
|
+
# Installer logs
|
|
35
|
+
pip-log.txt
|
|
36
|
+
pip-delete-this-directory.txt
|
|
37
|
+
|
|
38
|
+
# Unit test / coverage reports
|
|
39
|
+
htmlcov/
|
|
40
|
+
.tox/
|
|
41
|
+
.coverage
|
|
42
|
+
.coverage.*
|
|
43
|
+
.cache
|
|
44
|
+
nosetests.xml
|
|
45
|
+
coverage.xml
|
|
46
|
+
*.cover
|
|
47
|
+
.hypothesis/
|
|
48
|
+
.pytest_cache/
|
|
49
|
+
|
|
50
|
+
# Translations
|
|
51
|
+
*.mo
|
|
52
|
+
*.pot
|
|
53
|
+
|
|
54
|
+
# Django stuff:
|
|
55
|
+
*.log
|
|
56
|
+
local_settings.py
|
|
57
|
+
db.sqlite3
|
|
58
|
+
|
|
59
|
+
# Flask stuff:
|
|
60
|
+
instance/
|
|
61
|
+
.webassets-cache
|
|
62
|
+
|
|
63
|
+
# Scrapy stuff:
|
|
64
|
+
.scrapy
|
|
65
|
+
|
|
66
|
+
# Sphinx documentation
|
|
67
|
+
docs/_build/
|
|
68
|
+
|
|
69
|
+
# PyBuilder
|
|
70
|
+
target/
|
|
71
|
+
|
|
72
|
+
# Jupyter Notebook
|
|
73
|
+
.ipynb_checkpoints
|
|
74
|
+
|
|
75
|
+
# pyenv
|
|
76
|
+
.python-version
|
|
77
|
+
|
|
78
|
+
# celery beat schedule file
|
|
79
|
+
celerybeat-schedule
|
|
80
|
+
|
|
81
|
+
# SageMath parsed files
|
|
82
|
+
*.sage.py
|
|
83
|
+
|
|
84
|
+
# Environments
|
|
85
|
+
.env
|
|
86
|
+
.venv
|
|
87
|
+
env/
|
|
88
|
+
venv/
|
|
89
|
+
ENV/
|
|
90
|
+
env.bak/
|
|
91
|
+
venv.bak/
|
|
92
|
+
|
|
93
|
+
# Spyder project settings
|
|
94
|
+
.spyderproject
|
|
95
|
+
.spyproject
|
|
96
|
+
|
|
97
|
+
# Rope project settings
|
|
98
|
+
.ropeproject
|
|
99
|
+
|
|
100
|
+
# mkdocs documentation
|
|
101
|
+
/site
|
|
102
|
+
|
|
103
|
+
# mypy
|
|
104
|
+
.mypy_cache/
|
|
105
|
+
|
|
106
|
+
# crash-dump related files
|
|
107
|
+
tests/integration/data/dump.*
|
|
108
|
+
tests/integration/data/vmlinux-*
|
|
109
|
+
tests/integration/data/mods/
|
|
110
|
+
|
|
111
|
+
# vim
|
|
112
|
+
*.swp
|
|
113
|
+
|
|
114
|
+
# zipped folders - usually crash dumps
|
|
115
|
+
*.lzma
|
|
116
|
+
*.tar.gz
|
|
117
|
+
|
|
118
|
+
# crash dump directory
|
|
119
|
+
tests/integration/data/dumps/
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity
|
|
10
|
+
and orientation.
|
|
11
|
+
|
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
+
diverse, inclusive, and healthy community.
|
|
14
|
+
|
|
15
|
+
## Our Standards
|
|
16
|
+
|
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
|
18
|
+
community include:
|
|
19
|
+
|
|
20
|
+
* Demonstrating empathy and kindness toward other people
|
|
21
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
|
22
|
+
* Giving and gracefully accepting constructive feedback
|
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
24
|
+
and learning from the experience
|
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the
|
|
26
|
+
overall community
|
|
27
|
+
|
|
28
|
+
Examples of unacceptable behavior include:
|
|
29
|
+
|
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or
|
|
31
|
+
advances of any kind
|
|
32
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
33
|
+
* Public or private harassment
|
|
34
|
+
* Publishing others' private information, such as a physical or email
|
|
35
|
+
address, without their explicit permission
|
|
36
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
37
|
+
professional setting
|
|
38
|
+
|
|
39
|
+
## Enforcement Responsibilities
|
|
40
|
+
|
|
41
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
44
|
+
or harmful.
|
|
45
|
+
|
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
49
|
+
decisions when appropriate.
|
|
50
|
+
|
|
51
|
+
## Scope
|
|
52
|
+
|
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
|
54
|
+
an individual is officially representing the community in public spaces.
|
|
55
|
+
Examples of representing our community include using an official e-mail address,
|
|
56
|
+
posting via an official social media account, or acting as an appointed
|
|
57
|
+
representative at an online or offline event.
|
|
58
|
+
|
|
59
|
+
## Enforcement
|
|
60
|
+
|
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
62
|
+
reported to the community leaders responsible for enforcement at
|
|
63
|
+
serapheimd@gmail.com.
|
|
64
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
|
65
|
+
|
|
66
|
+
All community leaders are obligated to respect the privacy and security of the
|
|
67
|
+
reporter of any incident.
|
|
68
|
+
|
|
69
|
+
## Enforcement Guidelines
|
|
70
|
+
|
|
71
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
|
72
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
|
73
|
+
|
|
74
|
+
### 1. Correction
|
|
75
|
+
|
|
76
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
77
|
+
unprofessional or unwelcome in the community.
|
|
78
|
+
|
|
79
|
+
**Consequence**: A private, written warning from community leaders, providing
|
|
80
|
+
clarity around the nature of the violation and an explanation of why the
|
|
81
|
+
behavior was inappropriate. A public apology may be requested.
|
|
82
|
+
|
|
83
|
+
### 2. Warning
|
|
84
|
+
|
|
85
|
+
**Community Impact**: A violation through a single incident or series
|
|
86
|
+
of actions.
|
|
87
|
+
|
|
88
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
|
89
|
+
interaction with the people involved, including unsolicited interaction with
|
|
90
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
|
91
|
+
includes avoiding interactions in community spaces as well as external channels
|
|
92
|
+
like social media. Violating these terms may lead to a temporary or
|
|
93
|
+
permanent ban.
|
|
94
|
+
|
|
95
|
+
### 3. Temporary Ban
|
|
96
|
+
|
|
97
|
+
**Community Impact**: A serious violation of community standards, including
|
|
98
|
+
sustained inappropriate behavior.
|
|
99
|
+
|
|
100
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
|
101
|
+
communication with the community for a specified period of time. No public or
|
|
102
|
+
private interaction with the people involved, including unsolicited interaction
|
|
103
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
|
104
|
+
Violating these terms may lead to a permanent ban.
|
|
105
|
+
|
|
106
|
+
### 4. Permanent Ban
|
|
107
|
+
|
|
108
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
|
109
|
+
standards, including sustained inappropriate behavior, harassment of an
|
|
110
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
|
111
|
+
|
|
112
|
+
**Consequence**: A permanent ban from any sort of public interaction within
|
|
113
|
+
the community.
|
|
114
|
+
|
|
115
|
+
## Attribution
|
|
116
|
+
|
|
117
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
118
|
+
version 2.0, available at
|
|
119
|
+
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
|
120
|
+
|
|
121
|
+
Community Impact Guidelines were inspired by [Mozilla's code of conduct
|
|
122
|
+
enforcement ladder](https://github.com/mozilla/diversity).
|
|
123
|
+
|
|
124
|
+
[homepage]: https://www.contributor-covenant.org
|
|
125
|
+
|
|
126
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
|
127
|
+
https://www.contributor-covenant.org/faq. Translations are available at
|
|
128
|
+
https://www.contributor-covenant.org/translations.
|