Bug #522
openDrv-env-gen - generated Incorrect functions sequence.
0%
Description
Envgen generates probe function call after read/write driver operations for driver: ldv-tests/regr-tests/test-sets/general/drivers/kbdrivers/0032-2.6.31.6/test-0032-2.6.31.6-verdict-unsafe-drivers--usb--class--usblp.c/usblp.c.
Right sequence:
1. usblp_probe
2. file operations from next structure:
static const struct file_operations usblp_fops = {
.owner = THIS_MODULE,
.read = usblp_read,
.write = usblp_write,
.poll = usblp_poll,
.unlocked_ioctl = usblp_ioctl,
.compat_ioctl = usblp_ioctl,
.open = usblp_open,
.release = usblp_release,
};
3. usblp_suspend
4. usblp_resume
5. usblp_disconnect
Files
Updated by Alexey Khoroshilov about 14 years ago
А
3. usblp_suspend
4. usblp_resume
может перемешиваться с 2.?
Updated by Pavel Shved almost 14 years ago
- Assignee changed from Alexandr Strakh to Vadim Mutilin
Is this model correct now? Did infinite_stateful solve the problem?
Reassigning Alexander's bugs, due to his transfer to the other project.
Updated by Ilja Zakharov about 13 years ago
- Assignee changed from Vadim Mutilin to Ilja Zakharov