Skip to content

Commit f0e41c4

Browse files
authored
Merge pull request #228 from delphix/master
Merge branch 'master' into '6.0/stage'
2 parents a0e1052 + 0b125de commit f0e41c4

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

sdb/commands/internal/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,3 @@
2424
if path != __file__:
2525
module = os.path.splitext(os.path.basename(path))[0]
2626
importlib.import_module("sdb.commands.internal.{}".format(module))
27-
28-
for path in glob.glob("{}/*/__init__.py".format(os.path.dirname(__file__))):
29-
module = os.path.basename(os.path.dirname(path))
30-
importlib.import_module("sdb.commands.internal.{}".format(module))

sdb/commands/linux/internal/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,3 @@
2424
if path != __file__:
2525
module = os.path.splitext(os.path.basename(path))[0]
2626
importlib.import_module("sdb.commands.linux.internal.{}".format(module))
27-
28-
for path in glob.glob("{}/*/__init__.py".format(os.path.dirname(__file__))):
29-
module = os.path.basename(os.path.dirname(path))
30-
importlib.import_module("sdb.commands.linux.internal.{}".format(module))

sdb/commands/spl/internal/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,3 @@
2424
if path != __file__:
2525
module = os.path.splitext(os.path.basename(path))[0]
2626
importlib.import_module("sdb.commands.spl.internal.{}".format(module))
27-
28-
for path in glob.glob("{}/*/__init__.py".format(os.path.dirname(__file__))):
29-
module = os.path.basename(os.path.dirname(path))
30-
importlib.import_module("sdb.commands.spl.internal.{}".format(module))

tests/integration/data/regression_output/linux/stacks

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,12 @@ TASK_STRUCT STATE COUNT
241241
ret_from_fork+0x1f
242242

243243
0xffffa08966a01700 RUNNING 1
244+
__schedule+0x2c0
245+
schedule+0x2c
246+
schedule_timeout+0x169
247+
rcu_gp_kthread+0x572
248+
kthread+0x121
249+
ret_from_fork+0x1f
244250

245251
0xffffa08966a6dc00 INTERRUPTIBLE 1
246252
__schedule+0x2c0

tests/integration/data/regression_output/linux/stacks -a

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,12 @@ TASK_STRUCT STATE
765765
ret_from_fork+0x1f
766766

767767
0xffffa08966a01700 RUNNING
768+
__schedule+0x2c0
769+
schedule+0x2c
770+
schedule_timeout+0x169
771+
rcu_gp_kthread+0x572
772+
kthread+0x121
773+
ret_from_fork+0x1f
768774

769775
0xffffa08966a6dc00 INTERRUPTIBLE
770776
__schedule+0x2c0

0 commit comments

Comments
 (0)