From: kaku <fk...@us...> - 2006-03-09 00:25:12
|
Update of /cvsroot/mkdump/minik/3.0/2.6/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29794 Modified Files: minik_dump.c Log Message: Fixed a bit typo. Index: minik_dump.c =================================================================== RCS file: /cvsroot/mkdump/minik/3.0/2.6/kernel/minik_dump.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** minik_dump.c 7 Mar 2006 05:14:30 -0000 1.2 --- minik_dump.c 9 Mar 2006 00:25:05 -0000 1.3 *************** *** 130,134 **** static struct io_buff io_buff_array[MINI_DUMP_BUFF_NUM]; static struct io_buff *io_buff_head; ! static io_buff_lock = SPIN_LOCK_UNLOCKED; /* DEFINE_SPINLOCK can be used >= 2.6.11 */ static struct block_device *bdev; --- 130,134 ---- static struct io_buff io_buff_array[MINI_DUMP_BUFF_NUM]; static struct io_buff *io_buff_head; ! static spinlock_t io_buff_lock = SPIN_LOCK_UNLOCKED; /* DEFINE_SPINLOCK can be used >= 2.6.11 */ static struct block_device *bdev; |