c
< 	cmd_buf = memdup_user(buf, count);
---
> 	size_t max_count = min_t(size_t, count, 16);
> 	cmd_buf = memdup_user(buf, max_count);
