diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2015-05-04 14:00:13 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2015-05-04 14:05:27 +0100 |
commit | 5054e2271210a52bf88b0f12c35d687ce9e8210d (patch) | |
tree | 6b5cb40fc34015e46e0a642962a999f076404064 /src/intel_options.c | |
parent | b400dd22c28a08d7644b4ede076be9d8c2b8ca9d (diff) |
Remove the driver option to delete connectors on unplugging
With a MST topology change, we can find outputs may disappear. We offered
a choice as to whether to simply disable them or completely remove them
from the listing of available outputs. However, clients never expected
that their operation on any output could trigger a BadID XError (or that
there is anyway to prevent race conditions). As such an option was made to
disable by default, but allow testing complete removal. Now the RandR
protocol has been clarified such that XID assigned to outputs are now
permanent, as such the option breaks the spec, so drop it.
See randrproto commit 895ee5264524c7c239ee4ef5e39c4e295323fb51
Author: Dave Airlie <airlied@redhat.com>
Date: Wed Apr 22 10:58:18 2015 +1000
randrproto: clarify output XID lifetimes.
This just makes a note that randr won't make outputs disappear
dynamically.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/intel_options.c')
-rw-r--r-- | src/intel_options.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/intel_options.c b/src/intel_options.c index 034b591f..465f7392 100644 --- a/src/intel_options.c +++ b/src/intel_options.c @@ -25,7 +25,6 @@ const OptionInfoRec intel_options[] = { {OPTION_PREFER_OVERLAY, "XvPreferOverlay", OPTV_BOOLEAN, {0}, 0}, {OPTION_HOTPLUG, "HotPlug", OPTV_BOOLEAN, {0}, 1}, {OPTION_REPROBE, "ReprobeOutputs", OPTV_BOOLEAN, {0}, 0}, - {OPTION_DELETE_DP12, "DeleteUnusedDP12Displays", OPTV_BOOLEAN, {0}, 0}, #ifdef INTEL_XVMC {OPTION_XVMC, "XvMC", OPTV_BOOLEAN, {0}, 1}, #endif |