/* * netsniff-ng - the packet sniffing beast * Copyright 2009 - 2013 Daniel Borkmann. * Subject to the GPL, version 2. */ #ifndef LINKTYPE_H #define LINKTYPE_H #define LINKTYPE_NULL 0 #define LINKTYPE_EN10MB 1 #define LINKTYPE_EN3MB 2 #define LINKTYPE_AX25 3 #define LINKTYPE_PRONET 4 #define LINKTYPE_CHAOS 5 #define LINKTYPE_IEEE802 6 #define LINKTYPE_SLIP 8 #define LINKTYPE_PPP 9 #define LINKTYPE_FDDI 10 #define LINKTYPE_ATM_CLIP 19 #define LINKTYPE_C_HDLC 104 #define LINKTYPE_IEEE802_11 105 #define LINKTYPE_FRELAY 107 #define LINKTYPE_LINUX_SLL 113 #define LINKTYPE_ECONET 115 #define LINKTYPE_IEEE802_11_RADIOTAP 127 #define LINKTYPE_ARCNET_LINUX 129 #define LINKTYPE_LINUX_IRDA 144 #define LINKTYPE_CAN20B 190 #define LINKTYPE_IEEE802_15_4_LINUX 191 #define LINKTYPE_INFINIBAND 247 #define LINKTYPE_NETLINK 253 #define LINKTYPE_MAX 254 #endif et'> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLai Siyao <lai.siyao@intel.com>2016-09-18 16:37:56 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-19 09:44:03 +0200
commit6535a7d046a24d7d426a9dfedf918eac954ea00c (patch)
treee86aaa7264b5b4d2bd975cfdfaefa1df6e495f05
parente554fbfffcecc0558f891b66719fc933539ceb16 (diff)
staging: lustre: statahead: ll_intent_drop_lock() called in spinlock
ll_intent_drop_lock() may sleep, which should not be called inside spinlock. Signed-off-by: Lai Siyao <lai.siyao@intel.com> Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-2272 Reviewed-on: http://review.whamcloud.com/9665 Reviewed-by: Fan Yong <fan.yong@intel.com> Reviewed-by: James Simmons <uja.ornl@gmail.com> Reviewed-by: Oleg Drokin <oleg.drokin@intel.com> Signed-off-by: James Simmons <jsimmons@infradead.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat
-rw-r--r--drivers/staging/lustre/lustre/llite/statahead.c24
1 files changed, 17 insertions, 7 deletions
diff --git a/drivers/staging/lustre/lustre/llite/statahead.c b/drivers/staging/lustre/lustre/llite/statahead.c