The raw llseek syscall is called _llseek from userland, so fix the naming of it for metag to allow the stat test to pass.
* linux/metag/syscallent.h: rename llseek syscall to _llseek. Signed-off-by: James Hogan <[email protected]> --- linux/metag/syscallent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/metag/syscallent.h b/linux/metag/syscallent.h index 34167b3..4a1a532 100644 --- a/linux/metag/syscallent.h +++ b/linux/metag/syscallent.h @@ -60,7 +60,7 @@ { 2, TD, sys_pipe2, "pipe2" }, /* 59 */ { 4, TF, sys_quotactl, "quotactl" }, /* 60 */ { 3, TD, sys_getdents64, "getdents64" }, /* 61 */ - { 5, TD, sys_llseek, "llseek" }, /* 62 */ + { 5, TD, sys_llseek, "_llseek" }, /* 62 */ { 3, TD, sys_read, "read" }, /* 63 */ { 3, TD, sys_write, "write" }, /* 64 */ { 3, TD, sys_readv, "readv" }, /* 65 */ -- 1.8.1.2 ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. This 200-page book is written by three acclaimed leaders in the field. The early access version is available now. Download your free book today! http://p.sf.net/sfu/neotech_d2d_may _______________________________________________ Strace-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/strace-devel
