aboutsummaryrefslogtreecommitdiffstats
path: root/examples/vhost_scsi/vhost_scsi.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/vhost_scsi/vhost_scsi.c')
-rw-r--r--examples/vhost_scsi/vhost_scsi.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/vhost_scsi/vhost_scsi.c b/examples/vhost_scsi/vhost_scsi.c
index 2908ff68..513af0cc 100644
--- a/examples/vhost_scsi/vhost_scsi.c
+++ b/examples/vhost_scsi/vhost_scsi.c
@@ -285,6 +285,12 @@ ctrlr_worker(void *arg)
cpu_set_t cpuset;
pthread_t thread;
+ if (ctrlr == NULL || ctrlr->bdev == NULL) {
+ fprintf(stderr, "%s: Error, invalid argument passed to worker thread\n",
+ __func__);
+ exit(0);
+ }
+
thread = pthread_self();
CPU_ZERO(&cpuset);
CPU_SET(0, &cpuset);