To who it may concern, authoring openSuse and Suse product Live DVD's
using CLOOP,
I tried using the factory cloop against the latest linux kernel,
and it errors on now what is an unknown struct member   i_blksize,
the apparent fix is:

compressed_loop.c   line:383 (there abouts)

--        clo->underlying_blksize = inode->i_blksize;
++        clo->underlying_blksize = (1 << inode->i_blkbits);

as linux kernel has dropped i_blksize out for the struct, and the
replacement
(1 << inode->i_blkbits)
is what I found in use in the kernel when inode->i_blksize was in use
before.

-tl



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to