Revision d050de607f062233cf5e75b2e8f40f20c4b04b91 authored by David S. Miller on 21 May 2014, 05:24:19 UTC, committed by David S. Miller on 21 May 2014, 05:24:19 UTC
Pablo Neira Ayuso says:

====================
Netfilter/nftables fixes for net

The following patchset contains nftables fixes for your net tree, they
are:

1) Fix crash when using the goto action in a rule by making sure that
   we always fall back on the base chain. Otherwise, this may try to
   access the counter memory area of non-base chains, which does not
   exists.

2) Fix several aspects of the rule tracing that are currently broken:

   * Reset rule number counter after goto/jump action, otherwise the
     tracing reports a bogus rule number.
   * Fix tracing of the goto action.
   * Fix bogus rule number counter after goto.
   * Fix missing return trace after finishing the walk through the
     non-base chain.
   * Fix missing trace when matching non-terminal rule.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>
2 parent s e1618d4 + 3b084e9
Raw File
wtm.h
#ifndef __SOUND_WTM_H
#define __SOUND_WTM_H

/* ID */
#define WTM_DEVICE_DESC		"{EGO SYS INC,WaveTerminal 192M},"
#define VT1724_SUBDEVICE_WTM	0x36495345	/* WT192M ver1.0 */

/*
 *chip addresses on I2C bus
 */

#define	AK4114_ADDR		0x20	/*S/PDIF receiver*/
#define STAC9460_I2C_ADDR	0x54	/* ADC*2 | DAC*6 */
#define STAC9460_2_I2C_ADDR	0x56	/* ADC|DAC *2 */


extern struct snd_ice1712_card_info snd_vt1724_wtm_cards[];

#endif /* __SOUND_WTM_H */

back to top