Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Doc: ioctl: Fix typos in Documentation/ioctl

This patch fix some spelling typos in Documentation/ioctl.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>

authored by

Masanari Iida and committed by
Jonathan Corbet
d53a7b8f 547d4c10

+3 -3
+3 -3
Documentation/ioctl/botching-up-ioctls.txt
··· 122 122 ---------------------------- 123 123 124 124 GPUs do most everything asynchronously, so we have a need to time operations and 125 - wait for oustanding ones. This is really tricky business; at the moment none of 125 + wait for outstanding ones. This is really tricky business; at the moment none of 126 126 the ioctls supported by the drm/i915 get this fully right, which means there's 127 127 still tons more lessons to learn here. 128 128 ··· 146 146 ioctl restartable relative timeouts tend to be too coarse and can 147 147 indefinitely extend your wait time due to rounding on each restart. 148 148 Especially if your reference clock is something really slow like the display 149 - frame counter. With a spec laywer hat on this isn't a bug since timeouts can 149 + frame counter. With a spec lawyer hat on this isn't a bug since timeouts can 150 150 always be extended - but users will surely hate you if their neat animations 151 151 starts to stutter due to this. 152 152 ··· 176 176 177 177 * Ensure that you have sufficient insulation between different clients. By 178 178 default pick a private per-fd namespace which forces any sharing to be done 179 - explictly. Only go with a more global per-device namespace if the objects 179 + explicitly. Only go with a more global per-device namespace if the objects 180 180 are truly device-unique. One counterexample in the drm modeset interfaces is 181 181 that the per-device modeset objects like connectors share a namespace with 182 182 framebuffer objects, which mostly are not shared at all. A separate