Comment 23 for bug 644898

Revision history for this message
Nikita Tsukanov (keks9n) wrote :

>>
The ioctl ops in struct file_operations is deprecated on 2.6.36.
You need to convert it to unlocked_ioctl ops.

If you are lucky, just changing the second argument (struct file*) and
the return type of the old ioctl function from int to long might make
things working (supposing no BKL is needed).

(http://web.archiveorange.com/archive/v/u1yF7zbcV1zFXbC3gf6U)

Will try to patch it.