Skip to content

Commit

Permalink
Fix incorrect example in spl_cache
Browse files Browse the repository at this point in the history
= Testing

```
sdb> man spl_cache
SUMMARY
    spl_cache [-h]

...<cropped>...

EXAMPLES
    Print all the objects in the ddt_cache:

        sdb> spl_kmem_caches | filter 'obj.skc_name == "ddt_cache"' | spl_cache
        (void *)0xffffa08937e80040
        (void *)0xffffa08937e86180
        (void *)0xffffa08937e8c2c0
        (void *)0xffffa08937e92400
        ...
```

= Github Issue Tracker Automation

Closes #295
  • Loading branch information
sdimitro committed Dec 20, 2022
1 parent 3befd19 commit 1f5021b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdb/commands/spl/spl_kmem_caches.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class SplKmemCacheWalker(sdb.Walker):
EXAMPLES
Print all the objects in the ddt_cache:
sdb> spl_kmem_caches | filter obj.skc_name == "ddt_cache" | spl_cache
sdb> spl_kmem_caches | filter 'obj.skc_name == "ddt_cache"' | spl_cache
(void *)0xffffa08937e80040
(void *)0xffffa08937e86180
(void *)0xffffa08937e8c2c0
Expand Down

0 comments on commit 1f5021b

Please sign in to comment.