OSDN Git Service

block/nvme: drop tautologous assertion
authorStefan Hajnoczi <stefanha@redhat.com>
Wed, 17 Jun 2020 13:21:56 +0000 (14:21 +0100)
committerStefan Hajnoczi <stefanha@redhat.com>
Tue, 23 Jun 2020 14:46:08 +0000 (15:46 +0100)
commitd38253cf8b44e3b94a5b327d014ab035ae1126ed
tree7bf997905bfd4a4533b601a89f5486e2a5294f6a
parent2446e0e2e9c9aaa5f8e8c7ef9a41fe8516054831
block/nvme: drop tautologous assertion

nvme_process_completion() explicitly checks cid so the assertion that
follows is always true:

  if (cid == 0 || cid > NVME_QUEUE_SIZE) {
      ...
      continue;
  }
  assert(cid <= NVME_QUEUE_SIZE);

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Sergio Lopez <slp@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20200617132201.1832152-3-stefanha@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
block/nvme.c