hello sir,
I wanted to ask that how can we use Lables for calling a predefined kernel function from another function.
For .eg..
ssize_t scull_write()
{
write: xyz;
}
ssize scull_read()
{
goto write;
}
this calling of the write function is not working.
Could you please tell me that how can i get back to the write func from read func without calling it externally.
Thank you