summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2013-05-08 00:13:08 +0200
committerKay Sievers <kay@vrfy.org>2013-05-08 00:13:08 +0200
commitda4e5658e3a188cbd2fe493c337e5dd4904a7cee (patch)
treed25c2a520a0f3947cf8e5f04aa4db73915d8c32a
parent111fb9ed7d88e76942fe0f5c146333b1b1e6cbe2 (diff)
downloadkdbus-bus-da4e5658e3a188cbd2fe493c337e5dd4904a7cee.tar.gz
kdbus-bus-da4e5658e3a188cbd2fe493c337e5dd4904a7cee.tar.bz2
kdbus-bus-da4e5658e3a188cbd2fe493c337e5dd4904a7cee.zip
rename files: ns -> namespace, ep -> endpoint
-rw-r--r--Makefile4
-rw-r--r--bus.c4
-rw-r--r--connection.c4
-rw-r--r--endpoint.c (renamed from ep.c)4
-rw-r--r--endpoint.h (renamed from ep.h)0
-rw-r--r--main.c2
-rw-r--r--match.c2
-rw-r--r--message.c2
-rw-r--r--names.c2
-rw-r--r--namespace.c (renamed from ns.c)2
-rw-r--r--namespace.h (renamed from ns.h)0
-rw-r--r--notify.c2
12 files changed, 14 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index 28ea15118f9..716d971bc0f 100644
--- a/Makefile
+++ b/Makefile
@@ -2,13 +2,13 @@ kdbus-y := \
bus.o \
connection.o \
buffer.o \
- ep.o \
+ endpoint.o \
main.o \
match.o \
message.o \
names.o \
notify.o \
- ns.o \
+ namespace.o \
policy.o
# obj-$(CONFIG_KDBUS) += kdbus.o
diff --git a/bus.c b/bus.c
index f4c25624d42..7a68759ef10 100644
--- a/bus.c
+++ b/bus.c
@@ -26,8 +26,8 @@
#include "bus.h"
#include "connection.h"
#include "names.h"
-#include "ep.h"
-#include "ns.h"
+#include "endpoint.h"
+#include "namespace.h"
/**
* kdbus_bus_unref() - increase the reference counter of a kdbus_bus
diff --git a/connection.c b/connection.c
index c5f528e3f05..c65f1ab0da2 100644
--- a/connection.c
+++ b/connection.c
@@ -34,8 +34,8 @@
#include "buffer.h"
#include "message.h"
#include "notify.h"
-#include "ns.h"
-#include "ep.h"
+#include "namespace.h"
+#include "endpoint.h"
#include "bus.h"
#include "match.h"
#include "names.h"
diff --git a/ep.c b/endpoint.c
index d5b9805b299..29aedd36fd6 100644
--- a/ep.c
+++ b/endpoint.c
@@ -22,10 +22,10 @@
#include <linux/hashtable.h>
#include <linux/sizes.h>
-#include "ep.h"
+#include "endpoint.h"
#include "bus.h"
#include "policy.h"
-#include "ns.h"
+#include "namespace.h"
/* endpoints are by default owned by the bus owner */
static char *kdbus_devnode_ep(struct device *dev, umode_t *mode
diff --git a/ep.h b/endpoint.h
index 6e7e9a12fb6..6e7e9a12fb6 100644
--- a/ep.h
+++ b/endpoint.h
diff --git a/main.c b/main.c
index f502643733d..8d0489f51be 100644
--- a/main.c
+++ b/main.c
@@ -23,7 +23,7 @@
#include <uapi/linux/major.h>
#include "internal.h"
-#include "ns.h"
+#include "namespace.h"
/* kdbus sysfs subsystem */
struct bus_type kdbus_subsys = {
diff --git a/match.c b/match.c
index 6cbbfbcdd16..04fb82f87f2 100644
--- a/match.c
+++ b/match.c
@@ -24,7 +24,7 @@
#include "match.h"
#include "connection.h"
-#include "ep.h"
+#include "endpoint.h"
#include "message.h"
#include "bus.h"
diff --git a/message.c b/message.c
index 616146bedbe..ac1b0f58520 100644
--- a/message.c
+++ b/message.c
@@ -29,7 +29,7 @@
#include "message.h"
#include "connection.h"
#include "bus.h"
-#include "ep.h"
+#include "endpoint.h"
#include "policy.h"
#include "names.h"
#include "match.h"
diff --git a/names.c b/names.c
index d66118bd326..70261f6d317 100644
--- a/names.c
+++ b/names.c
@@ -29,7 +29,7 @@
#include "notify.h"
#include "policy.h"
#include "bus.h"
-#include "ep.h"
+#include "endpoint.h"
struct kdbus_name_queue_item {
struct kdbus_conn *conn;
diff --git a/ns.c b/namespace.c
index 51bbfa92889..ff1f3e608fd 100644
--- a/ns.c
+++ b/namespace.c
@@ -22,7 +22,7 @@
#include <linux/sizes.h>
#include <uapi/linux/major.h>
-#include "ns.h"
+#include "namespace.h"
/* global list of all namespaces */
static LIST_HEAD(namespace_list);
diff --git a/ns.h b/namespace.h
index 7a6bb96887f..7a6bb96887f 100644
--- a/ns.h
+++ b/namespace.h
diff --git a/notify.c b/notify.c
index 5147e5bf54d..56cc67cfc31 100644
--- a/notify.c
+++ b/notify.c
@@ -24,7 +24,7 @@
#include "notify.h"
#include "bus.h"
-#include "ep.h"
+#include "endpoint.h"
#include "message.h"
static int kdbus_notify_reply(struct kdbus_ep *ep, u64 src_id,