Reputation: 79
Which one is faster in terms of Performance used for benchmark I/O (RAW) Read/Write Vs ioctl in linux? why and How?
Regards, Srinivasa Raghavan.
Upvotes: 1
Views: 1548
Reputation: 3768
I assume that read/write
syscalls are faster just because of fact that ioctl
should analyze request code first and then call the same function as read/write
syscalls do.
Upvotes: 2