IB/hfi1: Remove unnecessary error messages on alloc failures
authorJan Sokolowski <jan.sokolowski@intel.com>
Tue, 26 Sep 2017 14:00:50 +0000 (07:00 -0700)
committerDoug Ledford <dledford@redhat.com>
Wed, 27 Sep 2017 15:34:13 +0000 (11:34 -0400)
Per-cpu variables int_counter, rcv_limit, and send_schedule
print unnecessary error messages on failed allocations.
Remove the error messages.

Reviewed-by: Harish Chegondi <harish.chegondi@intel.com>
Reviewed-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/hfi1/init.c

index fba7700..3e686d2 100644 (file)
@@ -1272,24 +1272,18 @@ struct hfi1_devdata *hfi1_alloc_devdata(struct pci_dev *pdev, size_t extra)
        dd->int_counter = alloc_percpu(u64);
        if (!dd->int_counter) {
                ret = -ENOMEM;
-               hfi1_early_err(&pdev->dev,
-                              "Could not allocate per-cpu int_counter\n");
                goto bail;
        }
 
        dd->rcv_limit = alloc_percpu(u64);
        if (!dd->rcv_limit) {
                ret = -ENOMEM;
-               hfi1_early_err(&pdev->dev,
-                              "Could not allocate per-cpu rcv_limit\n");
                goto bail;
        }
 
        dd->send_schedule = alloc_percpu(u64);
        if (!dd->send_schedule) {
                ret = -ENOMEM;
-               hfi1_early_err(&pdev->dev,
-                              "Could not allocate per-cpu int_counter\n");
                goto bail;
        }