Lines Matching refs:p
32 p = subparsers.add_parser('scheduler_thread_create', help='Create spdk thread')
33 p.add_argument('-n', '--name', help='Name of spdk thread and poller')
34 p.add_argument('-m', '--cpu_mask', help='CPU mask for spdk thread')
35 p.add_argument('-a', '--active', help='Percent of time thread is active', type=int)
36 p.set_defaults(func=create_thread)
38 …p = subparsers.add_parser('scheduler_thread_set_active', help='Change percent of time the spdk thr…
39 p.add_argument('thread_id', help='spdk_thread id', type=int)
40 p.add_argument('active', help='Percent of time thread is active', type=int)
41 p.set_defaults(func=thread_set_active)
43 p = subparsers.add_parser('scheduler_thread_delete', help='Delete spdk thread')
44 p.add_argument('thread_id', help='spdk_thread id', type=int)
45 p.set_defaults(func=thread_delete)