/********************************************************************* * * Filename: iriap_event.h * Version: * Description: * Status: Experimental. * Author: Dag Brattli * Created at: Mon Aug 4 20:40:53 1997 * Modified at: Sun Oct 31 22:02:54 1999 * Modified by: Dag Brattli * * Copyright (c) 1998-1999 Dag Brattli , All Rights Reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * Neither Dag Brattli nor University of Tromsø admit liability nor * provide warranty for any of this software. This material is * provided "AS-IS" and at no charge. * ********************************************************************/ #ifndef IRIAP_FSM_H #define IRIAP_FSM_H /* Forward because of circular include dependecies */ struct iriap_cb; /* IrIAP states */ typedef enum { /* Client */ S_DISCONNECT, S_CONNECTING, S_CALL, /* S-Call */ S_MAKE_CALL, S_CALLING, S_OUTSTANDING, S_REPLYING, S_WAIT_FOR_CALL, S_WAIT_ACTIVE, /* Server */ R_DISCONNECT, R_CALL, /* R-Connect */ R_WAITING, R_WAIT_ACTIVE, R_RECEIVING, R_EXECUTE, R_RETURNING, } IRIAP_STATE; typedef enum { IAP_CALL_REQUEST, IAP_CALL_REQUEST_GVBC, IAP_CALL_RESPONSE, IAP_RECV_F_LST, IAP_LM_DISCONNECT_INDICATION, IAP_LM_CONNECT_INDICATION, IAP_LM_CONNECT_CONFIRM, } IRIAP_EVENT; void iriap_next_client_state (struct iriap_cb *self, IRIAP_STATE state); void iriap_next_call_state (struct iriap_cb *self, IRIAP_STATE state); void iriap_next_server_state (struct iriap_cb *self, IRIAP_STATE state); void iriap_next_r_connect_state(struct iriap_cb *self, IRIAP_STATE state); void iriap_do_client_event(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb); void iriap_do_call_event (struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb); void iriap_do_server_event (struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb); void iriap_do_r_connect_event(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb); #endif /* IRIAP_FSM_H */ >
f='/cgit.cgi/linux/net-next.git/commit/sound/synth/emux/soundfont.c?h=nds-private-remove&id=d56a5ca366e785f463b4782f65daac883612a2b2'>soundfont.c
diff options
AgeCommit message (Collapse)AuthorFilesLines
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-01-28 11:50:17 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-28 11:50:17 -0800
commitd56a5ca366e785f463b4782f65daac883612a2b2 (patch)
tree26ff9bf940fc911e81ab22717d9e6c3258c74bf8 /sound/synth/emux/soundfont.c
parentdd553962675ab5747e887f89aea1ece90e6a802e (diff)
parentee6625a948d2e47267ec8fd97307fdd67d0f8a5b (diff)
Merge tag 'nfs-for-4.10-4' of git://git.linux-nfs.org/projects/trondmy/linux-nfs
Pull NFS client bugfixes from Trond Myklebust: "Stable patches: - NFSv4.1: Fix a deadlock in layoutget - NFSv4 must not bump sequence ids on NFS4ERR_MOVED errors - NFSv4 Fix a regression with OPEN EXCLUSIVE4 mode - Fix a memory leak when removing the SUNRPC module Bugfixes: - Fix a reference leak in _pnfs_return_layout" * tag 'nfs-for-4.10-4' of git://git.linux-nfs.org/projects/trondmy/linux-nfs: pNFS: Fix a reference leak in _pnfs_return_layout nfs: Fix "Don't increment lock sequence ID after NFS4ERR_MOVED" SUNRPC: cleanup ida information when removing sunrpc module NFSv4.0: always send mode in SETATTR after EXCLUSIVE4 nfs: Don't increment lock sequence ID after NFS4ERR_MOVED NFSv4.1: Fix a deadlock in layoutget
Diffstat (limited to 'sound/synth/emux/soundfont.c')