https://bugzilla.kernel.org/show_bug.cgi?id=35282 --- Comment #4 from Fabio Coatti <fabio.coatti@xxxxxxxxx> 2011-05-21 21:40:17 --- Ok, just tried (I've had to apply the patch manually, as my include/linux/blkdev.h is slightly different and patch complained a bit, see below). Now it works, the kernel is able to boot correctly and I'm writing from 2.6.38.6. Many thanks for your time! PS: actual blkdev.h on my machine: static inline void queue_flag_clear(unsigned int flag, struct request_queue *q) { WARN_ON_ONCE(!queue_is_locked(q)); __clear_bit(flag, &q->queue_flags); (473)} #define blk_queue_plugged(q) test_bit(QUEUE_FLAG_PLUGGED, &(q)->queue_flags) #define blk_queue_tagged(q) test_bit(QUEUE_FLAG_QUEUED, &(q)->queue_flags) #define blk_queue_stopped(q) \ (test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags) || \ test_bit(QUEUE_FLAG_DEAD, &(q)->queue_flags)) #define blk_queue_nomerges(q) test_bit(QUEUE_FLAG_NOMERGES, &(q)->queue_flags) #define blk_queue_noxmerges(q) \ -- Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html