What will happen if I open one linux driver before load completed?

Viewed 26

For example, when the driver __init function is executing, the device node file(/dev/mydriver) is created, but the __init function still not returned. If I open this device node file(/dev/mydriver) this time, what will happen?

1 Answers

finally, after test, the answer is "open failed"

Related