All of lore.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] unexport uts_sem
@ 2008-05-05 18:29 Adrian Bunk
  2008-05-20 17:16 ` Frank Ch. Eigler
  0 siblings, 1 reply; 24+ messages in thread
From: Adrian Bunk @ 2008-05-05 18:29 UTC (permalink / raw)
  To: linux-kernel; +Cc: David S. Miller, Andrew Morton

With the removal of the Solaris binary emulation the export of 
uts_sem became unused.

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: David S. Miller <davem@davemloft.net>

---

This patch has been sent on:
- 23 Apr 2008

e15db7b262fd8c3d9000e7d5e7a2b1d720fba8de diff --git a/kernel/sys.c b/kernel/sys.c
index 6a0cc71..773d4a5 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -1331,8 +1331,6 @@ EXPORT_SYMBOL(in_egroup_p);
 
 DECLARE_RWSEM(uts_sem);
 
-EXPORT_SYMBOL(uts_sem);
-
 asmlinkage long sys_newuname(struct new_utsname __user * name)
 {
 	int errno = 0;



^ permalink raw reply related	[flat|nested] 24+ messages in thread
* [2.6 patch] unexport uts_sem
@ 2008-04-23  9:52 Adrian Bunk
  2008-04-23 10:50 ` David Miller
  0 siblings, 1 reply; 24+ messages in thread
From: Adrian Bunk @ 2008-04-23  9:52 UTC (permalink / raw)
  To: David S. Miller; +Cc: linux-kernel

With the removal of the Solaris binary emulation the export of 
uts_sem became unused.

Signed-off-by: Adrian Bunk <bunk@kernel.org>

---
e15db7b262fd8c3d9000e7d5e7a2b1d720fba8de diff --git a/kernel/sys.c b/kernel/sys.c
index 6a0cc71..773d4a5 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -1331,8 +1331,6 @@ EXPORT_SYMBOL(in_egroup_p);
 
 DECLARE_RWSEM(uts_sem);
 
-EXPORT_SYMBOL(uts_sem);
-
 asmlinkage long sys_newuname(struct new_utsname __user * name)
 {
 	int errno = 0;

^ permalink raw reply related	[flat|nested] 24+ messages in thread
* [2.6 patch] unexport uts_sem
@ 2005-04-15 15:10 Adrian Bunk
  0 siblings, 0 replies; 24+ messages in thread
From: Adrian Bunk @ 2005-04-15 15:10 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

I didn't find any possible modular usage in the kernel.

Signed-off-by: Adrian Bunk <bunk@stusta.de>

---

This patch was already sent on:
- 4 Mar 2005

--- linux-2.6.11-rc5-mm1-full/kernel/sys.c.old	2005-03-04 01:19:18.000000000 +0100
+++ linux-2.6.11-rc5-mm1-full/kernel/sys.c	2005-03-04 01:19:29.000000000 +0100
@@ -1382,8 +1382,6 @@
 
 DECLARE_RWSEM(uts_sem);
 
-EXPORT_SYMBOL(uts_sem);
-
 asmlinkage long sys_newuname(struct new_utsname __user * name)
 {
 	int errno = 0;


^ permalink raw reply	[flat|nested] 24+ messages in thread
* [2.6 patch] unexport uts_sem
@ 2005-03-04  0:50 Adrian Bunk
  2005-03-04 12:57 ` Alan Cox
  0 siblings, 1 reply; 24+ messages in thread
From: Adrian Bunk @ 2005-03-04  0:50 UTC (permalink / raw)
  To: linux-kernel

I didn't find any possible modular usage in the kernel.

Signed-off-by: Adrian Bunk <bunk@stusta.de>

--- linux-2.6.11-rc5-mm1-full/kernel/sys.c.old	2005-03-04 01:19:18.000000000 +0100
+++ linux-2.6.11-rc5-mm1-full/kernel/sys.c	2005-03-04 01:19:29.000000000 +0100
@@ -1382,8 +1382,6 @@
 
 DECLARE_RWSEM(uts_sem);
 
-EXPORT_SYMBOL(uts_sem);
-
 asmlinkage long sys_newuname(struct new_utsname __user * name)
 {
 	int errno = 0;


^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2008-05-21 21:01 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-05 18:29 [2.6 patch] unexport uts_sem Adrian Bunk
2008-05-20 17:16 ` Frank Ch. Eigler
2008-05-20 17:27   ` Christoph Hellwig
2008-05-20 18:38     ` Frank Ch. Eigler
2008-05-21 12:37       ` Christoph Hellwig
2008-05-21 14:48         ` Steve French (smfltc)
2008-05-21 17:51         ` [PATCH] usb-storage: don't call utsname() Alan Stern
2008-05-21 17:51           ` Alan Stern
     [not found]           ` <Pine.LNX.4.44L0.0805211349480.3409-100000-IYeN2dnnYyZXsRXLowluHWD2FQJk+8+b@public.gmane.org>
2008-05-21 18:09             ` Greg KH
2008-05-21 18:09               ` Greg KH
2008-05-21 18:19               ` Steve French (smfltc)
2008-05-21 18:19                 ` Steve French (smfltc)
2008-05-21 18:52               ` Christoph Hellwig
2008-05-21 18:52                 ` Christoph Hellwig
2008-05-21 19:35                 ` Greg KH
2008-05-21 19:35                   ` Greg KH
2008-05-21 21:01                   ` Steve French (smfltc)
2008-05-21 21:01                     ` Steve French (smfltc)
  -- strict thread matches above, loose matches on Subject: below --
2008-04-23  9:52 [2.6 patch] unexport uts_sem Adrian Bunk
2008-04-23 10:50 ` David Miller
2005-04-15 15:10 Adrian Bunk
2005-03-04  0:50 Adrian Bunk
2005-03-04 12:57 ` Alan Cox
2005-03-04 13:28   ` Arjan van de Ven

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.