summaryrefslogtreecommitdiffstats
path: root/net/rds/ib_fmr.c
diff options
context:
space:
mode:
authorZhu Yanjun2017-03-13 06:43:47 +0100
committerDavid S. Miller2017-03-14 07:20:05 +0100
commitedd08f96db4f06beb09acdd71e00b07a1f6c13ca (patch)
tree9cd3c3330ac733bddab6afba1e43ac6bce5edf47 /net/rds/ib_fmr.c
parentrds: ib: remove redundant ib_dealloc_fmr (diff)
downloadkernel-qcow2-linux-edd08f96db4f06beb09acdd71e00b07a1f6c13ca.tar.gz
kernel-qcow2-linux-edd08f96db4f06beb09acdd71e00b07a1f6c13ca.tar.xz
kernel-qcow2-linux-edd08f96db4f06beb09acdd71e00b07a1f6c13ca.zip
rds: ib: add the static type to the function
The function rds_ib_map_fmr is used only in the ib_fmr.c file. As such, the static type is added to limit it in this file. Cc: Joe Jin <joe.jin@oracle.com> Cc: Junxiao Bi <junxiao.bi@oracle.com> Acked-by: Santosh Shilimkar <santosh.shilimkar@oracle.com> Signed-off-by: Zhu Yanjun <yanjun.zhu@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rds/ib_fmr.c')
-rw-r--r--net/rds/ib_fmr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/rds/ib_fmr.c b/net/rds/ib_fmr.c
index 249ae1c783cb..c936b0d47693 100644
--- a/net/rds/ib_fmr.c
+++ b/net/rds/ib_fmr.c
@@ -84,8 +84,9 @@ out_no_cigar:
return ERR_PTR(err);
}
-int rds_ib_map_fmr(struct rds_ib_device *rds_ibdev, struct rds_ib_mr *ibmr,
- struct scatterlist *sg, unsigned int nents)
+static int rds_ib_map_fmr(struct rds_ib_device *rds_ibdev,
+ struct rds_ib_mr *ibmr, struct scatterlist *sg,
+ unsigned int nents)
{
struct ib_device *dev = rds_ibdev->dev;
struct rds_ib_fmr *fmr = &ibmr->u.fmr;