diff mbox

drm: fix writing to /sys/class/drm/*/status

Message ID E1Z0weI-000584-69@rmk-PC.arm.linux.org.uk (mailing list archive)
State New, archived
Headers show

Commit Message

Russell King June 5, 2015, 6:47 p.m. UTC
Writing to a file is supposed to return the number of bytes written.
Returning zero unfortunately causes bash to constantly spin trying
to write to the sysfs file, to such an extent that even ^c and ^z
have no effect.  The only way out of that is to kill the shell and
log back in.  This isn't nice behaviour.

Fix it by returning the number of characters written to sysfs files.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
---
 drivers/gpu/drm/drm_sysfs.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Chris Wilson June 5, 2015, 6:56 p.m. UTC | #1
On Fri, Jun 05, 2015 at 07:47:22PM +0100, Russell King wrote:
> Writing to a file is supposed to return the number of bytes written.
> Returning zero unfortunately causes bash to constantly spin trying
> to write to the sysfs file, to such an extent that even ^c and ^z
> have no effect.  The only way out of that is to kill the shell and
> log back in.  This isn't nice behaviour.
> 
> Fix it by returning the number of characters written to sysfs files.
> 
> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

Oops.

Fixes: c484f02d0f02fbbfc6decc945a69aae011041a27
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>

Dave, we need this for 4.1...
-Chris
diff mbox

Patch

diff --git a/drivers/gpu/drm/drm_sysfs.c b/drivers/gpu/drm/drm_sysfs.c
index ffc305fc2076..e7e7edeee9fb 100644
--- a/drivers/gpu/drm/drm_sysfs.c
+++ b/drivers/gpu/drm/drm_sysfs.c
@@ -181,6 +181,8 @@  static ssize_t status_store(struct device *device,
 
 	old_status = connector->status;
 
+	ret = count;
+
 	if (sysfs_streq(buf, "detect")) {
 		connector->force = 0;
 		connector->status = connector->funcs->detect(connector, true);
@@ -193,7 +195,7 @@  static ssize_t status_store(struct device *device,
 	} else
 		ret = -EINVAL;
 
-	if (ret == 0 && connector->force) {
+	if (ret >= 0 && connector->force) {
 		if (connector->force == DRM_FORCE_ON ||
 		    connector->force == DRM_FORCE_ON_DIGITAL)
 			connector->status = connector_status_connected;