diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-11-14 14:26:27 +0000 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2017-11-20 08:38:10 +0100 |
commit | 89c4aff6d4f71726f22e567f046dc1dd73c35de1 (patch) | |
tree | 4363e1d4251a19d7d7d72e8d75da9fd39dab33a2 /drivers/nvme | |
parent | 244a8fe40a09c218622eb9927b9090b0a9b73a1a (diff) | |
download | talos-obmc-linux-89c4aff6d4f71726f22e567f046dc1dd73c35de1.tar.gz talos-obmc-linux-89c4aff6d4f71726f22e567f046dc1dd73c35de1.zip |
nvme: fix spelling mistake: "requeing" -> "requeuing"
Trivial fix to spelling mistake in dev_warn_ratelimited message text
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/nvme')
-rw-r--r-- | drivers/nvme/host/multipath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/multipath.c b/drivers/nvme/host/multipath.c index 78d92151a904..1218a9fca846 100644 --- a/drivers/nvme/host/multipath.c +++ b/drivers/nvme/host/multipath.c @@ -131,7 +131,7 @@ static blk_qc_t nvme_ns_head_make_request(struct request_queue *q, bio->bi_opf |= REQ_NVME_MPATH; ret = direct_make_request(bio); } else if (!list_empty_careful(&head->list)) { - dev_warn_ratelimited(dev, "no path available - requeing I/O\n"); + dev_warn_ratelimited(dev, "no path available - requeuing I/O\n"); spin_lock_irq(&head->requeue_lock); bio_list_add(&head->requeue_list, bio); |