Staging
v0.8.1
https://github.com/torvalds/linux
Revision 4df46240a1312161e3c794f6ace50ef7eb5ff3d7 authored by Ingo Molnar on 27 August 2006, 08:23:56 UTC, committed by Linus Torvalds on 27 August 2006, 18:01:32 UTC
reiserfs seems to have another locking level layer for the i_mutex due to the
xattrs-are-a-directory thing.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
1 parent 36e8e57
Raw File
Tip revision: 4df46240a1312161e3c794f6ace50ef7eb5ff3d7 authored by Ingo Molnar on 27 August 2006, 08:23:56 UTC
[PATCH] lockdep: annotate reiserfs
Tip revision: 4df4624
c2p.h
/*
 *  Fast C2P (Chunky-to-Planar) Conversion
 *
 *  Copyright (C) 2003 Geert Uytterhoeven
 *
 *  This file is subject to the terms and conditions of the GNU General Public
 *  License. See the file COPYING in the main directory of this archive
 *  for more details.
 */

#include <linux/types.h>

extern void c2p(u8 *dst, const u8 *src, u32 dx, u32 dy, u32 width, u32 height,
		u32 dst_nextline, u32 dst_nextplane, u32 src_nextline,
		u32 bpp);

back to top