Skip to content

Commit

Permalink
[NET]: Revert socket.h/stat.h ifdef hacks.
Browse files Browse the repository at this point in the history
This reverts 57a87bb.

As H. Peter Anvin states, this change broke klibc and it's
not very easy to fix things up without duplicating everything
into userspace.

In the longer term we should have a better solution to this
problem, but for now let's unbreak things.

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Feb 28, 2007
1 parent 2c12a74 commit 304c209
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/linux/socket.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ struct __kernel_sockaddr_storage {
/* _SS_MAXSIZE value minus size of ss_family */
} __attribute__ ((aligned(_K_SS_ALIGNSIZE))); /* force desired alignment */

#ifdef __KERNEL__
#if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2)

#include <asm/socket.h> /* arch-dependent defines */
#include <linux/sockios.h> /* the SIOCxxx I/O controls */
Expand Down
2 changes: 1 addition & 1 deletion include/linux/stat.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#endif

#ifdef __KERNEL__
#if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2)

#define S_IFMT 00170000
#define S_IFSOCK 0140000
Expand Down

0 comments on commit 304c209

Please sign in to comment.