From: Arnaud Lacombe Date: Tue, 1 Dec 2009 08:38:17 +0000 (-0500) Subject: Add posix SHUT_RD/SHUT_WR/SHUT_RDWR macros X-Git-Tag: next-20100113~47 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=f09c783cbe244678b683389656da9a0a6e7c6a93;p=~emulex%2Ffor-vlad%2Fcompat.git Add posix SHUT_RD/SHUT_WR/SHUT_RDWR macros Added on commit 91cf45f0 by Trond Myklebust in include/linux/net.h. Signed-off-by: Arnaud Lacombe --- diff --git a/compat-2.6.24.h b/compat-2.6.24.h index d8f7c2c..68d33c7 100644 --- a/compat-2.6.24.h +++ b/compat-2.6.24.h @@ -10,6 +10,13 @@ /* Added on 2.6.24 in include/linux/types.h by Al viro on commit 142956af */ typedef unsigned long uintptr_t; +/* From include/linux/net.h */ +enum sock_shutdown_cmd { + SHUT_RD = 0, + SHUT_WR = 1, + SHUT_RDWR = 2, +}; + #if (LINUX_VERSION_CODE == KERNEL_VERSION(2,6,23)) /* Local check */ /* Added as of 2.6.24 in include/linux/skbuff.h. *