We need to multiplex data from one (USB) serial device to multiple independent serial devices.
What I've found, is the module fanout, this addresses the multiplexing part of my problem.
Now I search for an easy, probably ready to use, way to copy the data from the serial USB device to the fanout device directly in the kernel space.
Sure, I'am able to simply cat x > y
in userspace, but It may be more efficient to do this in kernel space.