On 10/23/2013 07:51 PM, Thierry Reding wrote:
On Wed, Oct 23, 2013 at 05:05:32PM +0100, David Woodhouse wrote:
quoted
On Wed, 2013-10-23 at 17:06 +0200, Thierry Reding wrote:
quoted
+ /* check if binding is experimental */
+ if (dev != device || drv != driver) {
+ pr_warn("of: device %s (%s) uses an experimental binding\n",
+ np->name, np->full_name);
+
In the discussions earlier I think we decided that this should set a
taint flag too.
A taint flag seems somewhat drastic. It's not like using an experimental
binding should have an influence on the stability of the running kernel.
I always thought that taint flags were supposed to flag conditions where
code of unknown origin or code known to be broken was being executed
because they may destabilize the running kernel.
The worst that should happen if you run an experimental binding is that
some part of the system will just not come up.
IIRC, the purpose of the taint flag was to make it clear that the kernel
or DT was not expected to function in the future, so don't be surpised
if you upgrade it, and it stops working, without you taking explicit
action, such as revising your DT to match the new kernel or vice-versa.