Subversion Repositories Kolibri OS

Rev

Rev 6336 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6336 Rev 6936
Line 64... Line 64...
64
 */
64
 */
65
struct lock_class {
65
struct lock_class {
66
	/*
66
	/*
67
	 * class-hash:
67
	 * class-hash:
68
	 */
68
	 */
69
	struct list_head		hash_entry;
69
	struct hlist_node		hash_entry;
Line 70... Line 70...
70
 
70
 
71
	/*
71
	/*
72
	 * global list of all lock-classes:
72
	 * global list of all lock-classes:
73
	 */
73
	 */
Line 197... Line 197...
197
 */
197
 */
198
struct lock_chain {
198
struct lock_chain {
199
	u8				irq_context;
199
	u8				irq_context;
200
	u8				depth;
200
	u8				depth;
201
	u16				base;
201
	u16				base;
202
	struct list_head		entry;
202
	struct hlist_node		entry;
203
	u64				chain_key;
203
	u64				chain_key;
204
};
204
};
Line 205... Line 205...
205
 
205
 
206
#define MAX_LOCKDEP_KEYS_BITS		13
206
#define MAX_LOCKDEP_KEYS_BITS		13