[openib-general] [PATCH] Remove drivers/infiniband/core/sa_client_export.c
Tom Duffy
tduffy at sun.com
Mon Aug 16 16:07:16 PDT 2004
Remove file drivers/infiniband/core/sa_client_export.c. That is the
last of them in core.
Signed-by: Tom Duffy <tduffy at sun.com> with permission from Sun legal.
Index: drivers/infiniband/core/sa_client_service.c
===================================================================
--- drivers/infiniband/core/sa_client_service.c (revision 654)
+++ drivers/infiniband/core/sa_client_service.c (working copy)
@@ -222,6 +222,7 @@
completion_arg, transaction_id,
IB_MGMT_METHOD_GET);
}
+EXPORT_SYMBOL(ib_service_get);
int ib_service_set(struct ib_device *device,
tTS_IB_PORT port,
@@ -237,6 +238,7 @@
completion_arg, transaction_id,
IB_MGMT_METHOD_SET);
}
+EXPORT_SYMBOL(ib_service_set);
int ib_service_delete(struct ib_device *device,
tTS_IB_PORT port,
@@ -252,6 +254,7 @@
completion_arg, transaction_id,
IB_SA_METHOD_DELETE);
}
+EXPORT_SYMBOL(ib_service_delete);
static void _tsIbServiceAtsGetGidResponse(tTS_IB_CLIENT_RESPONSE_STATUS status,
struct ib_mad *packet,
@@ -446,6 +449,7 @@
return 0;
}
+EXPORT_SYMBOL(tsIbAtsServiceSet);
int tsIbAtsServiceGetGid(struct ib_device *device,
tTS_IB_PORT port,
@@ -503,6 +507,7 @@
return 0;
}
+EXPORT_SYMBOL(tsIbAtsServiceGetGid);
int tsIbAtsServiceGetIp(struct ib_device *device,
tTS_IB_PORT port,
@@ -559,6 +564,7 @@
return 0;
}
+EXPORT_SYMBOL(tsIbAtsServiceGetIp);
/*
Local Variables:
Index: drivers/infiniband/core/Makefile
===================================================================
--- drivers/infiniband/core/Makefile (revision 654)
+++ drivers/infiniband/core/Makefile (working copy)
@@ -82,7 +80,6 @@
sa_client_inform.o \
sa_client_notice.o \
sa_client_service.o \
- sa_client_export.o \
sa_client_node_info.o
ib_dm_client-objs := \
Index: drivers/infiniband/core/sa_client_inform.c
===================================================================
--- drivers/infiniband/core/sa_client_inform.c (revision 654)
+++ drivers/infiniband/core/sa_client_inform.c (working copy)
@@ -30,6 +30,7 @@
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/errno.h>
+#include <linux/module.h>
#include <asm/system.h>
#include <asm/byteorder.h>
@@ -311,6 +312,7 @@
return rc;
}
+EXPORT_SYMBOL(tsIbSetInServiceNoticeHandler);
int tsIbSetOutofServiceNoticeHandler(struct ib_device *device,
tTS_IB_PORT port,
@@ -348,6 +350,7 @@
return rc;
}
+EXPORT_SYMBOL(tsIbSetOutofServiceNoticeHandler);
int tsIbSetMcastGroupCreateNoticeHandler(struct ib_device *device,
tTS_IB_PORT port,
Index: drivers/infiniband/core/sa_client_path_record.c
===================================================================
--- drivers/infiniband/core/sa_client_path_record.c (revision 654)
+++ drivers/infiniband/core/sa_client_path_record.c (working copy)
@@ -30,6 +30,7 @@
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/errno.h>
+#include <linux/module.h>
#include <asm/system.h>
#include <asm/byteorder.h>
@@ -187,3 +188,4 @@
return 0;
}
+EXPORT_SYMBOL(tsIbPathRecordRequest);
Index: drivers/infiniband/core/sa_client_node_info.c
===================================================================
--- drivers/infiniband/core/sa_client_node_info.c (revision 654)
+++ drivers/infiniband/core/sa_client_node_info.c (working copy)
@@ -31,6 +31,7 @@
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/errno.h>
+#include <linux/module.h>
#include <asm/system.h>
#include <asm/byteorder.h>
@@ -184,3 +185,4 @@
return 0;
}
+EXPORT_SYMBOL(tsIbNodeInfoQuery);
Index: drivers/infiniband/core/sa_client_export.c
===================================================================
--- drivers/infiniband/core/sa_client_export.c (revision 654)
+++ drivers/infiniband/core/sa_client_export.c (working copy)
@@ -1,42 +0,0 @@
-/*
- This software is available to you under a choice of one of two
- licenses. You may choose to be licensed under the terms of the GNU
- General Public License (GPL) Version 2, available at
- <http://www.fsf.org/copyleft/gpl.html>, or the OpenIB.org BSD
- license, available in the LICENSE.TXT file accompanying this
- software. These details are also available at
- <http://openib.org/license.html>.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- SOFTWARE.
-
- Copyright (c) 2004 Topspin Communications. All rights reserved.
-
- $Id$
-*/
-
-#include "ts_ib_sa_client.h"
-
-#include <linux/module.h>
-
-EXPORT_SYMBOL(tsIbPathRecordRequest);
-EXPORT_SYMBOL(tsIbMulticastGroupJoin);
-EXPORT_SYMBOL(tsIbMulticastGroupLeave);
-EXPORT_SYMBOL(tsIbPortInfoQuery);
-EXPORT_SYMBOL(tsIbPortInfoTblQuery);
-EXPORT_SYMBOL(tsIbSetInServiceNoticeHandler);
-EXPORT_SYMBOL(tsIbSetOutofServiceNoticeHandler);
-EXPORT_SYMBOL(tsIbAtsServiceSet);
-EXPORT_SYMBOL(tsIbAtsServiceGetGid);
-EXPORT_SYMBOL(tsIbAtsServiceGetIp);
-EXPORT_SYMBOL(tsIbMulticastGroupTableQuery);
-EXPORT_SYMBOL(tsIbNodeInfoQuery);
-EXPORT_SYMBOL(ib_service_get);
-EXPORT_SYMBOL(ib_service_set);
-EXPORT_SYMBOL(ib_service_delete);
Index: drivers/infiniband/core/sa_client_multicast.c
===================================================================
--- drivers/infiniband/core/sa_client_multicast.c (revision 654)
+++ drivers/infiniband/core/sa_client_multicast.c (working copy)
@@ -32,6 +32,7 @@
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/errno.h>
+#include <linux/module.h>
#include <asm/system.h>
#include <asm/byteorder.h>
@@ -357,6 +358,7 @@
return 0;
}
+EXPORT_SYMBOL(tsIbMulticastGroupJoin);
int tsIbMulticastGroupLeave(struct ib_device *device,
tTS_IB_PORT port, tTS_IB_GID mgid)
@@ -364,6 +366,7 @@
/* XXX implement */
return 0;
}
+EXPORT_SYMBOL(tsIbMulticastGroupLeave);
int tsIbMulticastGroupTableQuery(struct ib_device *device,
tTS_IB_PORT port,
@@ -411,3 +414,4 @@
return 0;
}
+EXPORT_SYMBOL(tsIbMulticastGroupTableQuery);
Index: drivers/infiniband/core/sa_client_port_info.c
===================================================================
--- drivers/infiniband/core/sa_client_port_info.c (revision 654)
+++ drivers/infiniband/core/sa_client_port_info.c (working copy)
@@ -31,6 +31,7 @@
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/errno.h>
+#include <linux/module.h>
#include <asm/system.h>
#include <asm/byteorder.h>
@@ -494,6 +495,7 @@
return 0;
}
+EXPORT_SYMBOL(tsIbPortInfoQuery);
int tsIbPortInfoTblQuery(struct ib_device *device,
tTS_IB_PORT port,
@@ -532,3 +534,4 @@
return 0;
}
+EXPORT_SYMBOL(tsIbPortInfoTblQuery);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 189 bytes
Desc: This is a digitally signed message part
URL: <http://lists.openfabrics.org/pipermail/general/attachments/20040816/89f19833/attachment.sig>
More information about the general
mailing list