#ifndef LLC_C_ST_H #define LLC_C_ST_H /* * Copyright (c) 1997 by Procom Technology,Inc. * 2001 by Arnaldo Carvalho de Melo * * This program can be redistributed or modified under the terms of the * GNU General Public License as published by the Free Software Foundation. * This program is distributed without any warranty or implied warranty * of merchantability or fitness for a particular purpose. * * See the GNU General Public License for more details. */ /* Connection component state management */ /* connection states */ #define LLC_CONN_OUT_OF_SVC 0 /* prior to allocation */ #define LLC_CONN_STATE_ADM 1 /* disc, initial state */ #define LLC_CONN_STATE_SETUP 2 /* disconnected state */ #define LLC_CONN_STATE_NORMAL 3 /* connected state */ #define LLC_CONN_STATE_BUSY 4 /* connected state */ #define LLC_CONN_STATE_REJ 5 /* connected state */ #define LLC_CONN_STATE_AWAIT 6 /* connected state */ #define LLC_CONN_STATE_AWAIT_BUSY 7 /* connected state */ #define LLC_CONN_STATE_AWAIT_REJ 8 /* connected state */ #define LLC_CONN_STATE_D_CONN 9 /* disconnected state */ #define LLC_CONN_STATE_RESET 10 /* disconnected state */ #define LLC_CONN_STATE_ERROR 11 /* disconnected state */ #define LLC_CONN_STATE_TEMP 12 /* disconnected state */ #define NBR_CONN_STATES 12 /* size of state table */ #define NO_STATE_CHANGE 100 /* Connection state table structure */ struct llc_conn_state_trans { llc_conn_ev_t ev; u8 next_state; const llc_conn_ev_qfyr_t *ev_qualifiers; const llc_conn_action_t *ev_actions; }; struct llc_conn_state { u8 current_state; struct llc_conn_state_trans **transitions; }; extern struct llc_conn_state llc_conn_state_table[]; #endif /* LLC_C_ST_H */ t.cgi/linux/net-next.git/tree/include/uapi/sound/sfnt_info.h?id=6bdded59c8933940ac7e5b416448276ac89d1144'>treecommitdiff
path: root/include/uapi/sound/sfnt_info.h
9cda115f4f&showmsg=1'>Expand) n value='25'>25
AgeCommit message (Expand)AuthorFilesLines
AuthorFilesLines
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2017-01-31 19:03:21 +0100
committerThomas Gleixner <tglx@linutronix.de>2017-01-31 20:22:18 +0100
commitaaaec6fc755447a1d056765b11b24d8ff2b81366 (patch)
treea7f4167960ee1df86739905b6ccdeb95465bfe5f /net/tipc/bcast.c
parent08d85f3ea99f1eeafc4e8507936190e86a16ee8c (diff)
x86/irq: Make irq activate operations symmetric
The recent commit which prevents double activation of interrupts unearthed interesting code in x86. The code (ab)uses irq_domain_activate_irq() to reconfigure an already activated interrupt. That trips over the prevention code now. Fix it by deactivating the interrupt before activating the new configuration. Fixes: 08d85f3ea99f1 "irqdomain: Avoid activating interrupts more than once" Reported-and-tested-by: Mike Galbraith <efault@gmx.de> Reported-and-tested-by: Borislav Petkov <bp@alien8.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Andrey Ryabinin <aryabinin@virtuozzo.com> Cc: Marc Zyngier <marc.zyngier@arm.com> Cc: stable@vger.kernel.org Link: http://lkml.kernel.org/r/alpine.DEB.2.20.1701311901580.3457@nanos
Diffstat (limited to 'net/tipc/bcast.c')