diff options
author | Jubin John <jubin.john@intel.com> | 2016-05-12 10:23:16 -0700 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-05-13 19:39:17 -0400 |
commit | 63d0b4a5fc5f589c6e980fc5d43c220e74a6f06c (patch) | |
tree | 1fd4da4dfba0aa43f9d4cc8f66649423a2c2c7e3 | |
parent | 67caea1fec85266590dddfa431e1cb000bc942f4 (diff) | |
download | op-kernel-dev-63d0b4a5fc5f589c6e980fc5d43c220e74a6f06c.zip op-kernel-dev-63d0b4a5fc5f589c6e980fc5d43c220e74a6f06c.tar.gz |
IB/hfi1: Remove unnecessary header
While running perftests, there is a significant utilization of the
random number daemon. This is due to the linux/random.h header being
included in qp.c and verbs.c. However, none of the functions from this
header are being used in these files, so remove the unnecessary header.
Reviewed-by: Mike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: Jubin John <jubin.john@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
-rw-r--r-- | drivers/staging/rdma/hfi1/qp.c | 1 | ||||
-rw-r--r-- | drivers/staging/rdma/hfi1/verbs.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/rdma/hfi1/qp.c b/drivers/staging/rdma/hfi1/qp.c index 91eb423..c626508 100644 --- a/drivers/staging/rdma/hfi1/qp.c +++ b/drivers/staging/rdma/hfi1/qp.c @@ -49,7 +49,6 @@ #include <linux/vmalloc.h> #include <linux/hash.h> #include <linux/module.h> -#include <linux/random.h> #include <linux/seq_file.h> #include <rdma/rdma_vt.h> #include <rdma/rdmavt_qp.h> diff --git a/drivers/staging/rdma/hfi1/verbs.c b/drivers/staging/rdma/hfi1/verbs.c index f3531fd..ae92ac5 100644 --- a/drivers/staging/rdma/hfi1/verbs.c +++ b/drivers/staging/rdma/hfi1/verbs.c @@ -52,7 +52,6 @@ #include <linux/utsname.h> #include <linux/rculist.h> #include <linux/mm.h> -#include <linux/random.h> #include <linux/vmalloc.h> #include "hfi.h" |