On Mon, Feb 03, 2025 at 06:01:57PM +0100, Peter Seiderer wrote:
Enable command writing without trailing '\n':
the good case
$ echo "reset" > /proc/net/pktgen/pgctrl
the bad case (before the patch)
$ echo -n "reset" > /proc/net/pktgen/pgctrl -bash: echo: write error: Invalid argument
with patch applied
$ echo -n "reset" > /proc/net/pktgen/pgctrl
Signed-off-by: Peter Seiderer ps.report@gmx.net
Reviewed-by: Simon Horman horms@kernel.org