<div dir="ltr">This is interesting. When I teach RTEMS classes, I always run this application and the last time, this BSP was the one used. It was a rare case of all Zynq users with no LEON users. :)<div><br></div><div>What version of RTEMS and how did you configure it? </div><div><br></div><div>This sounds like it may need a ticket since it likely needs to be included on the 5 <a href="http://branch.pa">branch.pa</a></div><div><br></div><div>I don't doubt it crashed. Just want details so we can apply the patch properly. </div><div><br></div><div>--joel</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Oct 9, 2020 at 8:07 AM Frank Kuehndel <<a href="mailto:frank.kuehndel@embedded-brains.de">frank.kuehndel@embedded-brains.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">When I use the 'shell' from the fileio sample with the command below:<br>
<br>
   env QEMU_AUDIO_DRV="none" \<br>
   qemu-system-arm -no-reboot -net none -nographic -M realview-pbx-a9 -m 256M \<br>
   -kernel build/arm/realview_pbx_a9_qemu/testsuites/samples/fileio.exe<br>
<br>
The executable crashes with an "BLOWN STACK!!!" as soon as I try to login<br>
as 'root' with password. (The logins without password work fine.) Increasing<br>
the stack size of the affected thread a bit solves the issue. Hence,<br>
I suggest this patch.<br>
---<br>
 testsuites/samples/fileio/init.c | 2 +-<br>
 1 file changed, 1 insertion(+), 1 deletion(-)<br>
<br>
diff --git a/testsuites/samples/fileio/init.c b/testsuites/samples/fileio/init.c<br>
index 86b34b99dd..c552d33613 100644<br>
--- a/testsuites/samples/fileio/init.c<br>
+++ b/testsuites/samples/fileio/init.c<br>
@@ -630,7 +630,7 @@ static void fileio_start_shell(void)<br>
   printf(" =========================\n");<br>
   rtems_shell_init(<br>
     "SHLL",                          /* task_name */<br>
-    RTEMS_MINIMUM_STACK_SIZE * 4,    /* task_stacksize */<br>
+    RTEMS_MINIMUM_STACK_SIZE * 5,    /* task_stacksize */<br>
     100,                             /* task_priority */<br>
     "/dev/foobar",                   /* devname */<br>
     /* device is currently ignored by the shell if it is not a pty */<br>
-- <br>
2.26.2<br>
<br>
_______________________________________________<br>
devel mailing list<br>
<a href="mailto:devel@rtems.org" target="_blank">devel@rtems.org</a><br>
<a href="http://lists.rtems.org/mailman/listinfo/devel" rel="noreferrer" target="_blank">http://lists.rtems.org/mailman/listinfo/devel</a><br>
</blockquote></div>