[REGRESSION stable] "of: fix handling of '/' in options for of_find_node_by_path()" breaks stdout-path

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




Hi All,

While updating my local working tree to 4.0-rc4 this morning I noticed that I no longer
got any console (neither video output not serial console) on an Allwinner A20 ARM
board.

This is caused by:
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/drivers/of?id=106937e8ccdcf0f4b95fbf0fe9abd42766cade33

Reverting this commit fixes the serial console being gone for me.

After this there still is an issue that tty0 no longer is seen as console, where it
used to be properly used as console in 3.19, I'll investigate that further and send
a separate mail about this.

Greg, this commit has a: "Cc: <stable@xxxxxxxxxxxxxxx> # 3.19" please do not apply
this commit to stable!

u-boot sets stdout-path to this value on the board in question:
"/soc@01c00000/serial@01c28000:115200"

Looking at the first hunk of the patch in question, the problem is obvious:

@@ -714,16 +714,17 @@ static struct device_node *__of_find_node_by_path(struct device_node *parent,
 const char *path)
 {
  struct device_node *child;
- int len = strchrnul(path, '/') - path;
- int term;
+ int len;
+ const char *end;
+ end = strchr(path, ':');
+ if (!end)
+ end = strchrnul(path, '/');
+
+ len = end - path;
  if (!len)
   return NULL;
- term = strchrnul(path, ':') - path;
- if (term < len)
- len = term;
-
 __for_each_child_of_node(parent, child) {
  const char *name = strrchr(child->full_name, '/');
  if (WARN(!name, "malformed device_node %s\n", child->full_name))

The new code to determine len will match (when starting at root) the name of
all child nodes against: "soc@01c00000/serial@01c28000" as it checks for
the ":" first and then uses everything before it. Where as the old code
would match against: "soc@01c00000" which is the correct thing to do.

The best fix I can come up with is to check for both ":" and "/" and use
the earlier one as end to calculate the length. I've not coded this out /
tested this due to -ENOTIME. Note that I've also not audited the rest of
the patch for similar issues.

I will happily test any patches to fix this.

Regards,

Hans
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Device Tree Compilter]     [Device Tree Spec]     [Linux Driver Backports]     [Video for Linux]     [Linux USB Devel]     [Linux PCI Devel]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [XFree86]     [Yosemite Backpacking]
  Powered by Linux