#ifndef WM8766_H_INCLUDED #define WM8766_H_INCLUDED #define WM8766_LDA1 0x00 #define WM8766_RDA1 0x01 #define WM8766_DAC_CTRL 0x02 #define WM8766_INT_CTRL 0x03 #define WM8766_LDA2 0x04 #define WM8766_RDA2 0x05 #define WM8766_LDA3 0x06 #define WM8766_RDA3 0x07 #define WM8766_MASTDA 0x08 #define WM8766_DAC_CTRL2 0x09 #define WM8766_DAC_CTRL3 0x0a #define WM8766_MUTE1 0x0c #define WM8766_MUTE2 0x0f #define WM8766_RESET 0x1f /* LDAx/RDAx/MASTDA */ #define WM8766_ATT_MASK 0x0ff #define WM8766_UPDATE 0x100 /* DAC_CTRL */ #define WM8766_MUTEALL 0x001 #define WM8766_DEEMPALL 0x002 #define WM8766_PWDN 0x004 #define WM8766_ATC 0x008 #define WM8766_IZD 0x010 #define WM8766_PL_LEFT_MASK 0x060 #define WM8766_PL_LEFT_MUTE 0x000 #define WM8766_PL_LEFT_LEFT 0x020 #define WM8766_PL_LEFT_RIGHT 0x040 #define WM8766_PL_LEFT_LRMIX 0x060 #define WM8766_PL_RIGHT_MASK 0x180 #define WM8766_PL_RIGHT_MUTE 0x000 #define WM8766_PL_RIGHT_LEFT 0x080 #define WM8766_PL_RIGHT_RIGHT 0x100 #define WM8766_PL_RIGHT_LRMIX 0x180 /* INT_CTRL */ #define WM8766_FMT_MASK 0x003 #define WM8766_FMT_RJUST 0x000 #define WM8766_FMT_LJUST 0x001 #define WM8766_FMT_I2S 0x002 #define WM8766_FMT_DSP 0x003 #define WM8766_LRP 0x004 #define WM8766_BCP 0x008 #define WM8766_IWL_MASK 0x030 #define WM8766_IWL_16 0x000 #define WM8766_IWL_20 0x010 #define WM8766_IWL_24 0x020 #define WM8766_IWL_32 0x030 #define WM8766_PHASE_MASK 0x1c0 /* DAC_CTRL2 */ #define WM8766_ZCD 0x001 #define WM8766_DZFM_MASK 0x006 #define WM8766_DMUTE_MASK 0x038 #define WM8766_DEEMP_MASK 0x1c0 /* DAC_CTRL3 */ #define WM8766_DACPD_MASK 0x00e #define WM8766_PWRDNALL 0x010 #define WM8766_MS 0x020 #define WM8766_RATE_MASK 0x1c0 #define WM8766_RATE_128 0x000 #define WM8766_RATE_192 0x040 #define WM8766_RATE_256 0x080 #define WM8766_RATE_384 0x0c0 #define WM8766_RATE_512 0x100 #define WM8766_RATE_768 0x140 /* MUTE1 */ #define WM8766_MPD1 0x040 /* MUTE2 */ #define WM8766_MPD2 0x020 #endif cgi/linux/net-next.git/commit/tools/perf/pmu-events/arch/x86/westmereep-dp/cache.json?id=8661a631e1040e71e938aab4b1ccbcbd46c4834f'>commitdiff
path: root/tools/perf/pmu-events/arch/x86/westmereep-dp/cache.json
pt>
AgeCommit message (Expand)AuthorFilesLines
authorAndrei Vagin <avagin@openvz.org>2017-01-04 19:28:14 -0800
committerEric W. Biederman <ebiederm@xmission.com>2017-01-10 13:34:56 +1300
commitadd7c65ca426b7a37184dd3d2172394e23d585d6 (patch)
tree28b08b519540041b06ed0ab0b1c005076b932e8e /net/rose
parent75422726b0f717d67db3283c2eb5bc14fa2619c5 (diff)
pid: fix lockdep deadlock warning due to ucount_lock
========================================================= [ INFO: possible irq lock inversion dependency detected ] 4.10.0-rc2-00024-g4aecec9-dirty #118 Tainted: G W --------------------------------------------------------- swapper/1/0 just changed the state of lock: (&(&sighand->siglock)->rlock){-.....}, at: [<ffffffffbd0a1bc6>] __lock_task_sighand+0xb6/0x2c0 but this lock took another, HARDIRQ-unsafe lock in the past: (ucounts_lock){+.+...} and interrupts could create inverse lock ordering between them. other info that might help us debug this: Chain exists of: &(&sighand->siglock)->rlock --> &(&tty->ctrl_lock)->rlock --> ucounts_lock Possible interrupt unsafe locking scenario: CPU0 CPU1 ---- ---- lock(ucounts_lock); local_irq_disable(); lock(&(&sighand->siglock)->rlock); lock(&(&tty->ctrl_lock)->rlock); <Interrupt> lock(&(&sighand->siglock)->rlock); *** DEADLOCK *** This patch removes a dependency between rlock and ucount_lock. Fixes: f333c700c610 ("pidns: Add a limit on the number of pid namespaces") Cc: stable@vger.kernel.org Signed-off-by: Andrei Vagin <avagin@openvz.org> Acked-by: Al Viro <viro@ZenIV.linux.org.uk> Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Diffstat (limited to 'net/rose')