If the app needs to exchange data with the underlying driver via IOCTL, I know that the app and the driver can define a common struct to hold data and pass it bidirectionally. However, I recently noticed that some app/driver doesn't use this paradigm. Instead, they pass a string represnetation of the data and let the driver parse the string to get each fileds of the data.
I can feel that this is not a good choice, e.g. the string parser may slow the driver, which should be fast in kernel.
Can anyone compare these two approaches and give the pros and cons? Thanks.