1
0
Fork 0

staging: lustre: remove unnecessary EXPORT_SYMBOL for lnet layer

A lot of symbols don't need to be exported at all because they are
only used in the module they belong to.

Signed-off-by: frank zago <fzago@cray.com>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-5829
Reviewed-on: http://review.whamcloud.com/13320
Reviewed-by: James Simmons <uja.ornl@gmail.com>
Reviewed-by: Isaac Huang <he.huang@intel.com>
Reviewed-by: John L. Hammond <john.hammond@intel.com>
Reviewed-by: Oleg Drokin <oleg.drokin@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
frank zago 2015-11-08 18:09:36 -05:00 committed by Greg Kroah-Hartman
parent 524576d174
commit 82224549f3
3 changed files with 0 additions and 6 deletions

View File

@ -354,7 +354,6 @@ lnet_counters_reset(void)
lnet_net_unlock(LNET_LOCK_EX);
}
EXPORT_SYMBOL(lnet_counters_reset);
static char *
lnet_res_type2str(int type)
@ -1153,7 +1152,6 @@ lnet_init(void)
lnet_register_lnd(&the_lolnd);
return 0;
}
EXPORT_SYMBOL(lnet_init);
/**
* Finalize LNet library.
@ -1177,7 +1175,6 @@ lnet_fini(void)
the_lnet.ln_init = 0;
}
EXPORT_SYMBOL(lnet_fini);
/**
* Set LNet PID and start LNet interfaces, routing, and forwarding.

View File

@ -1645,7 +1645,6 @@ lnet_msgtyp2str(int type)
return "<UNKNOWN>";
}
}
EXPORT_SYMBOL(lnet_msgtyp2str);
void
lnet_print_hdr(lnet_hdr_t *hdr)

View File

@ -925,5 +925,3 @@ out:
return rc;
}
EXPORT_SYMBOL(lstcon_ioctl_entry);