* Re: linux-next: Tree for Jun 21 [ BROKEN ipc/ipc-msg ]
@ 2013-06-21 19:34 Sedat Dilek
2013-06-21 22:07 ` Davidlohr Bueso
2013-06-25 16:10 ` Sedat Dilek
0 siblings, 2 replies; 33+ messages in thread
From: Sedat Dilek @ 2013-06-21 19:34 UTC (permalink / raw)
To: Davidlohr Bueso
Cc: linux-next, linux-kernel, Stephen Rothwell, Andrew Morton,
linux-mm, Andi Kleen, Rik van Riel, Manfred Spraul
[-- Attachment #1: Type: text/plain, Size: 2842 bytes --]
On Fri, Jun 21, 2013 at 10:17 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> Hi all,
>
> Happy solstice!
>
> Changes since 20130620:
>
> Dropped tree: mailbox (really bad merge conflicts with the arm-soc tree)
>
> The net-next tree gained a conflict against the net tree.
>
> The leds tree still had its build failure, so I used the version from
> next-20130607.
>
> The arm-soc tree gained conflicts against the tip, net-next, mfd and
> mailbox trees.
>
> The staging tree still had its build failure for which I disabled some
> code.
>
> The akpm tree lost a few patches that turned up elsewhere and gained
> conflicts against the ftrace and arm-soc trees.
>
> ----------------------------------------------------------------------------
>
[ CC IPC folks ]
Building via 'make deb-pkg' with fakeroot fails here like this:
make: *** [deb-pkg] Terminated
/usr/bin/fakeroot: line 181: 2386 Terminated
FAKEROOTKEY=$FAKEROOTKEY LD_LIBRARY_PATH="$PATHS" LD_PRELOAD="$LIB"
"$@"
semop(1): encountered an error: Identifier removed
semop(2): encountered an error: Invalid argument
semop(1): encountered an error: Identifier removed
semop(1): encountered an error: Identifier removed
semop(1): encountered an error: Invalid argument
semop(1): encountered an error: Invalid argument
semop(1): encountered an error: Invalid argument
The issue is present since next-20130606!
LAST KNOWN GOOD: next-20130605
FIRST KNOWN BAD: next-20130606
KNOWN GOOD: next-20130604
KNOWN BAD: next-20130607 || next-20130619 || next-20130620 || next-20130621
git-bisect says CULPRIT commit is...
"ipc,msg: shorten critical region in msgrcv"
NOTE: msg_lock_(check_) routines have to be restored (one more revert needed)!
Reverting both (below) commits makes fakeroot build via 'make dep-pkg" again.
I have tested the revert-patches with next-20130606 and next-20130621
(see file-attachments).
My build-script is attached!
Can someone of the IPC folks look at that?
Thanks!
- Sedat -
P.S.: Commit-IDs listed below.
[ next-20130606 ]
http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130606
"ipc: remove unused functions"
http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=8793fdfb0d0a6ed5916767e29a15d3eb56e04e79
"ipc,msg: shorten critical region in msgrcv"
http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=c0ff93322847a54f74a5450032c4df64c17fdaed
[ next-20130621 ]
http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130621
"ipc: remove unused functions"
http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=941ce57c81dcceadf55265616ee1e8bef18b0ad3
"ipc,msg: shorten critical region in msgrcv"
http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=62190df4081ee8504e3611d45edb40450cb408ac
[-- Attachment #2: build_linux-next.sh --]
[-- Type: application/x-sh, Size: 3849 bytes --]
[-- Attachment #3: 3.10.0-rc4-next20130606-3-iniza-small.patch --]
[-- Type: application/octet-stream, Size: 6338 bytes --]
Sedat Dilek (7):
kbuild: deb-pkg: Try to determine distribution
kbuild: deb-pkg: Bump year in debian/copyright file
kbuild: deb-pkg: Update git repository URL in debian/copyright file
Merge tag 'next-20130606' of git://git.kernel.org/.../next/linux-next into Linux-Next-v20130606
Merge branch 'deb-pkg-3.10-fixes' into 3.10.0-rc4-next20130606-1-iniza-small
Revert "ipc,msg: shorten critical region in msgrcv"
Merge branch 'revert-ipc-msg-next20130606-c0ff93322847' into 3.10.0-rc4-next20130606-3-iniza-small
ipc/msg.c | 57 +++++++++++++++++++++---------------------------
scripts/package/builddeb | 19 +++++++++++++---
2 files changed, 41 insertions(+), 35 deletions(-)
diff --git a/ipc/msg.c b/ipc/msg.c
index 3b7b4b5..75ec881 100644
--- a/ipc/msg.c
+++ b/ipc/msg.c
@@ -862,19 +862,21 @@ static struct msg_msg *find_msg(struct msg_queue *msq, long *msgtyp, int mode)
return ERR_PTR(-EAGAIN);
}
-long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgflg,
+
+long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp,
+ int msgflg,
long (*msg_handler)(void __user *, struct msg_msg *, size_t))
{
- int mode;
struct msg_queue *msq;
+ struct msg_msg *msg;
+ int mode;
struct ipc_namespace *ns;
- struct msg_msg *msg, *copy = NULL;
+ struct msg_msg *copy = NULL;
ns = current->nsproxy->ipc_ns;
if (msqid < 0 || (long) bufsz < 0)
return -EINVAL;
-
if (msgflg & MSG_COPY) {
copy = prepare_copy(buf, min_t(size_t, bufsz, ns->msg_ctlmax));
if (IS_ERR(copy))
@@ -882,10 +884,8 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
}
mode = convert_mode(&msgtyp, msgflg);
- rcu_read_lock();
- msq = msq_obtain_object_check(ns, msqid);
+ msq = msg_lock_check(ns, msqid);
if (IS_ERR(msq)) {
- rcu_read_unlock();
free_copy(copy);
return PTR_ERR(msq);
}
@@ -895,9 +895,10 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
msg = ERR_PTR(-EACCES);
if (ipcperms(ns, &msq->q_perm, S_IRUGO))
- goto out_unlock1;
+ goto out_unlock;
msg = find_msg(msq, &msgtyp, mode);
+
if (!IS_ERR(msg)) {
/*
* Found a suitable message.
@@ -905,7 +906,7 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
*/
if ((bufsz < msg->m_ts) && !(msgflg & MSG_NOERROR)) {
msg = ERR_PTR(-E2BIG);
- goto out_unlock1;
+ goto out_unlock;
}
/*
* If we are copying, then do not unlink message and do
@@ -913,10 +914,8 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
*/
if (msgflg & MSG_COPY) {
msg = copy_msg(msg, copy);
- goto out_unlock1;
+ goto out_unlock;
}
-
- ipc_lock_object(&msq->q_perm);
list_del(&msg->m_list);
msq->q_qnum--;
msq->q_rtime = get_seconds();
@@ -925,17 +924,14 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
atomic_sub(msg->m_ts, &ns->msg_bytes);
atomic_dec(&ns->msg_hdrs);
ss_wakeup(&msq->q_senders, 0);
-
- goto out_unlock0;
+ msg_unlock(msq);
+ break;
}
-
/* No message waiting. Wait for a message */
if (msgflg & IPC_NOWAIT) {
msg = ERR_PTR(-ENOMSG);
- goto out_unlock1;
+ goto out_unlock;
}
-
- ipc_lock_object(&msq->q_perm);
list_add_tail(&msr_d.r_list, &msq->q_receivers);
msr_d.r_tsk = current;
msr_d.r_msgtype = msgtyp;
@@ -946,9 +942,8 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
msr_d.r_maxsize = bufsz;
msr_d.r_msg = ERR_PTR(-EAGAIN);
current->state = TASK_INTERRUPTIBLE;
+ msg_unlock(msq);
- ipc_unlock_object(&msq->q_perm);
- rcu_read_unlock();
schedule();
/* Lockless receive, part 1:
@@ -978,34 +973,32 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
* If there is a message or an error then accept it without
* locking.
*/
- if (msg != ERR_PTR(-EAGAIN))
- goto out_unlock1;
+ if (msg != ERR_PTR(-EAGAIN)) {
+ rcu_read_unlock();
+ break;
+ }
/* Lockless receive, part 3:
* Acquire the queue spinlock.
*/
- ipc_lock_object(&msq->q_perm);
+ ipc_lock_by_ptr(&msq->q_perm);
+ rcu_read_unlock();
/* Lockless receive, part 4:
* Repeat test after acquiring the spinlock.
*/
msg = (struct msg_msg*)msr_d.r_msg;
if (msg != ERR_PTR(-EAGAIN))
- goto out_unlock0;
+ goto out_unlock;
list_del(&msr_d.r_list);
if (signal_pending(current)) {
msg = ERR_PTR(-ERESTARTNOHAND);
- goto out_unlock0;
+out_unlock:
+ msg_unlock(msq);
+ break;
}
-
- ipc_unlock_object(&msq->q_perm);
}
-
-out_unlock0:
- ipc_unlock_object(&msq->q_perm);
-out_unlock1:
- rcu_read_unlock();
if (IS_ERR(msg)) {
free_copy(copy);
return PTR_ERR(msg);
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index acb8650..7d7c9d8 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -172,9 +172,22 @@ else
fi
maintainer="$name <$email>"
+# Try to determine distribution
+if [ -e $(which lsb_release) ]; then
+ codename=$(lsb_release --codename --short)
+ if [ "$codename" != "" ]; then
+ distribution=$codename
+ else
+ distribution="UNRELEASED"
+ echo "WARNING: The distribution could NOT be determined!"
+ fi
+else
+ echo "HINT: Install lsb_release binary, this helps to identify your distribution!"
+fi
+
# Generate a simple changelog template
cat <<EOF > debian/changelog
-linux-upstream ($packageversion) unstable; urgency=low
+linux-upstream ($packageversion) $distribution; urgency=low
* Custom built Linux kernel.
@@ -188,10 +201,10 @@ This is a packacked upstream version of the Linux kernel.
The sources may be found at most Linux ftp sites, including:
ftp://ftp.kernel.org/pub/linux/kernel
-Copyright: 1991 - 2009 Linus Torvalds and others.
+Copyright: 1991 - 2013 Linus Torvalds and others.
The git repository for mainline kernel development is at:
-git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
+git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
[-- Attachment #4: 3.10.0-rc6-next20130621-2-iniza-small.patch --]
[-- Type: application/octet-stream, Size: 7638 bytes --]
Sedat Dilek (8):
kbuild: deb-pkg: Try to determine distribution
kbuild: deb-pkg: Bump year in debian/copyright file
kbuild: deb-pkg: Update git repository URL in debian/copyright file
Merge tag 'next-20130621' of git://git.kernel.org/.../next/linux-next into Linux-Next-v20130621
Merge branch 'deb-pkg-3.10-fixes' into 3.10.0-rc6-next20130621-1-iniza-small
Revert "ipc: remove unused functions"
Revert "ipc,msg: shorten critical region in msgrcv"
Merge branch 'revert-ipc-next20130621-941ce57c81dc-62190df4081e' into 3.10.0-rc6-next20130621-2-iniza-small
ipc/msg.c | 82 +++++++++++++++++++++++++++++-------------------
ipc/sem.c | 1 +
scripts/package/builddeb | 19 +++++++++--
3 files changed, 67 insertions(+), 35 deletions(-)
diff --git a/ipc/msg.c b/ipc/msg.c
index a1cf70e..f2a1a8f 100644
--- a/ipc/msg.c
+++ b/ipc/msg.c
@@ -141,6 +141,31 @@ void __init msg_init(void)
IPC_MSG_IDS, sysvipc_msg_proc_show);
}
+/*
+ * msg_lock_(check_) routines are called in the paths where the rw_mutex
+ * is not held.
+ */
+static inline struct msg_queue *msg_lock(struct ipc_namespace *ns, int id)
+{
+ struct kern_ipc_perm *ipcp = ipc_lock(&msg_ids(ns), id);
+
+ if (IS_ERR(ipcp))
+ return (struct msg_queue *)ipcp;
+
+ return container_of(ipcp, struct msg_queue, q_perm);
+}
+
+static inline struct msg_queue *msg_lock_check(struct ipc_namespace *ns,
+ int id)
+{
+ struct kern_ipc_perm *ipcp = ipc_lock_check(&msg_ids(ns), id);
+
+ if (IS_ERR(ipcp))
+ return (struct msg_queue *)ipcp;
+
+ return container_of(ipcp, struct msg_queue, q_perm);
+}
+
static inline struct msg_queue *msq_obtain_object(struct ipc_namespace *ns, int id)
{
struct kern_ipc_perm *ipcp = ipc_obtain_object(&msg_ids(ns), id);
@@ -860,19 +885,21 @@ static struct msg_msg *find_msg(struct msg_queue *msq, long *msgtyp, int mode)
return ERR_PTR(-EAGAIN);
}
-long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgflg,
+
+long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp,
+ int msgflg,
long (*msg_handler)(void __user *, struct msg_msg *, size_t))
{
- int mode;
struct msg_queue *msq;
+ struct msg_msg *msg;
+ int mode;
struct ipc_namespace *ns;
- struct msg_msg *msg, *copy = NULL;
+ struct msg_msg *copy = NULL;
ns = current->nsproxy->ipc_ns;
if (msqid < 0 || (long) bufsz < 0)
return -EINVAL;
-
if (msgflg & MSG_COPY) {
copy = prepare_copy(buf, min_t(size_t, bufsz, ns->msg_ctlmax));
if (IS_ERR(copy))
@@ -880,10 +907,8 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
}
mode = convert_mode(&msgtyp, msgflg);
- rcu_read_lock();
- msq = msq_obtain_object_check(ns, msqid);
+ msq = msg_lock_check(ns, msqid);
if (IS_ERR(msq)) {
- rcu_read_unlock();
free_copy(copy);
return PTR_ERR(msq);
}
@@ -893,9 +918,10 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
msg = ERR_PTR(-EACCES);
if (ipcperms(ns, &msq->q_perm, S_IRUGO))
- goto out_unlock1;
+ goto out_unlock;
msg = find_msg(msq, &msgtyp, mode);
+
if (!IS_ERR(msg)) {
/*
* Found a suitable message.
@@ -903,7 +929,7 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
*/
if ((bufsz < msg->m_ts) && !(msgflg & MSG_NOERROR)) {
msg = ERR_PTR(-E2BIG);
- goto out_unlock1;
+ goto out_unlock;
}
/*
* If we are copying, then do not unlink message and do
@@ -911,10 +937,8 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
*/
if (msgflg & MSG_COPY) {
msg = copy_msg(msg, copy);
- goto out_unlock1;
+ goto out_unlock;
}
-
- ipc_lock_object(&msq->q_perm);
list_del(&msg->m_list);
msq->q_qnum--;
msq->q_rtime = get_seconds();
@@ -923,17 +947,14 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
atomic_sub(msg->m_ts, &ns->msg_bytes);
atomic_dec(&ns->msg_hdrs);
ss_wakeup(&msq->q_senders, 0);
-
- goto out_unlock0;
+ msg_unlock(msq);
+ break;
}
-
/* No message waiting. Wait for a message */
if (msgflg & IPC_NOWAIT) {
msg = ERR_PTR(-ENOMSG);
- goto out_unlock1;
+ goto out_unlock;
}
-
- ipc_lock_object(&msq->q_perm);
list_add_tail(&msr_d.r_list, &msq->q_receivers);
msr_d.r_tsk = current;
msr_d.r_msgtype = msgtyp;
@@ -944,9 +965,8 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
msr_d.r_maxsize = bufsz;
msr_d.r_msg = ERR_PTR(-EAGAIN);
current->state = TASK_INTERRUPTIBLE;
+ msg_unlock(msq);
- ipc_unlock_object(&msq->q_perm);
- rcu_read_unlock();
schedule();
/* Lockless receive, part 1:
@@ -976,34 +996,32 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
* If there is a message or an error then accept it without
* locking.
*/
- if (msg != ERR_PTR(-EAGAIN))
- goto out_unlock1;
+ if (msg != ERR_PTR(-EAGAIN)) {
+ rcu_read_unlock();
+ break;
+ }
/* Lockless receive, part 3:
* Acquire the queue spinlock.
*/
- ipc_lock_object(&msq->q_perm);
+ ipc_lock_by_ptr(&msq->q_perm);
+ rcu_read_unlock();
/* Lockless receive, part 4:
* Repeat test after acquiring the spinlock.
*/
msg = (struct msg_msg*)msr_d.r_msg;
if (msg != ERR_PTR(-EAGAIN))
- goto out_unlock0;
+ goto out_unlock;
list_del(&msr_d.r_list);
if (signal_pending(current)) {
msg = ERR_PTR(-ERESTARTNOHAND);
- goto out_unlock0;
+out_unlock:
+ msg_unlock(msq);
+ break;
}
-
- ipc_unlock_object(&msq->q_perm);
}
-
-out_unlock0:
- ipc_unlock_object(&msq->q_perm);
-out_unlock1:
- rcu_read_unlock();
if (IS_ERR(msg)) {
free_copy(copy);
return PTR_ERR(msg);
diff --git a/ipc/sem.c b/ipc/sem.c
index 4108889..b93f9c9 100644
--- a/ipc/sem.c
+++ b/ipc/sem.c
@@ -1455,6 +1455,7 @@ static int semctl_down(struct ipc_namespace *ns, int semid,
&semid64.sem_perm, 0);
if (IS_ERR(ipcp)) {
err = PTR_ERR(ipcp);
+ /* the ipc lock is not held upon failure */
goto out_unlock1;
}
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index acb8650..7d7c9d8 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -172,9 +172,22 @@ else
fi
maintainer="$name <$email>"
+# Try to determine distribution
+if [ -e $(which lsb_release) ]; then
+ codename=$(lsb_release --codename --short)
+ if [ "$codename" != "" ]; then
+ distribution=$codename
+ else
+ distribution="UNRELEASED"
+ echo "WARNING: The distribution could NOT be determined!"
+ fi
+else
+ echo "HINT: Install lsb_release binary, this helps to identify your distribution!"
+fi
+
# Generate a simple changelog template
cat <<EOF > debian/changelog
-linux-upstream ($packageversion) unstable; urgency=low
+linux-upstream ($packageversion) $distribution; urgency=low
* Custom built Linux kernel.
@@ -188,10 +201,10 @@ This is a packacked upstream version of the Linux kernel.
The sources may be found at most Linux ftp sites, including:
ftp://ftp.kernel.org/pub/linux/kernel
-Copyright: 1991 - 2009 Linus Torvalds and others.
+Copyright: 1991 - 2013 Linus Torvalds and others.
The git repository for mainline kernel development is at:
-git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
+git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
^ permalink raw reply related [flat|nested] 33+ messages in thread
* Re: linux-next: Tree for Jun 21 [ BROKEN ipc/ipc-msg ]
2013-06-21 19:34 linux-next: Tree for Jun 21 [ BROKEN ipc/ipc-msg ] Sedat Dilek
@ 2013-06-21 22:07 ` Davidlohr Bueso
2013-06-21 22:54 ` Sedat Dilek
2013-06-25 16:10 ` Sedat Dilek
1 sibling, 1 reply; 33+ messages in thread
From: Davidlohr Bueso @ 2013-06-21 22:07 UTC (permalink / raw)
To: sedat.dilek
Cc: linux-next, linux-kernel, Stephen Rothwell, Andrew Morton,
linux-mm, Andi Kleen, Rik van Riel, Manfred Spraul
On Fri, 2013-06-21 at 21:34 +0200, Sedat Dilek wrote:
> On Fri, Jun 21, 2013 at 10:17 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> > Hi all,
> >
> > Happy solstice!
> >
> > Changes since 20130620:
> >
> > Dropped tree: mailbox (really bad merge conflicts with the arm-soc tree)
> >
> > The net-next tree gained a conflict against the net tree.
> >
> > The leds tree still had its build failure, so I used the version from
> > next-20130607.
> >
> > The arm-soc tree gained conflicts against the tip, net-next, mfd and
> > mailbox trees.
> >
> > The staging tree still had its build failure for which I disabled some
> > code.
> >
> > The akpm tree lost a few patches that turned up elsewhere and gained
> > conflicts against the ftrace and arm-soc trees.
> >
> > ----------------------------------------------------------------------------
> >
>
> [ CC IPC folks ]
>
> Building via 'make deb-pkg' with fakeroot fails here like this:
>
> make: *** [deb-pkg] Terminated
> /usr/bin/fakeroot: line 181: 2386 Terminated
> FAKEROOTKEY=$FAKEROOTKEY LD_LIBRARY_PATH="$PATHS" LD_PRELOAD="$LIB"
> "$@"
> semop(1): encountered an error: Identifier removed
> semop(2): encountered an error: Invalid argument
> semop(1): encountered an error: Identifier removed
> semop(1): encountered an error: Identifier removed
> semop(1): encountered an error: Invalid argument
> semop(1): encountered an error: Invalid argument
> semop(1): encountered an error: Invalid argument
>
Hmmm those really shouldn't be related to the message queue changes. Are
you sure you got the right bisect?
Manfred has a few ipc/sem.c patches in linux-next, starting at commit
c50df1b4 (ipc/sem.c: cacheline align the semaphore structures), does
reverting any of those instead of "ipc,msg: shorten critical region in
msgrcv" help at all? Also, anything reported in dmesg?
> The issue is present since next-20130606!
>
> LAST KNOWN GOOD: next-20130605
> FIRST KNOWN BAD: next-20130606
>
> KNOWN GOOD: next-20130604
> KNOWN BAD: next-20130607 || next-20130619 || next-20130620 || next-20130621
>
> git-bisect says CULPRIT commit is...
>
> "ipc,msg: shorten critical region in msgrcv"
This I get. I went through the code again and it looks correct and
functionally equivalent to the old msgrcv.
>
> NOTE: msg_lock_(check_) routines have to be restored (one more revert needed)!
This I don't get. Restoring msg_lock_[check] is already equivalent to
reverting "ipc,msg: shorten critical region in msgrcv" and several other
of the msq patches. What other patch needs reverted?
Anyway, I'll see if I can reproduce the issue, maybe I'm missing
something.
Thanks,
Davidlohr
>
> Reverting both (below) commits makes fakeroot build via 'make dep-pkg" again.
>
> I have tested the revert-patches with next-20130606 and next-20130621
> (see file-attachments).
>
> My build-script is attached!
>
> Can someone of the IPC folks look at that?
> Thanks!
>
> - Sedat -
>
>
> P.S.: Commit-IDs listed below.
>
> [ next-20130606 ]
>
> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130606
>
> "ipc: remove unused functions"
> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=8793fdfb0d0a6ed5916767e29a15d3eb56e04e79
>
> "ipc,msg: shorten critical region in msgrcv"
> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=c0ff93322847a54f74a5450032c4df64c17fdaed
>
> [ next-20130621 ]
>
> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130621
>
> "ipc: remove unused functions"
> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=941ce57c81dcceadf55265616ee1e8bef18b0ad3
>
> "ipc,msg: shorten critical region in msgrcv"
> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=62190df4081ee8504e3611d45edb40450cb408ac
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 33+ messages in thread
* Re: linux-next: Tree for Jun 21 [ BROKEN ipc/ipc-msg ]
2013-06-21 22:07 ` Davidlohr Bueso
@ 2013-06-21 22:54 ` Sedat Dilek
2013-06-21 23:11 ` Davidlohr Bueso
2013-06-21 23:15 ` Sedat Dilek
0 siblings, 2 replies; 33+ messages in thread
From: Sedat Dilek @ 2013-06-21 22:54 UTC (permalink / raw)
To: Davidlohr Bueso
Cc: linux-next, linux-kernel, Stephen Rothwell, Andrew Morton,
linux-mm, Andi Kleen, Rik van Riel, Manfred Spraul
On Sat, Jun 22, 2013 at 12:07 AM, Davidlohr Bueso
<davidlohr.bueso@hp.com> wrote:
> On Fri, 2013-06-21 at 21:34 +0200, Sedat Dilek wrote:
>> On Fri, Jun 21, 2013 at 10:17 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>> > Hi all,
>> >
>> > Happy solstice!
>> >
>> > Changes since 20130620:
>> >
>> > Dropped tree: mailbox (really bad merge conflicts with the arm-soc tree)
>> >
>> > The net-next tree gained a conflict against the net tree.
>> >
>> > The leds tree still had its build failure, so I used the version from
>> > next-20130607.
>> >
>> > The arm-soc tree gained conflicts against the tip, net-next, mfd and
>> > mailbox trees.
>> >
>> > The staging tree still had its build failure for which I disabled some
>> > code.
>> >
>> > The akpm tree lost a few patches that turned up elsewhere and gained
>> > conflicts against the ftrace and arm-soc trees.
>> >
>> > ----------------------------------------------------------------------------
>> >
>>
>> [ CC IPC folks ]
>>
>> Building via 'make deb-pkg' with fakeroot fails here like this:
>>
>> make: *** [deb-pkg] Terminated
>> /usr/bin/fakeroot: line 181: 2386 Terminated
>> FAKEROOTKEY=$FAKEROOTKEY LD_LIBRARY_PATH="$PATHS" LD_PRELOAD="$LIB"
>> "$@"
>> semop(1): encountered an error: Identifier removed
>> semop(2): encountered an error: Invalid argument
>> semop(1): encountered an error: Identifier removed
>> semop(1): encountered an error: Identifier removed
>> semop(1): encountered an error: Invalid argument
>> semop(1): encountered an error: Invalid argument
>> semop(1): encountered an error: Invalid argument
>>
>
> Hmmm those really shouldn't be related to the message queue changes. Are
> you sure you got the right bisect?
>
> Manfred has a few ipc/sem.c patches in linux-next, starting at commit
> c50df1b4 (ipc/sem.c: cacheline align the semaphore structures), does
> reverting any of those instead of "ipc,msg: shorten critical region in
> msgrcv" help at all? Also, anything reported in dmesg?
>
First, I reverted all IPC patches from akpm-tree within -next.
Then, I isolated the culprit by git-bisecting.
As I checked my logs I did not see anything helpful.
>> The issue is present since next-20130606!
>>
>> LAST KNOWN GOOD: next-20130605
>> FIRST KNOWN BAD: next-20130606
>>
>> KNOWN GOOD: next-20130604
>> KNOWN BAD: next-20130607 || next-20130619 || next-20130620 || next-20130621
>>
>> git-bisect says CULPRIT commit is...
>>
>> "ipc,msg: shorten critical region in msgrcv"
>
> This I get. I went through the code again and it looks correct and
> functionally equivalent to the old msgrcv.
>
Hmm, I guess a rcu_read_unlock() is missing?
[ next-20130605 ]
...
/* Lockless receive, part 3:
* Acquire the queue spinlock.
*/
ipc_lock_by_ptr(&msq->q_perm);
rcu_read_unlock();
...
[ next-20130621 ]
...
/* Lockless receive, part 3:
* Acquire the queue spinlock.
*/
ipc_lock_object(&msq->q_perm);
...
Whereas ipc_lock_by_ptr() is equivalent to:
rcu_read_lock();
ipc_lock_object();
>>
>> NOTE: msg_lock_(check_) routines have to be restored (one more revert needed)!
>
> This I don't get. Restoring msg_lock_[check] is already equivalent to
> reverting "ipc,msg: shorten critical region in msgrcv" and several other
> of the msq patches. What other patch needs reverted?
>
No, you have to revert both patches as the other removed
msg_lock_[check] afterwards.
> Anyway, I'll see if I can reproduce the issue, maybe I'm missing
> something.
>
Yupp, I try with adding rcu_read_unlock()... and report.
- Sedat -
> Thanks,
> Davidlohr
>
>>
>> Reverting both (below) commits makes fakeroot build via 'make dep-pkg" again.
>>
>> I have tested the revert-patches with next-20130606 and next-20130621
>> (see file-attachments).
>>
>> My build-script is attached!
>>
>> Can someone of the IPC folks look at that?
>> Thanks!
>>
>> - Sedat -
>>
>>
>> P.S.: Commit-IDs listed below.
>>
>> [ next-20130606 ]
>>
>> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130606
>>
>> "ipc: remove unused functions"
>> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=8793fdfb0d0a6ed5916767e29a15d3eb56e04e79
>>
>> "ipc,msg: shorten critical region in msgrcv"
>> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=c0ff93322847a54f74a5450032c4df64c17fdaed
>>
>> [ next-20130621 ]
>>
>> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130621
>>
>> "ipc: remove unused functions"
>> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=941ce57c81dcceadf55265616ee1e8bef18b0ad3
>>
>> "ipc,msg: shorten critical region in msgrcv"
>> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=62190df4081ee8504e3611d45edb40450cb408ac
>
>
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 33+ messages in thread
* Re: linux-next: Tree for Jun 21 [ BROKEN ipc/ipc-msg ]
2013-06-21 22:54 ` Sedat Dilek
@ 2013-06-21 23:11 ` Davidlohr Bueso
2013-06-21 23:14 ` Sedat Dilek
2013-06-21 23:15 ` Sedat Dilek
1 sibling, 1 reply; 33+ messages in thread
From: Davidlohr Bueso @ 2013-06-21 23:11 UTC (permalink / raw)
To: sedat.dilek
Cc: linux-next, linux-kernel, Stephen Rothwell, Andrew Morton,
linux-mm, Andi Kleen, Rik van Riel, Manfred Spraul
On Sat, 2013-06-22 at 00:54 +0200, Sedat Dilek wrote:
> On Sat, Jun 22, 2013 at 12:07 AM, Davidlohr Bueso
> <davidlohr.bueso@hp.com> wrote:
> > On Fri, 2013-06-21 at 21:34 +0200, Sedat Dilek wrote:
> >> On Fri, Jun 21, 2013 at 10:17 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> >> > Hi all,
> >> >
> >> > Happy solstice!
> >> >
> >> > Changes since 20130620:
> >> >
> >> > Dropped tree: mailbox (really bad merge conflicts with the arm-soc tree)
> >> >
> >> > The net-next tree gained a conflict against the net tree.
> >> >
> >> > The leds tree still had its build failure, so I used the version from
> >> > next-20130607.
> >> >
> >> > The arm-soc tree gained conflicts against the tip, net-next, mfd and
> >> > mailbox trees.
> >> >
> >> > The staging tree still had its build failure for which I disabled some
> >> > code.
> >> >
> >> > The akpm tree lost a few patches that turned up elsewhere and gained
> >> > conflicts against the ftrace and arm-soc trees.
> >> >
> >> > ----------------------------------------------------------------------------
> >> >
> >>
> >> [ CC IPC folks ]
> >>
> >> Building via 'make deb-pkg' with fakeroot fails here like this:
> >>
> >> make: *** [deb-pkg] Terminated
> >> /usr/bin/fakeroot: line 181: 2386 Terminated
> >> FAKEROOTKEY=$FAKEROOTKEY LD_LIBRARY_PATH="$PATHS" LD_PRELOAD="$LIB"
> >> "$@"
> >> semop(1): encountered an error: Identifier removed
> >> semop(2): encountered an error: Invalid argument
> >> semop(1): encountered an error: Identifier removed
> >> semop(1): encountered an error: Identifier removed
> >> semop(1): encountered an error: Invalid argument
> >> semop(1): encountered an error: Invalid argument
> >> semop(1): encountered an error: Invalid argument
> >>
> >
> > Hmmm those really shouldn't be related to the message queue changes. Are
> > you sure you got the right bisect?
> >
> > Manfred has a few ipc/sem.c patches in linux-next, starting at commit
> > c50df1b4 (ipc/sem.c: cacheline align the semaphore structures), does
> > reverting any of those instead of "ipc,msg: shorten critical region in
> > msgrcv" help at all? Also, anything reported in dmesg?
> >
>
> First, I reverted all IPC patches from akpm-tree within -next.
> Then, I isolated the culprit by git-bisecting.
> As I checked my logs I did not see anything helpful.
>
> >> The issue is present since next-20130606!
> >>
> >> LAST KNOWN GOOD: next-20130605
> >> FIRST KNOWN BAD: next-20130606
> >>
> >> KNOWN GOOD: next-20130604
> >> KNOWN BAD: next-20130607 || next-20130619 || next-20130620 || next-20130621
> >>
> >> git-bisect says CULPRIT commit is...
> >>
> >> "ipc,msg: shorten critical region in msgrcv"
> >
> > This I get. I went through the code again and it looks correct and
> > functionally equivalent to the old msgrcv.
> >
>
> Hmm, I guess a rcu_read_unlock() is missing?
>
> [ next-20130605 ]
> ...
> /* Lockless receive, part 3:
> * Acquire the queue spinlock.
> */
> ipc_lock_by_ptr(&msq->q_perm);
> rcu_read_unlock();
> ...
> [ next-20130621 ]
> ...
> /* Lockless receive, part 3:
> * Acquire the queue spinlock.
> */
> ipc_lock_object(&msq->q_perm);
> ...
>
> Whereas ipc_lock_by_ptr() is equivalent to:
> rcu_read_lock();
> ipc_lock_object();
Yeah, I noticed that, but it's not an error. In the older code we have
rcu_read_lock (Lockless receive, part 1)
[...]
/* Lockless receive, part 3:
* Acquire the queue spinlock.
*/
ipc_lock_by_ptr(&msq->q_perm);
rcu_read_unlock();
Which translates to:
rcu_read_lock (Lockless receive, part 1)
[...]
/* Lockless receive, part 3:
* Acquire the queue spinlock.
*/
rcu_read_lock();
ipc_lock_object();
rcu_read_unlock();
And thus, after that last rcu_read_unlock we are left with
rcu_read_lock()
ipc_lock_object();
If you notice, that's exactly what is done in the new code, only much
more readable: We do rcu_read_lock in the part 1, then in part 3, we
acquire the spinlock via ipc_lock_object(&msq->q_perm)
> >>
> >> NOTE: msg_lock_(check_) routines have to be restored (one more revert needed)!
> >
> > This I don't get. Restoring msg_lock_[check] is already equivalent to
> > reverting "ipc,msg: shorten critical region in msgrcv" and several other
> > of the msq patches. What other patch needs reverted?
> >
>
> No, you have to revert both patches as the other removed
> msg_lock_[check] afterwards.
>
> > Anyway, I'll see if I can reproduce the issue, maybe I'm missing
> > something.
> >
>
> Yupp, I try with adding rcu_read_unlock()... and report.
>
> - Sedat -
>
> > Thanks,
> > Davidlohr
> >
> >>
> >> Reverting both (below) commits makes fakeroot build via 'make dep-pkg" again.
> >>
> >> I have tested the revert-patches with next-20130606 and next-20130621
> >> (see file-attachments).
> >>
> >> My build-script is attached!
> >>
> >> Can someone of the IPC folks look at that?
> >> Thanks!
> >>
> >> - Sedat -
> >>
> >>
> >> P.S.: Commit-IDs listed below.
> >>
> >> [ next-20130606 ]
> >>
> >> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130606
> >>
> >> "ipc: remove unused functions"
> >> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=8793fdfb0d0a6ed5916767e29a15d3eb56e04e79
> >>
> >> "ipc,msg: shorten critical region in msgrcv"
> >> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=c0ff93322847a54f74a5450032c4df64c17fdaed
> >>
> >> [ next-20130621 ]
> >>
> >> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130621
> >>
> >> "ipc: remove unused functions"
> >> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=941ce57c81dcceadf55265616ee1e8bef18b0ad3
> >>
> >> "ipc,msg: shorten critical region in msgrcv"
> >> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=62190df4081ee8504e3611d45edb40450cb408ac
> >
> >
^ permalink raw reply [flat|nested] 33+ messages in thread
* Re: linux-next: Tree for Jun 21 [ BROKEN ipc/ipc-msg ]
2013-06-21 23:11 ` Davidlohr Bueso
@ 2013-06-21 23:14 ` Sedat Dilek
0 siblings, 0 replies; 33+ messages in thread
From: Sedat Dilek @ 2013-06-21 23:14 UTC (permalink / raw)
To: Davidlohr Bueso
Cc: linux-next, linux-kernel, Stephen Rothwell, Andrew Morton,
linux-mm, Andi Kleen, Rik van Riel, Manfred Spraul
On Sat, Jun 22, 2013 at 1:11 AM, Davidlohr Bueso <davidlohr.bueso@hp.com> wrote:
> On Sat, 2013-06-22 at 00:54 +0200, Sedat Dilek wrote:
>> On Sat, Jun 22, 2013 at 12:07 AM, Davidlohr Bueso
>> <davidlohr.bueso@hp.com> wrote:
>> > On Fri, 2013-06-21 at 21:34 +0200, Sedat Dilek wrote:
>> >> On Fri, Jun 21, 2013 at 10:17 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>> >> > Hi all,
>> >> >
>> >> > Happy solstice!
>> >> >
>> >> > Changes since 20130620:
>> >> >
>> >> > Dropped tree: mailbox (really bad merge conflicts with the arm-soc tree)
>> >> >
>> >> > The net-next tree gained a conflict against the net tree.
>> >> >
>> >> > The leds tree still had its build failure, so I used the version from
>> >> > next-20130607.
>> >> >
>> >> > The arm-soc tree gained conflicts against the tip, net-next, mfd and
>> >> > mailbox trees.
>> >> >
>> >> > The staging tree still had its build failure for which I disabled some
>> >> > code.
>> >> >
>> >> > The akpm tree lost a few patches that turned up elsewhere and gained
>> >> > conflicts against the ftrace and arm-soc trees.
>> >> >
>> >> > ----------------------------------------------------------------------------
>> >> >
>> >>
>> >> [ CC IPC folks ]
>> >>
>> >> Building via 'make deb-pkg' with fakeroot fails here like this:
>> >>
>> >> make: *** [deb-pkg] Terminated
>> >> /usr/bin/fakeroot: line 181: 2386 Terminated
>> >> FAKEROOTKEY=$FAKEROOTKEY LD_LIBRARY_PATH="$PATHS" LD_PRELOAD="$LIB"
>> >> "$@"
>> >> semop(1): encountered an error: Identifier removed
>> >> semop(2): encountered an error: Invalid argument
>> >> semop(1): encountered an error: Identifier removed
>> >> semop(1): encountered an error: Identifier removed
>> >> semop(1): encountered an error: Invalid argument
>> >> semop(1): encountered an error: Invalid argument
>> >> semop(1): encountered an error: Invalid argument
>> >>
>> >
>> > Hmmm those really shouldn't be related to the message queue changes. Are
>> > you sure you got the right bisect?
>> >
>> > Manfred has a few ipc/sem.c patches in linux-next, starting at commit
>> > c50df1b4 (ipc/sem.c: cacheline align the semaphore structures), does
>> > reverting any of those instead of "ipc,msg: shorten critical region in
>> > msgrcv" help at all? Also, anything reported in dmesg?
>> >
>>
>> First, I reverted all IPC patches from akpm-tree within -next.
>> Then, I isolated the culprit by git-bisecting.
>> As I checked my logs I did not see anything helpful.
>>
>> >> The issue is present since next-20130606!
>> >>
>> >> LAST KNOWN GOOD: next-20130605
>> >> FIRST KNOWN BAD: next-20130606
>> >>
>> >> KNOWN GOOD: next-20130604
>> >> KNOWN BAD: next-20130607 || next-20130619 || next-20130620 || next-20130621
>> >>
>> >> git-bisect says CULPRIT commit is...
>> >>
>> >> "ipc,msg: shorten critical region in msgrcv"
>> >
>> > This I get. I went through the code again and it looks correct and
>> > functionally equivalent to the old msgrcv.
>> >
>>
>> Hmm, I guess a rcu_read_unlock() is missing?
>>
>> [ next-20130605 ]
>> ...
>> /* Lockless receive, part 3:
>> * Acquire the queue spinlock.
>> */
>> ipc_lock_by_ptr(&msq->q_perm);
>> rcu_read_unlock();
>> ...
>> [ next-20130621 ]
>> ...
>> /* Lockless receive, part 3:
>> * Acquire the queue spinlock.
>> */
>> ipc_lock_object(&msq->q_perm);
>> ...
>>
>> Whereas ipc_lock_by_ptr() is equivalent to:
>> rcu_read_lock();
>> ipc_lock_object();
>
> Yeah, I noticed that, but it's not an error. In the older code we have
>
> rcu_read_lock (Lockless receive, part 1)
> [...]
> /* Lockless receive, part 3:
> * Acquire the queue spinlock.
> */
> ipc_lock_by_ptr(&msq->q_perm);
> rcu_read_unlock();
>
>
> Which translates to:
> rcu_read_lock (Lockless receive, part 1)
> [...]
> /* Lockless receive, part 3:
> * Acquire the queue spinlock.
> */
> rcu_read_lock();
> ipc_lock_object();
> rcu_read_unlock();
>
> And thus, after that last rcu_read_unlock we are left with
> rcu_read_lock()
> ipc_lock_object();
>
> If you notice, that's exactly what is done in the new code, only much
> more readable: We do rcu_read_lock in the part 1, then in part 3, we
> acquire the spinlock via ipc_lock_object(&msq->q_perm)
>
OK.
AFAICS some comments has to be refreshed.
/* Lockless receive, part 1:
* Disable preemption. We don't hold a reference to the queue
* and getting a reference would defeat the idea of a lockless
* operation, thus the code relies on rcu to guarantee the
* existence of msq:
* Prior to destruction, expunge_all(-EIRDM) changes r_msg.
* Thus if r_msg is -EAGAIN, then the queue not yet destroyed.
* rcu_read_lock() prevents preemption between reading r_msg
* and the spin_lock() inside ipc_lock_by_ptr().
...as there is no usage of ipc_lock_by_ptr().
NO success with that:
--- a/ipc/msg.c
+++ b/ipc/msg.c
@@ -983,6 +983,7 @@ long do_msgrcv(int msqid, void __user *buf, size_t
bufsz, long msgtyp, int msgfl
* Acquire the queue spinlock.
*/
ipc_lock_object(&msq->q_perm);
+ rcu_read_unlock();
/* Lockless receive, part 4:
* Repeat test after acquiring the spinlock.
- Sedat -
>
>> >>
>> >> NOTE: msg_lock_(check_) routines have to be restored (one more revert needed)!
>> >
>> > This I don't get. Restoring msg_lock_[check] is already equivalent to
>> > reverting "ipc,msg: shorten critical region in msgrcv" and several other
>> > of the msq patches. What other patch needs reverted?
>> >
>>
>> No, you have to revert both patches as the other removed
>> msg_lock_[check] afterwards.
>>
>> > Anyway, I'll see if I can reproduce the issue, maybe I'm missing
>> > something.
>> >
>>
>> Yupp, I try with adding rcu_read_unlock()... and report.
>>
>> - Sedat -
>>
>> > Thanks,
>> > Davidlohr
>> >
>> >>
>> >> Reverting both (below) commits makes fakeroot build via 'make dep-pkg" again.
>> >>
>> >> I have tested the revert-patches with next-20130606 and next-20130621
>> >> (see file-attachments).
>> >>
>> >> My build-script is attached!
>> >>
>> >> Can someone of the IPC folks look at that?
>> >> Thanks!
>> >>
>> >> - Sedat -
>> >>
>> >>
>> >> P.S.: Commit-IDs listed below.
>> >>
>> >> [ next-20130606 ]
>> >>
>> >> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130606
>> >>
>> >> "ipc: remove unused functions"
>> >> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=8793fdfb0d0a6ed5916767e29a15d3eb56e04e79
>> >>
>> >> "ipc,msg: shorten critical region in msgrcv"
>> >> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=c0ff93322847a54f74a5450032c4df64c17fdaed
>> >>
>> >> [ next-20130621 ]
>> >>
>> >> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130621
>> >>
>> >> "ipc: remove unused functions"
>> >> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=941ce57c81dcceadf55265616ee1e8bef18b0ad3
>> >>
>> >> "ipc,msg: shorten critical region in msgrcv"
>> >> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=62190df4081ee8504e3611d45edb40450cb408ac
>> >
>> >
>
>
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 33+ messages in thread
* Re: linux-next: Tree for Jun 21 [ BROKEN ipc/ipc-msg ]
2013-06-21 22:54 ` Sedat Dilek
2013-06-21 23:11 ` Davidlohr Bueso
@ 2013-06-21 23:15 ` Sedat Dilek
1 sibling, 0 replies; 33+ messages in thread
From: Sedat Dilek @ 2013-06-21 23:15 UTC (permalink / raw)
To: Davidlohr Bueso
Cc: linux-next, linux-kernel, Stephen Rothwell, Andrew Morton,
linux-mm, Andi Kleen, Rik van Riel, Manfred Spraul
On Sat, Jun 22, 2013 at 12:54 AM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> On Sat, Jun 22, 2013 at 12:07 AM, Davidlohr Bueso
> <davidlohr.bueso@hp.com> wrote:
>> On Fri, 2013-06-21 at 21:34 +0200, Sedat Dilek wrote:
>>> On Fri, Jun 21, 2013 at 10:17 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>> > Hi all,
>>> >
>>> > Happy solstice!
>>> >
>>> > Changes since 20130620:
>>> >
>>> > Dropped tree: mailbox (really bad merge conflicts with the arm-soc tree)
>>> >
>>> > The net-next tree gained a conflict against the net tree.
>>> >
>>> > The leds tree still had its build failure, so I used the version from
>>> > next-20130607.
>>> >
>>> > The arm-soc tree gained conflicts against the tip, net-next, mfd and
>>> > mailbox trees.
>>> >
>>> > The staging tree still had its build failure for which I disabled some
>>> > code.
>>> >
>>> > The akpm tree lost a few patches that turned up elsewhere and gained
>>> > conflicts against the ftrace and arm-soc trees.
>>> >
>>> > ----------------------------------------------------------------------------
>>> >
>>>
>>> [ CC IPC folks ]
>>>
>>> Building via 'make deb-pkg' with fakeroot fails here like this:
>>>
>>> make: *** [deb-pkg] Terminated
>>> /usr/bin/fakeroot: line 181: 2386 Terminated
>>> FAKEROOTKEY=$FAKEROOTKEY LD_LIBRARY_PATH="$PATHS" LD_PRELOAD="$LIB"
>>> "$@"
>>> semop(1): encountered an error: Identifier removed
>>> semop(2): encountered an error: Invalid argument
>>> semop(1): encountered an error: Identifier removed
>>> semop(1): encountered an error: Identifier removed
>>> semop(1): encountered an error: Invalid argument
>>> semop(1): encountered an error: Invalid argument
>>> semop(1): encountered an error: Invalid argument
>>>
>>
>> Hmmm those really shouldn't be related to the message queue changes. Are
>> you sure you got the right bisect?
>>
>> Manfred has a few ipc/sem.c patches in linux-next, starting at commit
>> c50df1b4 (ipc/sem.c: cacheline align the semaphore structures), does
>> reverting any of those instead of "ipc,msg: shorten critical region in
>> msgrcv" help at all? Also, anything reported in dmesg?
>>
>
> First, I reverted all IPC patches from akpm-tree within -next.
> Then, I isolated the culprit by git-bisecting.
> As I checked my logs I did not see anything helpful.
>
>>> The issue is present since next-20130606!
>>>
>>> LAST KNOWN GOOD: next-20130605
>>> FIRST KNOWN BAD: next-20130606
>>>
>>> KNOWN GOOD: next-20130604
>>> KNOWN BAD: next-20130607 || next-20130619 || next-20130620 || next-20130621
>>>
>>> git-bisect says CULPRIT commit is...
>>>
>>> "ipc,msg: shorten critical region in msgrcv"
>>
>> This I get. I went through the code again and it looks correct and
>> functionally equivalent to the old msgrcv.
>>
>
> Hmm, I guess a rcu_read_unlock() is missing?
>
> [ next-20130605 ]
> ...
> /* Lockless receive, part 3:
> * Acquire the queue spinlock.
> */
> ipc_lock_by_ptr(&msq->q_perm);
> rcu_read_unlock();
> ...
> [ next-20130621 ]
> ...
> /* Lockless receive, part 3:
> * Acquire the queue spinlock.
> */
> ipc_lock_object(&msq->q_perm);
> ...
>
> Whereas ipc_lock_by_ptr() is equivalent to:
> rcu_read_lock();
> ipc_lock_object();
>
>>>
>>> NOTE: msg_lock_(check_) routines have to be restored (one more revert needed)!
>>
>> This I don't get. Restoring msg_lock_[check] is already equivalent to
>> reverting "ipc,msg: shorten critical region in msgrcv" and several other
>> of the msq patches. What other patch needs reverted?
>>
>
> No, you have to revert both patches as the other removed
> msg_lock_[check] afterwards.
>
>> Anyway, I'll see if I can reproduce the issue, maybe I'm missing
>> something.
>>
>
> Yupp, I try with adding rcu_read_unlock()... and report.
>
> - Sedat -
>
>> Thanks,
>> Davidlohr
>>
>>>
>>> Reverting both (below) commits makes fakeroot build via 'make dep-pkg" again.
>>>
>>> I have tested the revert-patches with next-20130606 and next-20130621
>>> (see file-attachments).
>>>
>>> My build-script is attached!
>>>
>>> Can someone of the IPC folks look at that?
>>> Thanks!
>>>
>>> - Sedat -
>>>
>>>
>>> P.S.: Commit-IDs listed below.
>>>
>>> [ next-20130606 ]
>>>
>>> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130606
>>>
>>> "ipc: remove unused functions"
>>> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=8793fdfb0d0a6ed5916767e29a15d3eb56e04e79
>>>
>>> "ipc,msg: shorten critical region in msgrcv"
>>> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=c0ff93322847a54f74a5450032c4df64c17fdaed
>>>
>>> [ next-20130621 ]
>>>
>>> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130621
>>>
>>> "ipc: remove unused functions"
>>> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=941ce57c81dcceadf55265616ee1e8bef18b0ad3
>>>
>>> "ipc,msg: shorten critical region in msgrcv"
>>> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=62190df4081ee8504e3611d45edb40450cb408ac
>>
>>
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 33+ messages in thread
* Re: linux-next: Tree for Jun 21 [ BROKEN ipc/ipc-msg ]
2013-06-21 19:34 linux-next: Tree for Jun 21 [ BROKEN ipc/ipc-msg ] Sedat Dilek
2013-06-21 22:07 ` Davidlohr Bueso
@ 2013-06-25 16:10 ` Sedat Dilek
2013-06-25 20:33 ` Davidlohr Bueso
1 sibling, 1 reply; 33+ messages in thread
From: Sedat Dilek @ 2013-06-25 16:10 UTC (permalink / raw)
To: Davidlohr Bueso
Cc: linux-next, linux-kernel, Stephen Rothwell, Andrew Morton,
linux-mm, Andi Kleen, Rik van Riel, Manfred Spraul
[-- Attachment #1: Type: text/plain, Size: 6782 bytes --]
On Fri, Jun 21, 2013 at 9:34 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> On Fri, Jun 21, 2013 at 10:17 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>> Hi all,
>>
>> Happy solstice!
>>
>> Changes since 20130620:
>>
>> Dropped tree: mailbox (really bad merge conflicts with the arm-soc tree)
>>
>> The net-next tree gained a conflict against the net tree.
>>
>> The leds tree still had its build failure, so I used the version from
>> next-20130607.
>>
>> The arm-soc tree gained conflicts against the tip, net-next, mfd and
>> mailbox trees.
>>
>> The staging tree still had its build failure for which I disabled some
>> code.
>>
>> The akpm tree lost a few patches that turned up elsewhere and gained
>> conflicts against the ftrace and arm-soc trees.
>>
>> ----------------------------------------------------------------------------
>>
>
> [ CC IPC folks ]
>
> Building via 'make deb-pkg' with fakeroot fails here like this:
>
> make: *** [deb-pkg] Terminated
> /usr/bin/fakeroot: line 181: 2386 Terminated
> FAKEROOTKEY=$FAKEROOTKEY LD_LIBRARY_PATH="$PATHS" LD_PRELOAD="$LIB"
> "$@"
> semop(1): encountered an error: Identifier removed
> semop(2): encountered an error: Invalid argument
> semop(1): encountered an error: Identifier removed
> semop(1): encountered an error: Identifier removed
> semop(1): encountered an error: Invalid argument
> semop(1): encountered an error: Invalid argument
> semop(1): encountered an error: Invalid argument
>
> The issue is present since next-20130606!
>
> LAST KNOWN GOOD: next-20130605
> FIRST KNOWN BAD: next-20130606
>
> KNOWN GOOD: next-20130604
> KNOWN BAD: next-20130607 || next-20130619 || next-20130620 || next-20130621
>
> git-bisect says CULPRIT commit is...
>
> "ipc,msg: shorten critical region in msgrcv"
>
> NOTE: msg_lock_(check_) routines have to be restored (one more revert needed)!
>
> Reverting both (below) commits makes fakeroot build via 'make dep-pkg" again.
>
> I have tested the revert-patches with next-20130606 and next-20130621
> (see file-attachments).
>
> My build-script is attached!
>
> Can someone of the IPC folks look at that?
> Thanks!
>
> - Sedat -
>
>
> P.S.: Commit-IDs listed below.
>
> [ next-20130606 ]
>
> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130606
>
> "ipc: remove unused functions"
> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=8793fdfb0d0a6ed5916767e29a15d3eb56e04e79
>
> "ipc,msg: shorten critical region in msgrcv"
> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=c0ff93322847a54f74a5450032c4df64c17fdaed
>
> [ next-20130621 ]
>
> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130621
>
> "ipc: remove unused functions"
> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=941ce57c81dcceadf55265616ee1e8bef18b0ad3
>
> "ipc,msg: shorten critical region in msgrcv"
> http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=62190df4081ee8504e3611d45edb40450cb408ac
I did some more testing with Linux-Testing-Project (release:
ltp-full-20130503) and next-20130624 (Monday) which has still the
issue, here.
If I revert the mentioned two commits from my local
revert-ipc-next20130624-5089fd1c6a6a-ab9efc2d0db5 GIT repo, everything
is fine.
I have tested the LTP ***IPC*** and ***SYSCALLS*** testcases.
root# ./runltp -f ipc
root# ./runltp -f syscalls
IPC seems to be fine for both -1 (UNPATCHED) and -2 (with attached two
REVERTED patches) kernel, but -1 hangs in the SYSCALLS/msgctl08 test.
Previous msgctl07 is OK, but ***msgctl08*** produces this:
...
<<<test_start>>>
tag=msgctl07 stime=1372174934
cmdline="msgctl07"
contacts=""
analysis=exit
<<<test_output>>>
msgctl07 1 TPASS : msgctl07 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=20 termination_type=exited termination_id=0 corefile=no
cutime=1995 cstime=3
<<<test_end>>>
<<<test_start>>>
tag=msgctl08 stime=1372174954
cmdline="msgctl08"
contacts=""
analysis=exit
<<<test_output>>>
msgctl08 0 TWARN : Verify error in child 0, *buf = 28, val = 27, size = 8
msgctl08 1 TFAIL : in child 0 read # = 73,key = 127
msgctl08 0 TWARN : Verify error in child 3, *buf = ffffff8a, val
= ffffff89, size = 52
msgctl08 1 TFAIL : in child 3 read # = 157,key = 189
msgctl08 0 TWARN : Verify error in child 2, *buf = ffffff87, val
= ffffff86, size = 71
msgctl08 1 TFAIL : in child 2 read # = 15954,key = 3e86
msgctl08 0 TWARN : Verify error in child 12, *buf = ffffffa9,
val = ffffffa8, size = 22
msgctl08 1 TFAIL : in child 12 read # = 12904,key = 32a8
msgctl08 0 TWARN : Verify error in child 13, *buf = 36, val =
35, size = 27
msgctl08 1 TFAIL : in child 13 read # = 10442,key = 2935
msgctl08 0 TWARN : Verify error in child 10, *buf = ffffff86,
val = ffffff85, size = 63
msgctl08 1 TFAIL : in child 10 read # = 19713,key = 4d85
msgctl08 0 TWARN : Verify error in child 4, *buf = 4c, val = 4b, size = 83
msgctl08 1 TFAIL : in child 4 read # = 23082,key = 5a4b
msgctl08 0 TWARN : Verify error in child 15, *buf = 61, val =
60, size = 94
msgctl08 1 TFAIL : in child 15 read # = 23554,key = 5c60
msgctl08 0 TWARN : Verify error in child 11, *buf = 3b, val =
3a, size = 22
msgctl08 1 TFAIL : in child 11 read # = 26468,key = 683a
msgctl08 0 TWARN : Verify error in child 5, *buf = ffffffb5, val
= ffffffb4, size = 41
msgctl08 1 TFAIL : in child 5 read # = 31867,key = 7cb4
msgctl08 0 TWARN : Verify error in child 1, *buf = 7d, val = 7c, size = 59
msgctl08 1 TFAIL : in child 1 read # = 41063,key = a07c
msgctl08 0 TWARN : Verify error in child 7, *buf = fffffff2, val
= fffffff1, size = 83
msgctl08 1 TFAIL : in child 7 read # = 38476,key = 96f1
msgctl08 0 TWARN : Verify error in child 9, *buf = ffffff8b, val
= ffffff8a, size = 40
msgctl08 1 TFAIL : in child 9 read # = 90438,key = 1618a
msgctl08 0 TWARN : Verify error in child 8, *buf = ffffffcd, val
= ffffffcc, size = 38
msgctl08 1 TFAIL : in child 8 read # = 88712,key = 15acc
msgctl08 0 TWARN : Verify error in child 6, *buf = 6, val = 5, size = 1
msgctl08 1 TFAIL : in child 6 read # = 83297,key = 14605
***** STOPPED *****
See "ltp-full-20130503.git/testcases/kernel/syscalls/ipc/msgctl/msgctl08.c" [1].
NOTE: Debian/Ubuntu users with dash as default shell require the patch from [2].
- Sedat -
P.S.: Unfortunately, fakeroot DEBUG doc file is outdated.
[1] https://github.com/linux-test-project/ltp/blob/master/testcases/kernel/syscalls/ipc/msgctl/msgctl08.c
[2] https://github.com/linux-test-project/ltp/commit/b88fa5b6ec5a29834a0e52df7b22b9bb47fe0379
[-- Attachment #2: runltp-f-ipc_3.10.0-rc7-next20130624-1-iniza-small_dash.txt --]
[-- Type: text/plain, Size: 39009 bytes --]
INFO: creating /opt/ltp/results directory
Checking for required user/group ids
'nobody' user id and group found.
'bin' user id and group found.
'daemon' user id and group found.
Users group found.
Sys group found.
Required users/groups exist.
If some fields are empty or look unusual you may have an old version.
Compare to the current minimal requirements in Documentation/Changes.
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04.2 LTS"
NAME="Ubuntu"
VERSION="12.04.2 LTS, Precise Pangolin"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu precise (12.04.2 LTS)"
VERSION_ID="12.04"
Linux fambox 3.10.0-rc7-next20130624-1-iniza-small #1 SMP Mon Jun 24 12:10:13 CEST 2013 x86_64 x86_64 x86_64 GNU/Linux
Gnu C gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Gnu make 3.81
util-linux linux 2.20.1
mount linux 2.20.1 (with libblkid and selinux support)
modutils 6
e2fsprogs 1.42
PPP 2.4.5
Linux C Library > libc.2.15
Dynamic linker (ldd) 2.15
Procps 3.2.8
Net-tools 1.60
iproute2 iproute2-ss121211
Kbd 1.15.2
Sh-utils 8.13
Modules Loaded arc4 bnep iwldvm rfcomm snd_hda_codec_hdmi mac80211 snd_hda_codec_realtek snd_hda_intel snd_hda_codec uvcvideo snd_hwdep snd_pcm videobuf2_vmalloc joydev videobuf2_memops snd_page_alloc videobuf2_core snd_seq_midi videodev snd_seq_midi_event iwlwifi snd_rawmidi i915 parport_pc snd_seq ppdev snd_timer snd_seq_device psmouse btusb cfg80211 snd bluetooth soundcore samsung_laptop i2c_algo_bit serio_raw drm_kms_helper lpc_ich drm wmi video mac_hid lp parport hid_generic usbhid hid usb_storage r8169 mii
free reports:
total used free shared buffers cached
Mem: 3945272 3356708 588564 0 1361376 1342700
-/+ buffers/cache: 652632 3292640
Swap: 262140 0 262140
/proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping : 7
microcode : 0x28
cpu MHz : 2032.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 3192.86
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping : 7
microcode : 0x28
cpu MHz : 2032.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 3192.86
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping : 7
microcode : 0x28
cpu MHz : 2016.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 3192.86
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping : 7
microcode : 0x28
cpu MHz : 2064.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 3192.86
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
10240+0 records in
10240+0 records out
10240000 bytes (10 MB) copied, 0.0512656 s, 200 MB/s
mke2fs 1.42 (29-Nov-2011)
Discarding device blocks: 1024/10000\b\b\b\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b\b\b\bdone
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
Stride=0 blocks, Stripe width=0 blocks
2512 inodes, 10000 blocks
500 blocks (5.00%) reserved for the super user
First data block=1
Maximum filesystem blocks=10485760
2 block groups
8192 blocks per group, 8192 fragments per group
1256 inodes per group
Superblock backups stored on blocks:
8193
Allocating group tables: 0/2\b\b\b1/2\b\b\b \b\b\bdone
Writing inode tables: 0/2\b\b\b1/2\b\b\b \b\b\bdone
Creating journal (1024 blocks): done
Writing superblocks and filesystem accounting information: 0/2\b\b\b1/2\b\b\b \b\b\bdone
COMMAND: /opt/ltp/bin/ltp-pan -e -S -a 23345 -n 23345 -p -f /tmp/ltp-97vCiJM0G7/alltests -l /opt/ltp/results/LTP_RUN_ON-2013_Jun_25-17h_47m_50s.log -C /opt/ltp/output/LTP_RUN_ON-2013_Jun_25-17h_47m_50s.failed
-e LOG File: /opt/ltp/results/LTP_RUN_ON-2013_Jun_25-17h_47m_50s.log
-e FAILED COMMAND File: /opt/ltp/output/LTP_RUN_ON-2013_Jun_25-17h_47m_50s.failed
Running tests.......
<<<test_start>>>
tag=pipeio_1 stime=1372175271
cmdline="pipeio -T pipeio_1 -c 5 -s 4090 -i 100 -b -f x80"
contacts=""
analysis=exit
<<<test_output>>>
pipeio_1 1 TPASS : 1 PASS 501 pipe reads complete, read size = 4090, named pipe, blking,
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=pipeio_3 stime=1372175271
cmdline="pipeio -T pipeio_3 -c 5 -s 4090 -i 100 -u -b -f x80"
contacts=""
analysis=exit
<<<test_output>>>
pipeio_3 1 TPASS : 1 PASS 501 pipe reads complete, read size = 4090, sys pipe,
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=pipeio_4 stime=1372175271
cmdline="pipeio -T pipeio_4 -c 5 -s 4090 -i 100 -u -f x80"
contacts=""
analysis=exit
<<<test_output>>>
pipeio_4 1 TPASS : 1 PASS 501 pipe reads complete, read size = 4090, sys pipe,
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=pipeio_5 stime=1372175271
cmdline="pipeio -T pipeio_5 -c 5 -s 5000 -i 10 -b -f x80"
contacts=""
analysis=exit
<<<test_output>>>
pipeio_5 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_5 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_5 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_5 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_5 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_5 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_5 1 TPASS : 1 PASS 66 pipe reads complete, read size = 4096, named pipe, blking,
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pipeio_6 stime=1372175271
cmdline="pipeio -T pipeio_6 -c 5 -s 5000 -i 10 -b -u -f x80"
contacts=""
analysis=exit
<<<test_output>>>
pipeio_6 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_6 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_6 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_6 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_6 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_6 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_6 1 TPASS : 1 PASS 66 pipe reads complete, read size = 4096, sys pipe,
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=pipeio_8 stime=1372175271
cmdline="pipeio -T pipeio_8 -c 5 -s 5000 -i 10 -u -f x80"
contacts=""
analysis=exit
<<<test_output>>>
pipeio_8 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_8 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_8 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_8 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_8 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_8 0 TINFO : adjusting i/o size to 4096, and # of writes to 13
pipeio_8 1 TPASS : 1 PASS 66 pipe reads complete, read size = 4096, sys pipe,
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sem01 stime=1372175271
cmdline="sem01"
contacts=""
analysis=exit
<<<test_output>>>
PASS: error count is 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=sem02 stime=1372175271
cmdline="sem02"
contacts=""
analysis=exit
<<<test_output>>>
sem02 0 TINFO : Waiter, pid = 23512
sem02 0 TINFO : Poster, pid = 23512, posting
sem02 0 TINFO : Poster posted
sem02 0 TINFO : Poster exiting
sem02 0 TINFO : Waiter waiting, pid = 23512
sem02 0 TINFO : Waiter done waiting
sem02 1 TPASS : passed
<<<execution_status>>>
initiation_status="ok"
duration=20 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=message_queue_test_01 stime=1372175291
cmdline=" message_queue_test_01"
contacts=""
analysis=exit
<<<test_output>>>
message_queue_test_01: IPC Message Queue TestSuite program
Create message queue, id: 0x000c0000
Child: received message queue id: 786432
Child: sending message: "message queue transmission test...."
Parent: received message: "message queue transmission test...."
Remove the message queue
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=message_queue_test_02_get stime=1372175291
cmdline="message_queue_test_02_get"
contacts=""
analysis=exit
<<<test_output>>>
819200
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=message_queue_test_02_snd stime=1372175291
cmdline="message_queue_test_02_snd"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=message_queue_test_02_rcv stime=1372175291
cmdline="message_queue_test_02_rcv"
contacts=""
analysis=exit
<<<test_output>>>
<< Message Queue test default message >>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=message_queue_test_02_ctl stime=1372175291
cmdline="message_queue_test_02_ctl -r"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=message_queue_test_04 stime=1372175291
cmdline=" message_queue_test_04"
contacts=""
analysis=exit
<<<test_output>>>
message_queue_test_04: IPC Message Queue TestSuite program
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=message_queue_test_05 stime=1372175291
cmdline=" message_queue_test_05"
contacts=""
analysis=exit
<<<test_output>>>
message_queue_test_05: IPC Message Queue TestSuite program
Creating 10 message queues ...
All message queues created successfully
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pipe_test_01 stime=1372175291
cmdline=" pipe_test_01"
contacts=""
analysis=exit
<<<test_output>>>
cat: /etc/inittab: No such file or directory
0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=pipe_test_02 stime=1372175291
cmdline=" pipe_test_02"
contacts=""
analysis=exit
<<<test_output>>>
pipe_test_02: IPC Pipe TestSuite program
Creating pipes...
Spawning 1 child processes ...
Child: pid [23538] received 1024 packets from parent
Parent: sending 1024 packets (40960 bytes) to child processes ...
Parent: done sending packets & waiting for children to complete!
Parent: children received all packets & exited successfully
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=semaphore_test_01 stime=1372175291
cmdline=" run_semaphore_test_01.sh"
contacts=""
analysis=exit
<<<test_output>>>
semaphore_test_01 0 TINFO : Created semaphore ID: 262144
semaphore_test_01 1 TPASS : semaphore ID comparing passed.
semaphore_test_01 0 TINFO : CLOSE: exit.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=semaphore_test_02 stime=1372175291
cmdline=" semaphore_test_02"
contacts=""
analysis=exit
<<<test_output>>>
semaphore_test_02: IPC Semaphore TestSuite program
Testing semctl (IPC_SET) command operation
Testing semctl (IPC_SET) command operation
Testing semctl (IPC_STAT) command operation
Testing semctl (SETVAL) command operation
Testing semctl (GETVAL) command operation
Testing semop (signal and wait) operations
Testing semctl (GETPID) command operation
Testing semctl (GETNCNT) command operation
Testing semctl (GETZCNT) command operation
Testing semctl (SETALL) command operation
Testing semctl (GETALL) command operation
Testing semctl (IPC_RMID) command operation
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=semaphore_test_03 stime=1372175291
cmdline=" semaphore_test_03"
contacts=""
analysis=exit
<<<test_output>>>
semaphore_test_03: IPC Semaphore TestSuite program
Creating 16 semaphores ...
Setting semaphore uid, gid and mode ... semid = 327680
Verifying semaphore info ...
Testing semop() with all Semaphore values, options and flags
Semval Semop Semflag Description
2 -1 0 Obtain resource
1 -1 0 Obtain resource
0 0 0 Semop function returns immediately
5 1 0 Return resource
6 -7 IPC_NOWAIT Semop function returns immediately
6 0 IPC_NOWAIT Semop function returns immediately
6 1 0 Return resource
7 -8 0 Sleep (until resource becomes available)
Creating 16 semaphores ...
Setting semaphore uid, gid and mode ... semid = 327680
Verifying semaphore info ...
Testing semop() with all Semaphore values, options and flags
Semval Semop Semflag Description
2 -1 0 Obtain resource
1 -1 0 Obtain resource
0 0 0 Semop function returns immediately
5 1 0 Return resource
6 -7 IPC_NOWAIT Semop function returns immediately
6 0 IPC_NOWAIT Semop function returns immediately
6 1 0 Return resource
7 -8 0 Sleep (until resource becomes available)
7 -8 0 Sleep (until signaled)
Creating 16 semaphores ...
Setting semaphore uid, gid and mode ... semid = 327680
Verifying semaphore info ...
Testing semop() with all Semaphore values, options and flags
Semval Semop Semflag Description
2 -1 0 Obtain resource
1 -1 0 Obtain resource
0 0 0 Semop function returns immediately
5 1 0 Return resource
6 -7 IPC_NOWAIT Semop function returns immediately
6 0 IPC_NOWAIT Semop function returns immediately
6 1 0 Return resource
7 -8 0 Sleep (until resource becomes available)
7 -8 0 Sleep (until signaled)
1 5 SEM_UNDO Sleep (until resource becomes available)
Creating 16 semaphores ...
Setting semaphore uid, gid and mode ... semid = 327680
Verifying semaphore info ...
Testing semop() with all Semaphore values, options and flags
Semval Semop Semflag Description
2 -1 0 Obtain resource
1 -1 0 Obtain resource
0 0 0 Semop function returns immediately
5 1 0 Return resource
6 -7 IPC_NOWAIT Semop function returns immediately
6 0 IPC_NOWAIT Semop function returns immediately
6 1 0 Return resource
7 -8 0 Sleep (until resource becomes available)
7 -8 0 Sleep (until signaled)
1 5 SEM_UNDO Sleep (until resource becomes available)
7 -8 0 Sleep (until semaphores are removed)
Creating 16 semaphores ...
Setting semaphore uid, gid and mode ... semid = 327680
Verifying semaphore info ...
Testing semop() with all Semaphore values, options and flags
Semval Semop Semflag Description
2 -1 0 Obtain resource
1 -1 0 Obtain resource
0 0 0 Semop function returns immediately
5 1 0 Return resource
6 -7 IPC_NOWAIT Semop function returns immediately
6 0 IPC_NOWAIT Semop function returns immediately
6 1 0 Return resource
7 -8 0 Sleep (until resource becomes available)
7 -8 0 Sleep (until signaled)
1 5 SEM_UNDO Sleep (until resource becomes available)
7 -8 0 Sleep (until semaphores are removed)
9 -1 SEM_UNDO Obtain resource
8 -8 SEM_UNDO Obtain resource
9 0 0 Sleep (until signaled)
Creating 16 semaphores ...
Setting semaphore uid, gid and mode ... semid = 327680
Verifying semaphore info ...
Testing semop() with all Semaphore values, options and flags
Semval Semop Semflag Description
2 -1 0 Obtain resource
1 -1 0 Obtain resource
0 0 0 Semop function returns immediately
5 1 0 Return resource
6 -7 IPC_NOWAIT Semop function returns immediately
6 0 IPC_NOWAIT Semop function returns immediately
6 1 0 Return resource
7 -8 0 Sleep (until resource becomes available)
7 -8 0 Sleep (until signaled)
1 5 SEM_UNDO Sleep (until resource becomes available)
7 -8 0 Sleep (until semaphores are removed)
9 -1 SEM_UNDO Obtain resource
8 -8 SEM_UNDO Obtain resource
9 0 0 Sleep (until signaled)
9 0 0 Sleep (until resource becomes available)
Creating 16 semaphores ...
Setting semaphore uid, gid and mode ... semid = 327680
Verifying semaphore info ...
Testing semop() with all Semaphore values, options and flags
Semval Semop Semflag Description
2 -1 0 Obtain resource
1 -1 0 Obtain resource
0 0 0 Semop function returns immediately
5 1 0 Return resource
6 -7 IPC_NOWAIT Semop function returns immediately
6 0 IPC_NOWAIT Semop function returns immediately
6 1 0 Return resource
7 -8 0 Sleep (until resource becomes available)
7 -8 0 Sleep (until signaled)
1 5 SEM_UNDO Sleep (until resource becomes available)
7 -8 0 Sleep (until semaphores are removed)
9 -1 SEM_UNDO Obtain resource
8 -8 SEM_UNDO Obtain resource
9 0 0 Sleep (until signaled)
9 0 0 Sleep (until resource becomes available)
4 0 0 Sleep (until semaphores are removed)
Creating 16 semaphores ...
Setting semaphore uid, gid and mode ... semid = 327680
Verifying semaphore info ...
Testing semop() with all Semaphore values, options and flags
Semval Semop Semflag Description
2 -1 0 Obtain resource
1 -1 0 Obtain resource
0 0 0 Semop function returns immediately
5 1 0 Return resource
6 -7 IPC_NOWAIT Semop function returns immediately
6 0 IPC_NOWAIT Semop function returns immediately
6 1 0 Return resource
7 -8 0 Sleep (until resource becomes available)
7 -8 0 Sleep (until signaled)
1 5 SEM_UNDO Sleep (until resource becomes available)
7 -8 0 Sleep (until semaphores are removed)
9 -1 SEM_UNDO Obtain resource
8 -8 SEM_UNDO Obtain resource
9 0 0 Sleep (until signaled)
9 0 0 Sleep (until resource becomes available)
4 0 0 Sleep (until semaphores are removed)
successful!
<<<execution_status>>>
initiation_status="ok"
duration=7 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmem_test_01 stime=1372175298
cmdline=" shmem_test_01"
contacts=""
analysis=exit
<<<test_output>>>
shmem_test_01: IPC Shared Memory TestSuite program
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
Index through shared memory segment ...
Release shared memory
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=shmem_test_02 stime=1372175298
cmdline=" shmem_test_02"
contacts=""
analysis=exit
<<<test_output>>>
shmem_test_02: IPC Shared Memory TestSuite program
Get shared memory segment (100000 bytes)
Parent: calculate shared memory segment checksum
shared memory checksum 00c26eb0
Spawning 2 child processes ...
child (00): checksum 00c26eb0
shmem_test_02: IPC Shared Memory TestSuite program
Get shared memory segment (100000 bytes)
Parent: calculate shared memory segment checksum
shared memory checksum 00c26eb0
Spawning 2 child processes ...
child (01): checksum 00c26eb0
shmem_test_02: IPC Shared Memory TestSuite program
Get shared memory segment (100000 bytes)
Parent: calculate shared memory segment checksum
shared memory checksum 00c26eb0
Spawning 2 child processes ...
Parent: children calculated segment successfully
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmem_test_03 stime=1372175298
cmdline=" shmem_test_03"
contacts=""
analysis=exit
<<<test_output>>>
shmem_test_03: IPC Shared Memory TestSuite program
Get shared memory segment (100000 bytes)
Spawning 2 child processes ...
child (00): checksum 00c26eb0
shmem_test_03: IPC Shared Memory TestSuite program
Get shared memory segment (100000 bytes)
Spawning 2 child processes ...
child (01): checksum 00c26eb0
shmem_test_03: IPC Shared Memory TestSuite program
Get shared memory segment (100000 bytes)
Spawning 2 child processes ...
Parent: calculate shared memory segment checksum
shared memory checksum 00c26eb0
Parent: children calculated segment successfully
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=shmem_test_04 stime=1372175298
cmdline=" shmem_test_04"
contacts=""
analysis=exit
<<<test_output>>>
shmem_test_04: IPC Shared Memory TestSuite program
Object type to map = Anonymous memory
Number of loops = 1
Number of procs = 1
Bytes per process = 16777216 (16MB)
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=2 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=shmem_test_05 stime=1372175298
cmdline=" shmem_test_05"
contacts=""
analysis=exit
<<<test_output>>>
shmem_test_05: IPC Shared Memory TestSuite program
mykey to uniquely identify the shared memory segment 0x33050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
offset of the shared memory segment 0x30000000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x34050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
offset of the shared memory segment 0x30200000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x35050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
offset of the shared memory segment 0x30400000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x36050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
offset of the shared memory segment 0x30600000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x37050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
offset of the shared memory segment 0x30800000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x38050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
offset of the shared memory segment 0x30a00000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x39050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
offset of the shared memory segment 0x30c00000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x41050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
offset of the shared memory segment 0x30d00000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x42050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
offset of the shared memory segment 0x30f00000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x43050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
offset of the shared memory segment 0x31000000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x45050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
offset of the shared memory segment 0x32000000
Index through shared memory segment ...
Detach from the segment using the shmdt subroutine
Release shared memory
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=shmem_test_06 stime=1372175298
cmdline=" shmem_test_06"
contacts=""
analysis=exit
<<<test_output>>>
shmem_test_06: IPC Shared Memory TestSuite program
mykey to uniquely identify the shared memory segment 0x33050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
Shared memory segment address : 0x7f93bef63000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x34050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
Shared memory segment address : 0x7f93be782000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x35050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
Shared memory segment address : 0x7f93be682000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x36050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
Shared memory segment address : 0x7f93be582000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x37050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
Shared memory segment address : 0x7f93be482000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x38050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
Shared memory segment address : 0x7f93be382000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x39050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
Shared memory segment address : 0x7f93be282000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x41050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
Shared memory segment address : 0x7f93be182000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x42050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
Shared memory segment address : 0x7f93be082000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x43050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
Shared memory segment address : 0x7f93bdf82000
Index through shared memory segment ...
mykey to uniquely identify the shared memory segment 0x45050405
Get shared memory segment (1048576 bytes)
Attach shared memory segment to process
Shared memory segment address : 0x7f93bde82000
Index through shared memory segment ...
Detach from the segment using the shmdt subroutine
Release shared memory
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=2 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=shmem_test_07 stime=1372175298
cmdline=" shmem_test_07"
contacts=""
analysis=exit
<<<test_output>>>
shmem_test_07: IPC Shared Memory TestSuite program
Number of writers = 2
Number of readers = 2
Bytes per writer = 200000
writer (000): shared memory checksum 01850160
reader (000) of writer (000): checksum 01850160
writer (001): shared memory checksum 018501a0
reader (001) of writer (000): checksum 01850160
reader (001) of writer (001): checksum 018501a0
reader (000) of writer (001): checksum 018501a0
Main: readers calculated segment successfully
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=signal_test_01 stime=1372175298
cmdline=" signal_test_01"
contacts=""
analysis=exit
<<<test_output>>>
signal_test_01: IPC Signals TestSuite program
Send SIGILL, SIGALRM, SIGIOT signals to process
received signal: (SIGILL)
received signal: (SIGALRM)
received signal: (SIGIOT/SIGABRT)
Block SIGILL, SIGALRM, SIGIOT signals, and resend signals + others
received signal: (SIGFPE)
received signal: (SIGTERM)
received signal: (SIGINT)
Block rest of signals
Change signal mask & wait until signal interrupts process
received signal: (SIGINT)
successful!
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=signal_test_02 stime=1372175300
cmdline=" signal_test_02"
contacts=""
analysis=exit
<<<test_output>>>
signal_test_02: IPC TestSuite program
Send SIGILL, SIGALRM, SIGIOT signals to process
received signal: (SIGILL)
received signal: (SIGALRM)
received signal: (SIGIOT/SIGABRT)
Block SIGILL, SIGALRM, SIGIOT signals, and resend signals + others
received signal: (SIGFPE)
received signal: (SIGTERM)
received signal: (SIGINT)
Block rest of signals
Change signal mask & wait until signal interrupts process
received signal: (SIGINT)
successful!
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=signal_test_03 stime=1372175302
cmdline=" signal_test_03"
contacts=""
analysis=exit
<<<test_output>>>
signal_test_03: IPC Signals TestSuite program
(BEGIN) Critial section
(END) Critial section
received signal: (SIGILL)
successful!
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=signal_test_04 stime=1372175303
cmdline=" signal_test_04"
contacts=""
analysis=exit
<<<test_output>>>
signal_test_04: IPC TestSuite program
Wait for SIGUSR1 signal from child process
Received SIGUSR1 (30)
Stop the child process
Wait for SIGCHLD signal from stopped child process
Received SIGCHLD (20)
Resume child process & wait for it to send SIGUSR1 signal
Received SIGUSR1 (20)
Now kill the child process with SIGUSR2 signal
Wait for SIGCHLD signal from killed child process
Received SIGCHLD (30)
successful!
<<<execution_status>>>
initiation_status="ok"
duration=4 termination_type=exited termination_id=0 corefile=no
cutime=399 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=signal_test_05 stime=1372175307
cmdline=" signal_test_05"
contacts=""
analysis=exit
<<<test_output>>>
signal_test_05: IPC TestSuite program
Spawning child process
Child: sending ALL signals to parent!
Sending (1)
Sending (2)
Sending (3)
Sending (4)
Sending (5)
Sending (6)
Sending (7)
Sending (8)
Sending (10)
Sending (11)
Sending (12)
Sending (13)
Sending (14)
Sending (15)
Sending (16)
Sending (18)
Sending (20)
Sending (21)
Sending (22)
Sending (23)
Sending (24)
Sending (25)
Sending (26)
Sending (27)
Sending (28)
Sending (29)
Sending (30)
Sending (31)
Sending (35)
Sending (36)
Sending (37)
Sending (38)
Sending (39)
Sending (40)
Sending (41)
Sending (42)
Sending (43)
Sending (44)
Sending (45)
Sending (46)
Sending (47)
Sending (48)
Sending (49)
Sending (50)
Sending (51)
Sending (52)
Sending (53)
Sending (54)
Sending (55)
Sending (56)
Sending (57)
Sending (58)
Sending (59)
Sending (60)
Sending (61)
Sending (62)
Sending (63)
Sending (64)
signal_test_05: IPC TestSuite program
Spawning child process
caught SIGCHLD(17) signal
Child process exited successfully
successful!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=signal_test_06 stime=1372175307
cmdline=" signal_test_06"
contacts=""
analysis=exit
<<<test_output>>>
signal_test_06: IPC TestSuite program
Block all signals from interrupting the process
Send MAX (1048576) SIGUSR1 signals to the process...
Ensure at least one SIGUSR1 signal is pending
Change signal mask & wait for SIGUSR1 signal
caught SIGUSR1 (10) signal
successful!
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=41 cstime=40
<<<test_end>>>
<<<test_start>>>
tag=signal_test_07 stime=1372175310
cmdline=" signal_test_07"
contacts=""
analysis=exit
<<<test_output>>>
signal_test_07: IPC TestSuite program
Send MAX (1048576) signals to the process...
Received EVERY signal!
successful!
incrementing stop
<<<execution_status>>>
initiation_status="ok"
duration=4 termination_type=exited termination_id=0 corefile=no
cutime=114 cstime=233
<<<test_end>>>
INFO: ltp-pan reported all tests PASS
LTP Version: 20130503
###############################################################
Done executing testcases.
LTP Version: 20130503
###############################################################
[-- Attachment #3: 0001-Revert-ipc-remove-unused-functions.patch --]
[-- Type: application/octet-stream, Size: 1754 bytes --]
From cd835090a81f456ec030993c3f0c450937ebf901 Mon Sep 17 00:00:00 2001
From: Sedat Dilek <sedat.dilek@gmail.com>
Date: Fri, 21 Jun 2013 20:34:47 +0200
Subject: [PATCH 1/2] Revert "ipc: remove unused functions"
This reverts commit 941ce57c81dcceadf55265616ee1e8bef18b0ad3.
Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>
---
ipc/msg.c | 25 +++++++++++++++++++++++++
ipc/sem.c | 1 +
2 files changed, 26 insertions(+)
diff --git a/ipc/msg.c b/ipc/msg.c
index a1cf70e..e6550f6 100644
--- a/ipc/msg.c
+++ b/ipc/msg.c
@@ -141,6 +141,31 @@ void __init msg_init(void)
IPC_MSG_IDS, sysvipc_msg_proc_show);
}
+/*
+ * msg_lock_(check_) routines are called in the paths where the rw_mutex
+ * is not held.
+ */
+static inline struct msg_queue *msg_lock(struct ipc_namespace *ns, int id)
+{
+ struct kern_ipc_perm *ipcp = ipc_lock(&msg_ids(ns), id);
+
+ if (IS_ERR(ipcp))
+ return (struct msg_queue *)ipcp;
+
+ return container_of(ipcp, struct msg_queue, q_perm);
+}
+
+static inline struct msg_queue *msg_lock_check(struct ipc_namespace *ns,
+ int id)
+{
+ struct kern_ipc_perm *ipcp = ipc_lock_check(&msg_ids(ns), id);
+
+ if (IS_ERR(ipcp))
+ return (struct msg_queue *)ipcp;
+
+ return container_of(ipcp, struct msg_queue, q_perm);
+}
+
static inline struct msg_queue *msq_obtain_object(struct ipc_namespace *ns, int id)
{
struct kern_ipc_perm *ipcp = ipc_obtain_object(&msg_ids(ns), id);
diff --git a/ipc/sem.c b/ipc/sem.c
index 4108889..b93f9c9 100644
--- a/ipc/sem.c
+++ b/ipc/sem.c
@@ -1455,6 +1455,7 @@ static int semctl_down(struct ipc_namespace *ns, int semid,
&semid64.sem_perm, 0);
if (IS_ERR(ipcp)) {
err = PTR_ERR(ipcp);
+ /* the ipc lock is not held upon failure */
goto out_unlock1;
}
--
1.8.3.1
[-- Attachment #4: 0002-Revert-ipc-msg-shorten-critical-region-in-msgrcv.patch --]
[-- Type: application/octet-stream, Size: 4612 bytes --]
From a561379a0a2d8a32d31c9fd1c0c0760d18679a68 Mon Sep 17 00:00:00 2001
From: Sedat Dilek <sedat.dilek@gmail.com>
Date: Fri, 21 Jun 2013 20:34:49 +0200
Subject: [PATCH 2/2] Revert "ipc,msg: shorten critical region in msgrcv"
This reverts commit 62190df4081ee8504e3611d45edb40450cb408ac.
Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>
---
ipc/msg.c | 57 +++++++++++++++++++++++++--------------------------------
1 file changed, 25 insertions(+), 32 deletions(-)
diff --git a/ipc/msg.c b/ipc/msg.c
index e6550f6..f2a1a8f 100644
--- a/ipc/msg.c
+++ b/ipc/msg.c
@@ -885,19 +885,21 @@ static struct msg_msg *find_msg(struct msg_queue *msq, long *msgtyp, int mode)
return ERR_PTR(-EAGAIN);
}
-long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgflg,
+
+long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp,
+ int msgflg,
long (*msg_handler)(void __user *, struct msg_msg *, size_t))
{
- int mode;
struct msg_queue *msq;
+ struct msg_msg *msg;
+ int mode;
struct ipc_namespace *ns;
- struct msg_msg *msg, *copy = NULL;
+ struct msg_msg *copy = NULL;
ns = current->nsproxy->ipc_ns;
if (msqid < 0 || (long) bufsz < 0)
return -EINVAL;
-
if (msgflg & MSG_COPY) {
copy = prepare_copy(buf, min_t(size_t, bufsz, ns->msg_ctlmax));
if (IS_ERR(copy))
@@ -905,10 +907,8 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
}
mode = convert_mode(&msgtyp, msgflg);
- rcu_read_lock();
- msq = msq_obtain_object_check(ns, msqid);
+ msq = msg_lock_check(ns, msqid);
if (IS_ERR(msq)) {
- rcu_read_unlock();
free_copy(copy);
return PTR_ERR(msq);
}
@@ -918,9 +918,10 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
msg = ERR_PTR(-EACCES);
if (ipcperms(ns, &msq->q_perm, S_IRUGO))
- goto out_unlock1;
+ goto out_unlock;
msg = find_msg(msq, &msgtyp, mode);
+
if (!IS_ERR(msg)) {
/*
* Found a suitable message.
@@ -928,7 +929,7 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
*/
if ((bufsz < msg->m_ts) && !(msgflg & MSG_NOERROR)) {
msg = ERR_PTR(-E2BIG);
- goto out_unlock1;
+ goto out_unlock;
}
/*
* If we are copying, then do not unlink message and do
@@ -936,10 +937,8 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
*/
if (msgflg & MSG_COPY) {
msg = copy_msg(msg, copy);
- goto out_unlock1;
+ goto out_unlock;
}
-
- ipc_lock_object(&msq->q_perm);
list_del(&msg->m_list);
msq->q_qnum--;
msq->q_rtime = get_seconds();
@@ -948,17 +947,14 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
atomic_sub(msg->m_ts, &ns->msg_bytes);
atomic_dec(&ns->msg_hdrs);
ss_wakeup(&msq->q_senders, 0);
-
- goto out_unlock0;
+ msg_unlock(msq);
+ break;
}
-
/* No message waiting. Wait for a message */
if (msgflg & IPC_NOWAIT) {
msg = ERR_PTR(-ENOMSG);
- goto out_unlock1;
+ goto out_unlock;
}
-
- ipc_lock_object(&msq->q_perm);
list_add_tail(&msr_d.r_list, &msq->q_receivers);
msr_d.r_tsk = current;
msr_d.r_msgtype = msgtyp;
@@ -969,9 +965,8 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
msr_d.r_maxsize = bufsz;
msr_d.r_msg = ERR_PTR(-EAGAIN);
current->state = TASK_INTERRUPTIBLE;
+ msg_unlock(msq);
- ipc_unlock_object(&msq->q_perm);
- rcu_read_unlock();
schedule();
/* Lockless receive, part 1:
@@ -1001,34 +996,32 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
* If there is a message or an error then accept it without
* locking.
*/
- if (msg != ERR_PTR(-EAGAIN))
- goto out_unlock1;
+ if (msg != ERR_PTR(-EAGAIN)) {
+ rcu_read_unlock();
+ break;
+ }
/* Lockless receive, part 3:
* Acquire the queue spinlock.
*/
- ipc_lock_object(&msq->q_perm);
+ ipc_lock_by_ptr(&msq->q_perm);
+ rcu_read_unlock();
/* Lockless receive, part 4:
* Repeat test after acquiring the spinlock.
*/
msg = (struct msg_msg*)msr_d.r_msg;
if (msg != ERR_PTR(-EAGAIN))
- goto out_unlock0;
+ goto out_unlock;
list_del(&msr_d.r_list);
if (signal_pending(current)) {
msg = ERR_PTR(-ERESTARTNOHAND);
- goto out_unlock0;
+out_unlock:
+ msg_unlock(msq);
+ break;
}
-
- ipc_unlock_object(&msq->q_perm);
}
-
-out_unlock0:
- ipc_unlock_object(&msq->q_perm);
-out_unlock1:
- rcu_read_unlock();
if (IS_ERR(msg)) {
free_copy(copy);
return PTR_ERR(msg);
--
1.8.3.1
[-- Attachment #5: runltp-f-syscalls_3.10.0-rc7-next20130624-1-iniza-small_dash.txt --]
[-- Type: text/plain, Size: 344245 bytes --]
INFO: creating /opt/ltp/results directory
Checking for required user/group ids
'nobody' user id and group found.
'bin' user id and group found.
'daemon' user id and group found.
Users group found.
Sys group found.
Required users/groups exist.
If some fields are empty or look unusual you may have an old version.
Compare to the current minimal requirements in Documentation/Changes.
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04.2 LTS"
NAME="Ubuntu"
VERSION="12.04.2 LTS, Precise Pangolin"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu precise (12.04.2 LTS)"
VERSION_ID="12.04"
Linux fambox 3.10.0-rc7-next20130624-1-iniza-small #1 SMP Mon Jun 24 12:10:13 CEST 2013 x86_64 x86_64 x86_64 GNU/Linux
Gnu C gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Gnu make 3.81
util-linux linux 2.20.1
mount linux 2.20.1 (with libblkid and selinux support)
modutils 6
e2fsprogs 1.42
PPP 2.4.5
Linux C Library > libc.2.15
Dynamic linker (ldd) 2.15
Procps 3.2.8
Net-tools 1.60
iproute2 iproute2-ss121211
Kbd 1.15.2
Sh-utils 8.13
Modules Loaded arc4 bnep iwldvm rfcomm snd_hda_codec_hdmi mac80211 snd_hda_codec_realtek snd_hda_intel snd_hda_codec uvcvideo snd_hwdep snd_pcm videobuf2_vmalloc joydev videobuf2_memops snd_page_alloc videobuf2_core snd_seq_midi videodev snd_seq_midi_event iwlwifi snd_rawmidi i915 parport_pc snd_seq ppdev snd_timer snd_seq_device psmouse btusb cfg80211 snd bluetooth soundcore samsung_laptop i2c_algo_bit serio_raw drm_kms_helper lpc_ich drm wmi video mac_hid lp parport hid_generic usbhid hid usb_storage r8169 mii
free reports:
total used free shared buffers cached
Mem: 3945272 1974176 1971096 0 803232 774516
-/+ buffers/cache: 396428 3548844
Swap: 262140 0 262140
/proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping : 7
microcode : 0x28
cpu MHz : 1712.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 3192.86
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping : 7
microcode : 0x28
cpu MHz : 2144.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 3192.86
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping : 7
microcode : 0x28
cpu MHz : 1664.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 3192.86
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping : 7
microcode : 0x28
cpu MHz : 2080.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 3192.86
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
10240+0 records in
10240+0 records out
10240000 bytes (10 MB) copied, 0.0511954 s, 200 MB/s
mke2fs 1.42 (29-Nov-2011)
Discarding device blocks: 1024/10000\b\b\b\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b\b\b\bdone
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
Stride=0 blocks, Stripe width=0 blocks
2512 inodes, 10000 blocks
500 blocks (5.00%) reserved for the super user
First data block=1
Maximum filesystem blocks=10485760
2 block groups
8192 blocks per group, 8192 fragments per group
1256 inodes per group
Superblock backups stored on blocks:
8193
Allocating group tables: 0/2\b\b\b1/2\b\b\b \b\b\bdone
Writing inode tables: 0/2\b\b\b1/2\b\b\b \b\b\bdone
Creating journal (1024 blocks): done
Writing superblocks and filesystem accounting information: 0/2\b\b\b1/2\b\b\b \b\b\bdone
COMMAND: /opt/ltp/bin/ltp-pan -e -S -a 2434 -n 2434 -p -f /tmp/ltp-kN6m0brwl9/alltests -l /opt/ltp/results/LTP_RUN_ON-2013_Jun_25-17h_35m_47s.log -C /opt/ltp/output/LTP_RUN_ON-2013_Jun_25-17h_35m_47s.failed
-e LOG File: /opt/ltp/results/LTP_RUN_ON-2013_Jun_25-17h_35m_47s.log
-e FAILED COMMAND File: /opt/ltp/output/LTP_RUN_ON-2013_Jun_25-17h_35m_47s.failed
Running tests.......
<<<test_start>>>
tag=abort01 stime=1372174548
cmdline="ulimit -c 1024;abort01"
contacts=""
analysis=exit
<<<test_output>>>
abort01 1 TPASS : abort dumped core
abort01 2 TPASS : abort raised SIGIOT
abort01 1 TPASS : abort dumped core
abort01 2 TPASS : abort raised SIGIOT
abort01 3 TPASS : abort dumped core
abort01 4 TPASS : abort raised SIGIOT
abort01 1 TPASS : abort dumped core
abort01 2 TPASS : abort raised SIGIOT
abort01 3 TPASS : abort dumped core
abort01 4 TPASS : abort raised SIGIOT
abort01 5 TPASS : abort dumped core
abort01 6 TPASS : abort raised SIGIOT
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=accept01 stime=1372174550
cmdline="accept01"
contacts=""
analysis=exit
<<<test_output>>>
accept01 1 TPASS : bad file descriptor successful
accept01 2 TPASS : bad file descriptor successful
accept01 3 TPASS : invalid socket buffer successful
accept01 4 TPASS : invalid salen successful
accept01 5 TPASS : invalid salen successful
accept01 6 TPASS : no queued connections successful
accept01 7 TPASS : UDP accept successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=accept4_01 stime=1372174550
cmdline="accept4_01"
contacts=""
analysis=exit
<<<test_output>>>
accept04_01 1 TPASS : Test passed
accept04_01 2 TPASS : Test passed
accept04_01 3 TPASS : Test passed
accept04_01 4 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=access01 stime=1372174550
cmdline="access01"
contacts=""
analysis=exit
<<<test_output>>>
access01 1 TPASS : access(accessfile, F_OK) returned 0
access01 2 TPASS : access(accessfile, X_OK) returned 0
access01 3 TPASS : access(accessfile, W_OK) returned 0
access01 4 TPASS : access(accessfile, R_OK) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=access02 stime=1372174550
cmdline="access02"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=access03 stime=1372174550
cmdline="access03"
contacts=""
analysis=exit
<<<test_output>>>
access03 1 TPASS : access(0x7f3940f83000, R_OK) failed as expected with EFAULT
access03 2 TPASS : access(0x7f3940f83000, W_OK) failed as expected with EFAULT
access03 3 TPASS : access(0x7f3940f83000, X_OK) failed as expected with EFAULT
access03 4 TPASS : access(0x7f3940f83000, F_OK) failed as expected with EFAULT
access03 5 TPASS : access(0x1000001, R_OK) failed as expected with EFAULT
access03 6 TPASS : access(0x1000001, W_OK) failed as expected with EFAULT
access03 7 TPASS : access(0x1000001, X_OK) failed as expected with EFAULT
access03 8 TPASS : access(0x1000001, F_OK) failed as expected with EFAULT
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=access04 stime=1372174550
cmdline="access04"
contacts=""
analysis=exit
<<<test_output>>>
access04 1 TPASS : functionality of access(testdir/testfile, F_OK) ok
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=access05 stime=1372174550
cmdline="access05"
contacts=""
analysis=exit
<<<test_output>>>
access05 1 TPASS : access failed as expected: TEST_ERRNO=EACCES(13): Permission denied
access05 2 TPASS : access failed as expected: TEST_ERRNO=EACCES(13): Permission denied
access05 3 TPASS : access failed as expected: TEST_ERRNO=EACCES(13): Permission denied
access05 4 TPASS : access failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
access05 5 TPASS : access failed as expected: TEST_ERRNO=EFAULT(14): Bad address
access05 6 TPASS : access failed as expected: TEST_ERRNO=EFAULT(14): Bad address
access05 7 TPASS : access failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
access05 8 TPASS : access failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=acct01 stime=1372174550
cmdline="acct01"
contacts=""
analysis=exit
<<<test_output>>>
acct01 1 TPASS : Failed with EISDIR as expected
acct01 2 TPASS : Failed with EACCES as expected
acct01 3 TPASS : Failed with ENOENT as expected
acct01 4 TPASS : Failed with ENOTDIR as expected
acct01 5 TPASS : Failed with EPERM as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=acct02 stime=1372174550
cmdline="acct02"
contacts=""
analysis=exit
<<<test_output>>>
acct02 1 TPASS : Received expected error: EPERM
acct02 2 TPASS : Received expected error: EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=add_key01 stime=1372174550
cmdline="add_key01"
contacts=""
analysis=exit
<<<test_output>>>
add_key01 1 TPASS : add_key call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=add_key02 stime=1372174550
cmdline="add_key02"
contacts=""
analysis=exit
<<<test_output>>>
add_key02 0 TINFO : called add_key() with wrong args got EXPECTED errno: TEST_ERRNO=EINVAL(22): Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=adjtimex01 stime=1372174550
cmdline="adjtimex01"
contacts=""
analysis=exit
<<<test_output>>>
adjtimex01 1 TPASS : adjtimex() with mode 16447 returned 5
adjtimex01 2 TPASS : adjtimex() with mode 32769 returned 5
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=adjtimex02 stime=1372174550
cmdline="adjtimex02"
contacts=""
analysis=exit
<<<test_output>>>
adjtimex02 1 TPASS : Test Passed, adjtimex() returned -1: TEST_ERRNO=EFAULT(14): Bad address
adjtimex02 2 TPASS : Test Passed, adjtimex() returned -1: TEST_ERRNO=EINVAL(22): Invalid argument
adjtimex02 3 TPASS : Test Passed, adjtimex() returned -1: TEST_ERRNO=EINVAL(22): Invalid argument
adjtimex02 4 TCONF : this kernel normalizes buf.offset value if it is outside the acceptable range.
adjtimex02 5 TCONF : this kernel normalizes buf.offset value if it is outside the acceptable range.
adjtimex02 6 TPASS : Test Passed, adjtimex() returned -1: TEST_ERRNO=EPERM(1): Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm01 stime=1372174550
cmdline="alarm01"
contacts=""
analysis=exit
<<<test_output>>>
alarm01 1 TPASS : alarm(1) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm02 stime=1372174550
cmdline="alarm02"
contacts=""
analysis=exit
<<<test_output>>>
alarm02 1 TPASS : alarm(18446744073709551615) returned 0 as expected for value -1
alarm02 2 TPASS : alarm(18446744073709551615) returned 0 as expected for value ULONG_MAX
alarm02 3 TPASS : alarm(0) returned 0 as expected for value ULONG_MAX+1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm03 stime=1372174550
cmdline="alarm03"
contacts=""
analysis=exit
<<<test_output>>>
2606: alarm(100), fork, alarm(0) child's alarm returned 0
alarm03 2 TPASS : alarm(100), fork, alarm(0) parent's alarm returned 100
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm05 stime=1372174550
cmdline="alarm05"
contacts=""
analysis=exit
<<<test_output>>>
alarm05 1 TPASS : Functionality of alarm(5) successful
<<<execution_status>>>
initiation_status="ok"
duration=8 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm06 stime=1372174558
cmdline="alarm06"
contacts=""
analysis=exit
<<<test_output>>>
alarm06 1 TPASS : Functionality of alarm(0) successful
<<<execution_status>>>
initiation_status="ok"
duration=15 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm07 stime=1372174573
cmdline="alarm07"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=5 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=asyncio02 stime=1372174578
cmdline="asyncio02"
contacts=""
analysis=exit
<<<test_output>>>
asyncio02 1 TPASS : More than BUFSIZE bytes multiple synchronous writes to a file check out ok
asyncio02 2 TPASS : BUFSIZE bytes multiple synchronous writes to a file checks out ok
asyncio02 3 TPASS : Less than BUFSIZE bytes multiple synchronous writes to a file checks out ok
asyncio02 4 TPASS : More than BUFSIZE bytes multiple synchronous writes to a file check out ok
asyncio02 5 TPASS : BUFSIZE bytes multiple synchronous writes to a file checks out ok
asyncio02 6 TPASS : Less than BUFSIZE bytes multiple synchronous writes to a file checks out ok
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=bind01 stime=1372174578
cmdline="bind01"
contacts=""
analysis=exit
<<<test_output>>>
bind01 1 TPASS : invalid sockaddr successful
bind01 2 TPASS : invalid salen successful
bind01 3 TPASS : invalid socket successful
bind01 4 TPASS : INADDR_ANYPORT successful
bind01 5 TPASS : UNIX-domain of current directory successful
bind01 6 TPASS : non-local address successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=bind02 stime=1372174578
cmdline="bind02"
contacts=""
analysis=exit
<<<test_output>>>
bind02 0 TINFO : Defaulting to user nobody
bind02 0 TINFO : Socket will try to be bind by user: nobody, group: nogroup
bind02 1 TPASS : correct error
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=bdflush01 stime=1372174578
cmdline="bdflush01"
contacts=""
analysis=exit
<<<test_output>>>
bdflush01 2 TCONF : syscall __NR_bdflush not supported on your arch
bdflush01 3 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=brk01 stime=1372174578
cmdline="brk01"
contacts=""
analysis=exit
<<<test_output>>>
brk01 1 TPASS : brk(10640604) returned 0, new size verified by sbrk
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=capget01 stime=1372174578
cmdline="capget01"
contacts=""
analysis=exit
<<<test_output>>>
capget01 1 TPASS : capget() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=capget02 stime=1372174578
cmdline="capget02"
contacts=""
analysis=exit
<<<test_output>>>
capget02 1 TPASS : capget failed as expected: TEST_ERRNO=EFAULT(14): Bad address
capget02 2 TPASS : capget failed as expected: TEST_ERRNO=EFAULT(14): Bad address
capget02 3 TPASS : capget failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
capget02 4 TPASS : capget failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
capget02 5 TPASS : capget failed as expected: TEST_ERRNO=ESRCH(3): No such process
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=capset01 stime=1372174578
cmdline="capset01"
contacts=""
analysis=exit
<<<test_output>>>
capset01 1 TPASS : capset() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=capset02 stime=1372174578
cmdline="capset02"
contacts=""
analysis=exit
<<<test_output>>>
capset02 1 TPASS : capset() returned -1, errno: EFAULT
capset02 2 TPASS : capset() returned -1, errno: EFAULT
capset02 3 TPASS : capset() returned -1, errno: EINVAL
capset02 4 TPASS : capset() returned -1, errno: EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=cacheflush01 stime=1372174578
cmdline="cacheflush01"
contacts=""
analysis=exit
<<<test_output>>>
cacheflush01 1 TCONF : syscall __NR_cacheflush not supported on your arch
cacheflush01 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chdir01 stime=1372174578
cmdline="chdir01"
contacts=""
analysis=exit
<<<test_output>>>
chdir01 0 TINFO : Found file .
chdir01 0 TINFO : Found file chdirtest
chdir01 0 TINFO : Found file ..
chdir01 1 TPASS : failed as expected with ENOTDIR
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chdir01A stime=1372174578
cmdline="symlink01 -T chdir01"
contacts=""
analysis=exit
<<<test_output>>>
chdir01 1 TPASS : chdir(2) to object file location through symbolic link file is ok
chdir01 2 TPASS : chdir(2) to non-existent object file location through symbolic link file failed as expected
chdir01 3 TPASS : Nested symbolic link access condition caught. ELOOP is returned
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chdir02 stime=1372174578
cmdline="chdir02"
contacts=""
analysis=exit
<<<test_output>>>
chdir02 1 TPASS : chdir(/) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chdir03 stime=1372174578
cmdline="chdir03"
contacts=""
analysis=exit
<<<test_output>>>
got EACCES as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chdir04 stime=1372174578
cmdline="chdir04"
contacts=""
analysis=exit
<<<test_output>>>
chdir04 1 TPASS : failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chdir04 2 TPASS : failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
chdir04 3 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod01 stime=1372174578
cmdline="chmod01"
contacts=""
analysis=exit
<<<test_output>>>
chmod01 1 TPASS : Functionality of chmod(testfile, 0) successful
chmod01 2 TPASS : Functionality of chmod(testfile, 07) successful
chmod01 3 TPASS : Functionality of chmod(testfile, 070) successful
chmod01 4 TPASS : Functionality of chmod(testfile, 0700) successful
chmod01 5 TPASS : Functionality of chmod(testfile, 0777) successful
chmod01 6 TPASS : Functionality of chmod(testfile, 02777) successful
chmod01 7 TPASS : Functionality of chmod(testfile, 04777) successful
chmod01 8 TPASS : Functionality of chmod(testfile, 06777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod01A stime=1372174578
cmdline="symlink01 -T chmod01"
contacts=""
analysis=exit
<<<test_output>>>
chmod01 1 TPASS : chmod(2) of object file permissions through symbolic link file is ok
chmod01 2 TPASS : chmod(2) error when accessing non-existent object through symbolic link is caught
chmod01 3 TPASS : Nested symbolic link access condition caught. ELOOP is returned
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod02 stime=1372174578
cmdline="chmod02"
contacts=""
analysis=exit
<<<test_output>>>
chmod02 1 TPASS : chmod(tfile, 0) returned 0
chmod02 2 TPASS : chmod(tfile, 07) returned 0
chmod02 3 TPASS : chmod(tfile, 070) returned 0
chmod02 4 TPASS : chmod(tfile, 0700) returned 0
chmod02 5 TPASS : chmod(tfile, 0777) returned 0
chmod02 6 TPASS : chmod(tfile, 02777) returned 0
chmod02 7 TPASS : chmod(tfile, 04777) returned 0
chmod02 8 TPASS : chmod(tfile, 06777) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chmod03 stime=1372174578
cmdline="chmod03"
contacts=""
analysis=exit
<<<test_output>>>
chmod03 1 TPASS : Functionality of chmod(testfile, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod04 stime=1372174578
cmdline="chmod04"
contacts=""
analysis=exit
<<<test_output>>>
chmod04 1 TPASS : Functionality of chmod(testdir_4, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod05 stime=1372174578
cmdline="chmod05"
contacts=""
analysis=exit
<<<test_output>>>
chmod05 1 TPASS : Functionality of chmod(testdir, 043777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod06 stime=1372174578
cmdline="chmod06"
contacts=""
analysis=exit
<<<test_output>>>
chmod06 1 TPASS : chmod failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
chmod06 2 TPASS : chmod failed as expected: TEST_ERRNO=EACCES(13): Permission denied
chmod06 3 TPASS : chmod failed as expected: TEST_ERRNO=EFAULT(14): Bad address
chmod06 4 TPASS : chmod failed as expected: TEST_ERRNO=EFAULT(14): Bad address
chmod06 5 TPASS : chmod failed as expected: TEST_ERRNO=EFAULT(14): Bad address
chmod06 6 TPASS : chmod failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chmod06 7 TPASS : chmod failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
chmod06 8 TPASS : chmod failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod07 stime=1372174578
cmdline="chmod07"
contacts=""
analysis=exit
<<<test_output>>>
chmod07 1 TPASS : Functionality of chmod(testfile, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown01 stime=1372174578
cmdline="chown01"
contacts=""
analysis=exit
<<<test_output>>>
chown01 1 TPASS : chown(t_2718, 0,0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chown01_16 stime=1372174578
cmdline="chown01_16"
contacts=""
analysis=exit
<<<test_output>>>
chown01 1 TPASS : chown(t_2719, 0,0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown02 stime=1372174578
cmdline="chown02"
contacts=""
analysis=exit
<<<test_output>>>
chown02 1 TPASS : chown(testfile1, ..) succeeded
chown02 2 TPASS : chown(testfile2, ..) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown02_16 stime=1372174578
cmdline="chown02_16"
contacts=""
analysis=exit
<<<test_output>>>
chown02 1 TPASS : chown(testfile1, ..) succeeded
chown02 2 TPASS : chown(testfile2, ..) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown03 stime=1372174578
cmdline="chown03"
contacts=""
analysis=exit
<<<test_output>>>
chown03 1 TPASS : chown(testfile, ..) was successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown03_16 stime=1372174578
cmdline="chown03_16"
contacts=""
analysis=exit
<<<test_output>>>
chown03 1 TPASS : chown(testfile, ..) was successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown04 stime=1372174578
cmdline="chown04"
contacts=""
analysis=exit
<<<test_output>>>
chown04 1 TPASS : chown failed: TEST_ERRNO=EPERM(1): Operation not permitted
chown04 2 TPASS : chown failed: TEST_ERRNO=EACCES(13): Permission denied
chown04 3 TPASS : chown failed: TEST_ERRNO=EFAULT(14): Bad address
chown04 4 TPASS : chown failed: TEST_ERRNO=EFAULT(14): Bad address
chown04 5 TPASS : chown failed: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chown04 6 TPASS : chown failed: TEST_ERRNO=ENOENT(2): No such file or directory
chown04 7 TPASS : chown failed: TEST_ERRNO=ENOTDIR(20): Not a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chown04_16 stime=1372174578
cmdline="chown04_16"
contacts=""
analysis=exit
<<<test_output>>>
chown04 1 TPASS : chown failed: TEST_ERRNO=EPERM(1): Operation not permitted
chown04 2 TPASS : chown failed: TEST_ERRNO=EACCES(13): Permission denied
chown04 3 TPASS : chown failed: TEST_ERRNO=EFAULT(14): Bad address
chown04 4 TPASS : chown failed: TEST_ERRNO=EFAULT(14): Bad address
chown04 5 TPASS : chown failed: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chown04 6 TPASS : chown failed: TEST_ERRNO=ENOENT(2): No such file or directory
chown04 7 TPASS : chown failed: TEST_ERRNO=ENOTDIR(20): Not a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown05 stime=1372174578
cmdline="chown05"
contacts=""
analysis=exit
<<<test_output>>>
chown05 1 TPASS : chown succeeded
chown05 2 TPASS : chown succeeded
chown05 3 TPASS : chown succeeded
chown05 4 TPASS : chown succeeded
chown05 5 TPASS : chown succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown05_16 stime=1372174578
cmdline="chown05_16"
contacts=""
analysis=exit
<<<test_output>>>
chown05 1 TPASS : chown succeeded
chown05 2 TPASS : chown succeeded
chown05 3 TPASS : chown succeeded
chown05 4 TPASS : chown succeeded
chown05 5 TPASS : chown succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chroot01 stime=1372174578
cmdline="chroot01"
contacts=""
analysis=exit
<<<test_output>>>
chroot01 1 TPASS : chroot set errno to EPERM.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chroot02 stime=1372174578
cmdline="chroot02"
contacts=""
analysis=exit
<<<test_output>>>
chroot02 1 TPASS : chroot functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chroot03 stime=1372174578
cmdline="chroot03"
contacts=""
analysis=exit
<<<test_output>>>
chroot03 1 TPASS : failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chroot03 2 TPASS : failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
chroot03 3 TPASS : failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
chroot03 4 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chroot04 stime=1372174578
cmdline="chroot04"
contacts=""
analysis=exit
<<<test_output>>>
chroot04 1 TPASS : got EACCESS as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clock_getres01 stime=1372174578
cmdline="clock_getres01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
clock_getres01 0 TINFO : (case00) START
clock_getres01 1 TPASS : (case00) END
clock_getres01 0 TINFO : (case01) START
clock_getres01 2 TPASS : (case01) END
clock_getres01 0 TINFO : (case02) START
clock_getres01 3 TPASS : (case02) END
clock_getres01 0 TINFO : (case03) START
clock_getres01 4 TPASS : (case03) END
clock_getres01 0 TINFO : (case04) START
clock_getres01 5 TPASS : (case04) END
clock_getres01 0 TINFO : (case05) START
clock_getres01 6 TPASS : (case05) END
clock_getres01 7 TPASS : clock_getres call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clock_nanosleep01 stime=1372174578
cmdline="clock_nanosleep01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=0 errno=0 (Success)
RESULT: return value(ret)=0 errno=0 (Success)
EXPECT: return value(ret)=0 errno=0 (Success)
RESULT: return value(ret)=0 errno=0 (Success)
EXPECT: return value(ret)=22 errno=0 (Success)
RESULT: return value(ret)=22 errno=0 (Success)
EXPECT: return value(ret)=22 errno=0 (Success)
RESULT: return value(ret)=22 errno=0 (Success)
EXPECT: return value(ret)=22 errno=0 (Success)
RESULT: return value(ret)=22 errno=0 (Success)
EXPECT: return value(ret)=4 errno=0 (Success)
RESULT: return value(ret)=4 errno=0 (Success)
clock_nanosleep01 0 TINFO : (case00) START
clock_nanosleep01 0 TINFO : check sleep time: (min:480) < 500 < (max:520) (msec)
clock_nanosleep01 0 TINFO : remain time: 0 4200395
clock_nanosleep01 0 TINFO : (case00) END => OK
clock_nanosleep01 0 TINFO : (case01) START
clock_nanosleep01 0 TINFO : check sleep time: (min:480) < 500 < (max:520) (msec)
clock_nanosleep01 0 TINFO : remain time: 0 4200395
clock_nanosleep01 0 TINFO : (case01) END => OK
clock_nanosleep01 0 TINFO : (case02) START
clock_nanosleep01 0 TINFO : remain time: 0 4200395
clock_nanosleep01 0 TINFO : (case02) END => OK
clock_nanosleep01 0 TINFO : (case03) START
clock_nanosleep01 0 TINFO : remain time: 0 4200395
clock_nanosleep01 0 TINFO : (case03) END => OK
clock_nanosleep01 0 TINFO : (case04) START
clock_nanosleep01 0 TINFO : remain time: 0 4200395
clock_nanosleep01 0 TINFO : (case04) END => OK
clock_nanosleep01 0 TINFO : (case05) START
clock_nanosleep01 0 TINFO : remain time: 9 499690496
clock_nanosleep01 0 TINFO : (case05) END => OK
clock_nanosleep01 1 TPASS : clock_nanosleep call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clock_nanosleep2_01 stime=1372174579
cmdline="clock_nanosleep2_01"
contacts=""
analysis=exit
<<<test_output>>>
clock_nanosleep2_01 0 TINFO : Iteration = 0
clock_nanosleep2_01 0 TINFO : Iteration = 1
clock_nanosleep2_01 0 TINFO : Iteration = 2
clock_nanosleep2_01 0 TINFO : Iteration = 3
clock_nanosleep2_01 0 TINFO : Iteration = 4
clock_nanosleep2_01 0 TINFO : Iteration = 5
clock_nanosleep2_01 0 TINFO : Iteration = 6
clock_nanosleep2_01 0 TINFO : Iteration = 7
clock_nanosleep2_01 0 TINFO : Iteration = 8
clock_nanosleep2_01 0 TINFO : Iteration = 9
clock_nanosleep2_01 0 TINFO : Iteration = 10
clock_nanosleep2_01 0 TINFO : Iteration = 11
clock_nanosleep2_01 0 TINFO : Iteration = 12
clock_nanosleep2_01 0 TINFO : Iteration = 13
clock_nanosleep2_01 0 TINFO : Iteration = 14
clock_nanosleep2_01 0 TINFO : Iteration = 15
clock_nanosleep2_01 0 TINFO : Iteration = 16
clock_nanosleep2_01 0 TINFO : Iteration = 17
clock_nanosleep2_01 0 TINFO : Iteration = 18
clock_nanosleep2_01 0 TINFO : Iteration = 19
clock_nanosleep2_01 0 TINFO : Iteration = 20
clock_nanosleep2_01 0 TINFO : Iteration = 21
clock_nanosleep2_01 0 TINFO : Iteration = 22
clock_nanosleep2_01 0 TINFO : Iteration = 23
clock_nanosleep2_01 0 TINFO : Iteration = 24
clock_nanosleep2_01 0 TINFO : Iteration = 25
clock_nanosleep2_01 0 TINFO : Iteration = 26
clock_nanosleep2_01 0 TINFO : Iteration = 27
clock_nanosleep2_01 0 TINFO : Iteration = 28
clock_nanosleep2_01 0 TINFO : Iteration = 29
clock_nanosleep2_01 0 TINFO : Iteration = 30
clock_nanosleep2_01 0 TINFO : Iteration = 31
clock_nanosleep2_01 0 TINFO : Iteration = 32
clock_nanosleep2_01 0 TINFO : Iteration = 33
clock_nanosleep2_01 0 TINFO : Iteration = 34
clock_nanosleep2_01 0 TINFO : Iteration = 35
clock_nanosleep2_01 0 TINFO : Iteration = 36
clock_nanosleep2_01 0 TINFO : Iteration = 37
clock_nanosleep2_01 0 TINFO : Iteration = 38
clock_nanosleep2_01 0 TINFO : Iteration = 39
clock_nanosleep2_01 0 TINFO : Iteration = 40
clock_nanosleep2_01 0 TINFO : Iteration = 41
clock_nanosleep2_01 0 TINFO : Iteration = 42
clock_nanosleep2_01 0 TINFO : Iteration = 43
clock_nanosleep2_01 0 TINFO : Iteration = 44
clock_nanosleep2_01 0 TINFO : Iteration = 45
clock_nanosleep2_01 0 TINFO : Iteration = 46
clock_nanosleep2_01 0 TINFO : Iteration = 47
clock_nanosleep2_01 0 TINFO : Iteration = 48
clock_nanosleep2_01 0 TINFO : Iteration = 49
clock_nanosleep2_01 0 TINFO : Iteration = 50
clock_nanosleep2_01 1 TPASS : clock_nanosleep2() passed
<<<execution_status>>>
initiation_status="ok"
duration=51 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=clone01 stime=1372174630
cmdline="clone01"
contacts=""
analysis=exit
<<<test_output>>>
clone01 1 TPASS : clone returned 2759
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone02 stime=1372174630
cmdline="clone02"
contacts=""
analysis=exit
<<<test_output>>>
clone02 1 TPASS : Test Passed
clone02 1 TPASS : Test Passed
clone02 2 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone03 stime=1372174630
cmdline="clone03"
contacts=""
analysis=exit
<<<test_output>>>
clone03 1 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone04 stime=1372174630
cmdline="clone04"
contacts=""
analysis=exit
<<<test_output>>>
clone04 1 TPASS : expected failure; Got EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone05 stime=1372174630
cmdline="clone05"
contacts=""
analysis=exit
<<<test_output>>>
clone05 1 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=clone06 stime=1372174631
cmdline="clone06"
contacts=""
analysis=exit
<<<test_output>>>
clone06 1 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone07 stime=1372174631
cmdline="clone07"
contacts=""
analysis=exit
<<<test_output>>>
clone07 1 TPASS : Use of return() in child did not cause SIGSEGV
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=close01 stime=1372174631
cmdline="close01"
contacts=""
analysis=exit
<<<test_output>>>
close01 1 TPASS : file appears closed
close01 2 TPASS : pipe appears closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=close02 stime=1372174631
cmdline="close02"
contacts=""
analysis=exit
<<<test_output>>>
close02 1 TPASS : call returned EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=close08 stime=1372174631
cmdline="close08"
contacts=""
analysis=exit
<<<test_output>>>
close08 1 TPASS : close(tfile_2774) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=confstr01 stime=1372174631
cmdline="confstr01"
contacts=""
analysis=exit
<<<test_output>>>
confstr01 1 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=connect01 stime=1372174631
cmdline="connect01"
contacts=""
analysis=exit
<<<test_output>>>
connect01 1 TPASS : bad file descriptor successful
connect01 2 TPASS : invalid socket buffer successful
connect01 3 TPASS : invalid salen successful
connect01 4 TPASS : invalid socket successful
connect01 5 TPASS : already connected successful
connect01 6 TPASS : connection refused successful
connect01 7 TPASS : invalid address family successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat01 stime=1372174631
cmdline="creat01"
contacts=""
analysis=exit
<<<test_output>>>
creat01 1 TPASS : file was created and written to successfully
creat01 2 TPASS : creat truncated existing file to 0 bytes
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=creat03 stime=1372174631
cmdline="creat03"
contacts=""
analysis=exit
<<<test_output>>>
creat03 0 TINFO : Created file has mode = 0100444
creat03 1 TPASS : save text bit cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat04 stime=1372174631
cmdline="creat04"
contacts=""
analysis=exit
<<<test_output>>>
creat04 1 TPASS : call failed with EACCES as expected
creat04 2 TPASS : call failed with EACCES as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat05 stime=1372174631
cmdline="creat05"
contacts=""
analysis=exit
<<<test_output>>>
creat05 0 TINFO : first file is #5
creat05 0 TINFO : could not creat file #1025
creat05 1 TPASS : call failed with expected error - EMFILE
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=5
<<<test_end>>>
<<<test_start>>>
tag=creat06 stime=1372174631
cmdline="creat06"
contacts=""
analysis=exit
<<<test_output>>>
creat06 1 TPASS : got expected failure: TEST_ERRNO=EISDIR(21): Is a directory
creat06 2 TPASS : got expected failure: TEST_ERRNO=ENAMETOOLONG(36): File name too long
creat06 3 TPASS : got expected failure: TEST_ERRNO=ENOENT(2): No such file or directory
creat06 4 TPASS : got expected failure: TEST_ERRNO=ENOTDIR(20): Not a directory
creat06 5 TPASS : got expected failure: TEST_ERRNO=EFAULT(14): Bad address
creat06 6 TPASS : got expected failure: TEST_ERRNO=EACCES(13): Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat07 stime=1372174631
cmdline="creat07"
contacts=""
analysis=exit
<<<test_output>>>
creat07 1 TPASS : creat received EXTBSY
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=creat08 stime=1372174631
cmdline="creat08"
contacts=""
analysis=exit
<<<test_output>>>
creat08 1 TPASS : Test passed in block0.
creat08 2 TPASS : Test passed in block1.
creat08 3 TPASS : Test passed in block2.
creat08 4 TPASS : Test passed in block3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat09 stime=1372174631
cmdline="creat09"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup01 stime=1372174631
cmdline="dup01"
contacts=""
analysis=exit
<<<test_output>>>
dup01 1 TPASS : dup(dupfile) returned 6
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup02 stime=1372174631
cmdline="dup02"
contacts=""
analysis=exit
<<<test_output>>>
dup02 1 TPASS : dup failed as expected with EBADF
dup02 2 TPASS : dup failed as expected with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup03 stime=1372174631
cmdline="dup03"
contacts=""
analysis=exit
<<<test_output>>>
dup03 1 TPASS : dup failed as expected with EMFILE
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=dup04 stime=1372174631
cmdline="dup04"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup05 stime=1372174631
cmdline="dup05"
contacts=""
analysis=exit
<<<test_output>>>
dup05 1 TPASS : dup returned 6
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=dup06 stime=1372174631
cmdline="dup06"
contacts=""
analysis=exit
<<<test_output>>>
dup06 1 TPASS : Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup07 stime=1372174631
cmdline="dup07"
contacts=""
analysis=exit
<<<test_output>>>
dup07 1 TPASS : Passed in read mode.
dup07 2 TPASS : Passed in write mode.
dup07 3 TPASS : Passed in read/write mode.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup201 stime=1372174631
cmdline="dup201"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=dup202 stime=1372174631
cmdline="dup202"
contacts=""
analysis=exit
<<<test_output>>>
dup202 1 TPASS : fstat shows new and old modes are the same
dup202 2 TPASS : fstat shows new and old modes are the same
dup202 3 TPASS : fstat shows new and old modes are the same
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup203 stime=1372174631
cmdline="dup203"
contacts=""
analysis=exit
<<<test_output>>>
dup203 0 TINFO : Enter block 1
dup203 0 TINFO : Test duping over an open fd
dup203 1 TPASS : dup2 test 1 functionality is correct
dup203 0 TINFO : Exit block 1
dup203 0 TINFO : Enter block 2
dup203 0 TINFO : Test close on exec flag
dup203 2 TPASS : dup2 test 2 functionality is correct
dup203 0 TINFO : Exit block 2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup204 stime=1372174631
cmdline="dup204"
contacts=""
analysis=exit
<<<test_output>>>
dup204 1 TPASS : original and duped inodes are the same
dup204 2 TPASS : original and duped inodes are the same
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=dup205 stime=1372174631
cmdline="dup205"
contacts=""
analysis=exit
<<<test_output>>>
dup205 1 TPASS : Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup3_01 stime=1372174631
cmdline="dup3_01"
contacts=""
analysis=exit
<<<test_output>>>
dup3_01 1 TPASS : dup3(O_CLOEXEC) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=epoll_create1_01 stime=1372174631
cmdline="epoll_create1_01"
contacts=""
analysis=exit
<<<test_output>>>
epoll_create1_01 1 TPASS : epoll_create1(EPOLL_CLOEXEC) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=epoll01 stime=1372174631
cmdline="epoll-ltp"
contacts=""
analysis=exit
<<<test_output>>>
epoll01 0 TINFO : testing if epoll() system call works
epoll01 0 TINFO : gettimeofday() works
epoll01 0 TINFO : random number seeded with gettimeofday() [seed = 339355] works
epoll01 0 TINFO : Testing epoll_create
epoll01 1 TPASS : epoll_create with negative set size
epoll01 2 TPASS : epoll_create with large set size (size = 2147483647)
epoll01 3 TPASS : epoll_create with large set size (size = 2147483646)
epoll01 4 TPASS : epoll_create with large set size (size = 2147483645)
epoll01 5 TPASS : epoll_create with large set size (size = 2147483644)
epoll01 6 TPASS : epoll_create with large set size (size = 2147483643)
epoll01 7 TPASS : epoll_create with large set size (size = 2147483642)
epoll01 8 TPASS : epoll_create with large set size (size = 2147483641)
epoll01 9 TPASS : epoll_create with large set size (size = 2147483640)
epoll01 10 TPASS : epoll_create with large set size (size = 2147483639)
epoll01 11 TPASS : epoll_create with large set size (size = 2147483638)
epoll01 12 TPASS : epoll_create with large set size (size = 2147483637)
epoll01 13 TPASS : epoll_create with large set size (size = 2147483636)
epoll01 14 TPASS : epoll_create with large set size (size = 2147483635)
epoll01 15 TPASS : epoll_create with large set size (size = 2147483634)
epoll01 16 TPASS : epoll_create with large set size (size = 2147483633)
epoll01 17 TPASS : epoll_create with large set size (size = 2147483632)
epoll01 18 TPASS : epoll_create with random large set size (size = 1990046708)
epoll01 19 TPASS : epoll_create with random large set size (size = 625941694)
epoll01 20 TPASS : epoll_create with random large set size (size = 142766521)
epoll01 21 TPASS : epoll_create with random large set size (size = 1663306696)
epoll01 22 TPASS : epoll_create with random large set size (size = 706372278)
epoll01 23 TPASS : epoll_create with random large set size (size = 1992425117)
epoll01 24 TPASS : epoll_create with random large set size (size = 472320209)
epoll01 25 TPASS : epoll_create with random large set size (size = 2101165835)
epoll01 26 TPASS : epoll_create with random large set size (size = 1463109405)
epoll01 27 TPASS : epoll_create with random large set size (size = 316567948)
epoll01 28 TPASS : epoll_create with random large set size (size = 1092576955)
epoll01 29 TPASS : epoll_create with random large set size (size = 1936453517)
epoll01 30 TPASS : epoll_create with random large set size (size = 1938380722)
epoll01 31 TPASS : epoll_create with random large set size (size = 559528500)
epoll01 32 TPASS : epoll_create with random large set size (size = 538664171)
epoll01 33 TPASS : epoll_create with random large set size (size = 1704536275)
epoll01 0 TINFO : Summary: Of 33 tests, epoll_create failed 0 (100% passed).
epoll01 0 TINFO : Testing epoll_ctl
epoll01 0 TINFO : Summary: Of 13824 tests, epoll_ctl failed 0 (100% passed).
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=53 cstime=211
<<<test_end>>>
<<<test_start>>>
tag=eventfd01 stime=1372174634
cmdline="eventfd01"
contacts=""
analysis=exit
<<<test_output>>>
eventfd01 1 TPASS : counter value matches required
eventfd01 2 TPASS : read failed with EAGAIN as expected
eventfd01 3 TPASS : counter value matches required
eventfd01 4 TPASS : write failed with EAGAIN as expected
eventfd01 5 TPASS : read failed with EINVAL as expected
eventfd01 6 TPASS : write failed with EINVAL as expected
eventfd01 7 TPASS : write failed with EINVAL as expected
eventfd01 8 TPASS : fd is set in readfds
eventfd01 9 TPASS : fd is not set in readfds
eventfd01 10 TPASS : fd is set in writefds
eventfd01 11 TPASS : fd is not set in writefds
eventfd01 1 TPASS : counter value matches required
eventfd01 2 TPASS : read failed with EAGAIN as expected
eventfd01 3 TPASS : counter value matches required
eventfd01 4 TPASS : write failed with EAGAIN as expected
eventfd01 5 TPASS : read failed with EINVAL as expected
eventfd01 6 TPASS : write failed with EINVAL as expected
eventfd01 7 TPASS : write failed with EINVAL as expected
eventfd01 8 TPASS : fd is set in readfds
eventfd01 9 TPASS : fd is not set in readfds
eventfd01 10 TPASS : fd is set in writefds
eventfd01 11 TPASS : fd is not set in writefds
eventfd01 12 TPASS : counter value write from child successful
eventfd01 13 TPASS : read fd set as expected
eventfd01 14 TPASS : POLLERR occurred as expected
eventfd01 15 TPASS : overflow occurred as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=eventfd2_01 stime=1372174634
cmdline="eventfd2_01"
contacts=""
analysis=exit
<<<test_output>>>
eventfd2_01 1 TPASS : eventfd2(EFD_CLOEXEC) Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=eventfd2_02 stime=1372174634
cmdline="eventfd2_02"
contacts=""
analysis=exit
<<<test_output>>>
eventfd2_02 1 TPASS : eventfd2(EFD_NONBLOCK) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=eventfd2_03 stime=1372174634
cmdline="eventfd2_03"
contacts=""
analysis=exit
<<<test_output>>>
[16638] posting 1 on 6
[16638] waiting on 5
[16638] wait completed on 5: count=1
[16638] posting 1 on 6
[16638] waiting on 5
[16638] wait completed on 5: count=1
[16638] posting 5 on 6
[16638] waiting 5 times on 5
[16638] wait completed on 5: count=1
[16638] wait completed on 5: count=1
[16638] wait completed on 5: count=1
[16638] wait completed on 5: count=1
[16638] wait completed on 5: count=1
[16637] posting 1 on 5
[16637] waiting on 6
[16637] wait completed on 6: count=1
[16637] posting 1 on 5
[16637] waiting on 6
[16637] wait completed on 6: count=1
[16637] posting 5 on 5
[16637] waiting 5 times on 6
[16637] wait completed on 6: count=1
[16637] wait completed on 6: count=1
[16637] wait completed on 6: count=1
[16637] wait completed on 6: count=1
[16637] wait completed on 6: count=1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execl01 stime=1372174634
cmdline="execl01"
contacts=""
analysis=exit
<<<test_output>>>
execl01 1 TPASS : execl - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execle01 stime=1372174634
cmdline="execle01"
contacts=""
analysis=exit
<<<test_output>>>
execle01 1 TPASS : execle - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execlp01 stime=1372174634
cmdline="execlp01"
contacts=""
analysis=exit
<<<test_output>>>
execlp01 1 TPASS : execlp - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execv01 stime=1372174634
cmdline="execv01"
contacts=""
analysis=exit
<<<test_output>>>
execv01 1 TPASS : execv - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=execve01 stime=1372174634
cmdline="execve01"
contacts=""
analysis=exit
<<<test_output>>>
execve01 1 TPASS : execve - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execve02 stime=1372174634
cmdline="execve02 -F $LTPROOT/testcases/bin/test3"
contacts=""
analysis=exit
<<<test_output>>>
execve failed with EACCES as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execve03 stime=1372174634
cmdline="execve03"
contacts=""
analysis=exit
<<<test_output>>>
execve03 1 TPASS : execve failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
execve03 2 TPASS : execve failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
execve03 3 TPASS : execve failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
execve03 4 TPASS : execve failed as expected: TEST_ERRNO=EFAULT(14): Bad address
execve03 5 TPASS : execve failed as expected: TEST_ERRNO=EACCES(13): Permission denied
execve03 6 TPASS : execve failed as expected: TEST_ERRNO=ENOEXEC(8): Exec format error
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=execve04 stime=1372174634
cmdline="execve04 -F $LTPROOT/testcases/bin/test3"
contacts=""
analysis=exit
<<<test_output>>>
execve failed with ETXTBSY as expected
execve04 1 TPASS : execve failed as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execve05 stime=1372174634
cmdline="execve05 20 $LTPROOT/testcases/bin/execve05 $LTPROOT/testcases/bin/execve05 4"
contacts=""
analysis=exit
<<<test_output>>>
execve05 1 TPASS : Test DONE, pid 16667, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 16668, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 16669, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 16670, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 16671, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 16672, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 16673, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 16674, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=4 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=execvp01 stime=1372174634
cmdline="execvp01"
contacts=""
analysis=exit
<<<test_output>>>
execvp01 1 TPASS : execvp - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=exit01 stime=1372174634
cmdline="exit01"
contacts=""
analysis=exit
<<<test_output>>>
exit01 1 TPASS : exit() test PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=exit02 stime=1372174634
cmdline="exit02"
contacts=""
analysis=exit
<<<test_output>>>
exit02 1 TPASS : exit() test PASSED
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=exit_group01 stime=1372174637
cmdline="exit_group01"
contacts=""
analysis=exit
<<<test_output>>>
exit_group01 1 TPASS : exit_group succeeded
<<<execution_status>>>
initiation_status="ok"
duration=5 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=faccessat01 stime=1372174642
cmdline="faccessat01"
contacts=""
analysis=exit
<<<test_output>>>
faccessat01 1 TPASS : faccessat() returned the expected errno 0: Success
faccessat01 2 TPASS : faccessat() returned the expected errno 0: Success
faccessat01 3 TPASS : faccessat() returned the expected errno 20: Not a directory
faccessat01 4 TPASS : faccessat() returned the expected errno 9: Bad file descriptor
faccessat01 5 TPASS : faccessat() returned the expected errno 0: Success
faccessat01 6 TPASS : faccessat() returned the expected errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fallocate01 stime=1372174642
cmdline="fallocate01"
contacts=""
analysis=exit
<<<test_output>>>
fallocate01 1 TPASS : fallocate(5, 0, 49152, 4096) returned 0
fallocate01 2 TPASS : write operation on fallocated(5, 0, 49152, 4096) returned 1
fallocate01 3 TPASS : fallocate(6, 1, 49152, 4096) returned 0
fallocate01 4 TPASS : write operation on fallocated(6, 1, 49152, 4096) returned 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fallocate02 stime=1372174642
cmdline="fallocate02"
contacts=""
analysis=exit
<<<test_output>>>
fallocate02 1 TPASS : fallocate(tfile_read_16685:5, 1, 0, 4096) returned 9
fallocate02 2 TPASS : fallocate(tfile_write_16685:6, 1, -4096, 4096) returned 22
fallocate02 3 TPASS : fallocate(tfile_write_16685:6, 1, 4096, -4096) returned 22
fallocate02 4 TPASS : fallocate(tfile_write_16685:6, 1, 49152, 0) returned 22
fallocate02 5 TPASS : fallocate(tfile_write_16685:6, 1, 49152, -4096) returned 22
fallocate02 6 TPASS : fallocate(tfile_write_16685:6, 1, -98304, 4096) returned 22
fallocate02 7 TPASS : fallocate(tfile_write_16685:6, 1, 0, 4096) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fallocate03 stime=1372174642
cmdline="fallocate03"
contacts=""
analysis=exit
<<<test_output>>>
fallocate03 1 TPASS : fallocate(tfile_sparse_16686, 0, 8192, 4096) returned 0
fallocate03 2 TPASS : fallocate(tfile_sparse_16686, 0, 49152, 4096) returned 0
fallocate03 3 TPASS : fallocate(tfile_sparse_16686, 0, 69632, 4096) returned 0
fallocate03 4 TPASS : fallocate(tfile_sparse_16686, 0, 102400, 4096) returned 0
fallocate03 5 TPASS : fallocate(tfile_sparse_16686, 1, 8192, 4096) returned 0
fallocate03 6 TPASS : fallocate(tfile_sparse_16686, 1, 49152, 4096) returned 0
fallocate03 7 TPASS : fallocate(tfile_sparse_16686, 1, 77824, 4096) returned 0
fallocate03 8 TPASS : fallocate(tfile_sparse_16686, 1, 106496, 4096) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise01 stime=1372174642
cmdline=" posix_fadvise01"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise01 1 TPASS : call succeeded expectedly
posix_fadvise01 2 TPASS : call succeeded expectedly
posix_fadvise01 3 TPASS : call succeeded expectedly
posix_fadvise01 4 TPASS : call succeeded expectedly
posix_fadvise01 5 TPASS : call succeeded expectedly
posix_fadvise01 6 TPASS : call succeeded expectedly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise01_64 stime=1372174642
cmdline=" posix_fadvise01_64"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise01_64 1 TPASS : call succeeded expectedly
posix_fadvise01_64 2 TPASS : call succeeded expectedly
posix_fadvise01_64 3 TPASS : call succeeded expectedly
posix_fadvise01_64 4 TPASS : call succeeded expectedly
posix_fadvise01_64 5 TPASS : call succeeded expectedly
posix_fadvise01_64 6 TPASS : call succeeded expectedly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise02 stime=1372174642
cmdline=" posix_fadvise02"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise02 1 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02 2 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02 3 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02 4 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02 5 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02 6 TPASS : expected failure - returned value = 9 : Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise02_64 stime=1372174642
cmdline=" posix_fadvise02_64"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise02_64 1 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64 2 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64 3 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64 4 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64 5 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64 6 TPASS : expected failure - returned value = 9 : Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise03 stime=1372174642
cmdline=" posix_fadvise03"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise03 1 TPASS : expected failure - returned value = 22, advise = 6 : Invalid argument
posix_fadvise03 2 TPASS : expected failure - returned value = 22, advise = 7 : Invalid argument
posix_fadvise03 3 TPASS : expected failure - returned value = 22, advise = 8 : Invalid argument
posix_fadvise03 4 TPASS : expected failure - returned value = 22, advise = 9 : Invalid argument
posix_fadvise03 5 TPASS : expected failure - returned value = 22, advise = 10 : Invalid argument
posix_fadvise03 6 TPASS : expected failure - returned value = 22, advise = 11 : Invalid argument
posix_fadvise03 7 TPASS : expected failure - returned value = 22, advise = 12 : Invalid argument
posix_fadvise03 8 TPASS : expected failure - returned value = 22, advise = 13 : Invalid argument
posix_fadvise03 9 TPASS : expected failure - returned value = 22, advise = 14 : Invalid argument
posix_fadvise03 10 TPASS : expected failure - returned value = 22, advise = 15 : Invalid argument
posix_fadvise03 11 TPASS : expected failure - returned value = 22, advise = 16 : Invalid argument
posix_fadvise03 12 TPASS : expected failure - returned value = 22, advise = 17 : Invalid argument
posix_fadvise03 13 TPASS : expected failure - returned value = 22, advise = 18 : Invalid argument
posix_fadvise03 14 TPASS : expected failure - returned value = 22, advise = 19 : Invalid argument
posix_fadvise03 15 TPASS : expected failure - returned value = 22, advise = 20 : Invalid argument
posix_fadvise03 16 TPASS : expected failure - returned value = 22, advise = 21 : Invalid argument
posix_fadvise03 17 TPASS : expected failure - returned value = 22, advise = 22 : Invalid argument
posix_fadvise03 18 TPASS : expected failure - returned value = 22, advise = 23 : Invalid argument
posix_fadvise03 19 TPASS : expected failure - returned value = 22, advise = 24 : Invalid argument
posix_fadvise03 20 TPASS : expected failure - returned value = 22, advise = 25 : Invalid argument
posix_fadvise03 21 TPASS : expected failure - returned value = 22, advise = 26 : Invalid argument
posix_fadvise03 22 TPASS : expected failure - returned value = 22, advise = 27 : Invalid argument
posix_fadvise03 23 TPASS : expected failure - returned value = 22, advise = 28 : Invalid argument
posix_fadvise03 24 TPASS : expected failure - returned value = 22, advise = 29 : Invalid argument
posix_fadvise03 25 TPASS : expected failure - returned value = 22, advise = 30 : Invalid argument
posix_fadvise03 26 TPASS : expected failure - returned value = 22, advise = 31 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise03_64 stime=1372174642
cmdline=" posix_fadvise03_64"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise03_64 1 TPASS : expected failure - returned value = 22, advise = 6 : Invalid argument
posix_fadvise03_64 2 TPASS : expected failure - returned value = 22, advise = 7 : Invalid argument
posix_fadvise03_64 3 TPASS : expected failure - returned value = 22, advise = 8 : Invalid argument
posix_fadvise03_64 4 TPASS : expected failure - returned value = 22, advise = 9 : Invalid argument
posix_fadvise03_64 5 TPASS : expected failure - returned value = 22, advise = 10 : Invalid argument
posix_fadvise03_64 6 TPASS : expected failure - returned value = 22, advise = 11 : Invalid argument
posix_fadvise03_64 7 TPASS : expected failure - returned value = 22, advise = 12 : Invalid argument
posix_fadvise03_64 8 TPASS : expected failure - returned value = 22, advise = 13 : Invalid argument
posix_fadvise03_64 9 TPASS : expected failure - returned value = 22, advise = 14 : Invalid argument
posix_fadvise03_64 10 TPASS : expected failure - returned value = 22, advise = 15 : Invalid argument
posix_fadvise03_64 11 TPASS : expected failure - returned value = 22, advise = 16 : Invalid argument
posix_fadvise03_64 12 TPASS : expected failure - returned value = 22, advise = 17 : Invalid argument
posix_fadvise03_64 13 TPASS : expected failure - returned value = 22, advise = 18 : Invalid argument
posix_fadvise03_64 14 TPASS : expected failure - returned value = 22, advise = 19 : Invalid argument
posix_fadvise03_64 15 TPASS : expected failure - returned value = 22, advise = 20 : Invalid argument
posix_fadvise03_64 16 TPASS : expected failure - returned value = 22, advise = 21 : Invalid argument
posix_fadvise03_64 17 TPASS : expected failure - returned value = 22, advise = 22 : Invalid argument
posix_fadvise03_64 18 TPASS : expected failure - returned value = 22, advise = 23 : Invalid argument
posix_fadvise03_64 19 TPASS : expected failure - returned value = 22, advise = 24 : Invalid argument
posix_fadvise03_64 20 TPASS : expected failure - returned value = 22, advise = 25 : Invalid argument
posix_fadvise03_64 21 TPASS : expected failure - returned value = 22, advise = 26 : Invalid argument
posix_fadvise03_64 22 TPASS : expected failure - returned value = 22, advise = 27 : Invalid argument
posix_fadvise03_64 23 TPASS : expected failure - returned value = 22, advise = 28 : Invalid argument
posix_fadvise03_64 24 TPASS : expected failure - returned value = 22, advise = 29 : Invalid argument
posix_fadvise03_64 25 TPASS : expected failure - returned value = 22, advise = 30 : Invalid argument
posix_fadvise03_64 26 TPASS : expected failure - returned value = 22, advise = 31 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise04 stime=1372174642
cmdline=" posix_fadvise04"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise04 1 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04 2 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04 3 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04 4 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04 5 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04 6 TPASS : expected failure - returned value = 29 : Illegal seek
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise04_64 stime=1372174642
cmdline=" posix_fadvise04_64"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise04_64 1 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64 2 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64 3 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64 4 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64 5 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64 6 TPASS : expected failure - returned value = 29 : Illegal seek
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchdir01 stime=1372174642
cmdline="fchdir01"
contacts=""
analysis=exit
<<<test_output>>>
fchdir01 1 TPASS : fchdir call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fchdir02 stime=1372174642
cmdline="fchdir02"
contacts=""
analysis=exit
<<<test_output>>>
fchdir02 1 TPASS : failed as expected with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchdir03 stime=1372174642
cmdline="fchdir03"
contacts=""
analysis=exit
<<<test_output>>>
Got EACCES as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod01 stime=1372174642
cmdline="fchmod01"
contacts=""
analysis=exit
<<<test_output>>>
fchmod01 1 TPASS : fchmod(tfile_16699, 0700) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod02 stime=1372174642
cmdline="fchmod02"
contacts=""
analysis=exit
<<<test_output>>>
fchmod02 1 TPASS : Functionality of fchmod(5, 01777) Successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod03 stime=1372174642
cmdline="fchmod03"
contacts=""
analysis=exit
<<<test_output>>>
fchmod03 1 TPASS : Functionality of fchmod(5, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod04 stime=1372174642
cmdline="fchmod04"
contacts=""
analysis=exit
<<<test_output>>>
fchmod04 1 TPASS : Functionality of fchmod(5, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fchmod05 stime=1372174642
cmdline="fchmod05"
contacts=""
analysis=exit
<<<test_output>>>
fchmod05 1 TPASS : Functionality of fchmod(5, 041777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod06 stime=1372174642
cmdline="fchmod06"
contacts=""
analysis=exit
<<<test_output>>>
fchmod06 1 TPASS : fchmod failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
fchmod06 2 TPASS : fchmod failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod07 stime=1372174642
cmdline="fchmod07"
contacts=""
analysis=exit
<<<test_output>>>
fchmod07 1 TPASS : Functionality of fchmod(5, 0) successful
fchmod07 2 TPASS : Functionality of fchmod(5, 07) successful
fchmod07 3 TPASS : Functionality of fchmod(5, 070) successful
fchmod07 4 TPASS : Functionality of fchmod(5, 0700) successful
fchmod07 5 TPASS : Functionality of fchmod(5, 0777) successful
fchmod07 6 TPASS : Functionality of fchmod(5, 02777) successful
fchmod07 7 TPASS : Functionality of fchmod(5, 04777) successful
fchmod07 8 TPASS : Functionality of fchmod(5, 06777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmodat01 stime=1372174642
cmdline="fchmodat01"
contacts=""
analysis=exit
<<<test_output>>>
fchmodat01 1 TPASS : fchmodat() returned the expected errno 0: Success
fchmodat01 2 TPASS : fchmodat() returned the expected errno 0: Success
fchmodat01 3 TPASS : fchmodat() returned the expected errno 20: Not a directory
fchmodat01 4 TPASS : fchmodat() returned the expected errno 9: Bad file descriptor
fchmodat01 5 TPASS : fchmodat() returned the expected errno 0: Success
fchmodat01 6 TPASS : fchmodat() returned the expected errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown01 stime=1372174642
cmdline="fchown01"
contacts=""
analysis=exit
<<<test_output>>>
fchown01 1 TPASS : fchown(fd, geteuid(), getegid()) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown01_16 stime=1372174642
cmdline="fchown01_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown01 1 TPASS : fchown(fd, geteuid(), getegid()) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown02 stime=1372174642
cmdline="fchown02"
contacts=""
analysis=exit
<<<test_output>>>
fchown02 1 TPASS : fchown() on testfile1 succeeds : Setuid/Setgid bits cleared
fchown02 2 TPASS : fchown() on testfile2 succeeds : Setgid bit not cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fchown02_16 stime=1372174642
cmdline="fchown02_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown02 1 TPASS : fchown() on testfile1 succeeds : Setuid/Setgid bits cleared
fchown02 2 TPASS : fchown() on testfile2 succeeds : Setgid bit not cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown03 stime=1372174642
cmdline="fchown03"
contacts=""
analysis=exit
<<<test_output>>>
fchown03 1 TPASS : fchown() on testfile succeeds: Setuid/gid bits cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown03_16 stime=1372174642
cmdline="fchown03_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown03 1 TPASS : fchown() on testfile succeeds: Setuid/gid bits cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown04 stime=1372174642
cmdline="fchown04"
contacts=""
analysis=exit
<<<test_output>>>
fchown04 1 TPASS : fchown failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
fchown04 2 TPASS : fchown failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown04_16 stime=1372174642
cmdline="fchown04_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown04 1 TPASS : fchown failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
fchown04 2 TPASS : fchown failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown05 stime=1372174642
cmdline="fchown05"
contacts=""
analysis=exit
<<<test_output>>>
fchown05 1 TPASS : fchown() succeeds to Change Owner/Group ids of testfile
fchown05 2 TPASS : fchown() succeeds to Change Owner id only of testfile
fchown05 3 TPASS : fchown() succeeds to Change Owner id only of testfile
fchown05 4 TPASS : fchown() succeeds to Change Group id only of testfile
fchown05 5 TPASS : fchown() succeeds to Change Group id only of testfile
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fchown05_16 stime=1372174642
cmdline="fchown05_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown05 1 TPASS : fchown() succeeds to Change Owner/Group ids of testfile
fchown05 2 TPASS : fchown() succeeds to Change Owner id only of testfile
fchown05 3 TPASS : fchown() succeeds to Change Owner id only of testfile
fchown05 4 TPASS : fchown() succeeds to Change Group id only of testfile
fchown05 5 TPASS : fchown() succeeds to Change Group id only of testfile
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchownat01 stime=1372174642
cmdline="fchownat01"
contacts=""
analysis=exit
<<<test_output>>>
fchownat01 1 TPASS : fchownat() returned the expected errno 0: Success
fchownat01 2 TPASS : fchownat() returned the expected errno 0: Success
fchownat01 3 TPASS : fchownat() returned the expected errno 20: Not a directory
fchownat01 4 TPASS : fchownat() returned the expected errno 9: Bad file descriptor
fchownat01 5 TPASS : fchownat() returned the expected errno 22: Invalid argument
fchownat01 6 TPASS : fchownat() returned the expected errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl01 stime=1372174642
cmdline="fcntl01"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl01_64 stime=1372174642
cmdline="fcntl01_64"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl02 stime=1372174642
cmdline="fcntl02"
contacts=""
analysis=exit
<<<test_output>>>
fcntl02 1 TPASS : fcntl(tfile_16720, F_DUPFD, 0) returned 6
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl02_64 stime=1372174642
cmdline="fcntl02_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl02 1 TPASS : fcntl(tfile_16721, F_DUPFD, 0) returned 6
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl03 stime=1372174642
cmdline="fcntl03"
contacts=""
analysis=exit
<<<test_output>>>
fcntl03 1 TPASS : fcntl(tfile_16722, F_GETFD, 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl03_64 stime=1372174642
cmdline="fcntl03_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl03 1 TPASS : fcntl(tfile_16723, F_GETFD, 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl04 stime=1372174642
cmdline="fcntl04"
contacts=""
analysis=exit
<<<test_output>>>
fcntl04 1 TPASS : fcntl returned 32770
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl04_64 stime=1372174642
cmdline="fcntl04_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl04 1 TPASS : fcntl returned 32770
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl05 stime=1372174642
cmdline="fcntl05"
contacts=""
analysis=exit
<<<test_output>>>
fcntl05 1 TPASS : fcntl returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl05_64 stime=1372174642
cmdline="fcntl05_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl05 1 TPASS : fcntl returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl06 stime=1372174642
cmdline="fcntl06"
contacts=""
analysis=exit
<<<test_output>>>
fcntl06 1 TCONF : system doesn't have LINUX_LOCK_FILE_REGION support
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl06_64 stime=1372174642
cmdline="fcntl06_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl06 1 TCONF : system doesn't have LINUX_LOCK_FILE_REGION support
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl07 stime=1372174642
cmdline="fcntl07"
contacts=""
analysis=exit
<<<test_output>>>
fcntl07 1 TPASS : regular file child exited 0, indicating that the file was closed
fcntl07 2 TPASS : write side of system pipe child exited 0, indicating that the file was closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl07_64 stime=1372174642
cmdline="fcntl07_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl07 1 TPASS : regular file child exited 0, indicating that the file was closed
fcntl07 2 TPASS : write side of system pipe child exited 0, indicating that the file was closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl07B stime=1372174642
cmdline="fcntl07B"
contacts=""
analysis=exit
<<<test_output>>>
fcntl07B 1 TPASS : named pipe child exited 0, indicating that the file was closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl07B_64 stime=1372174642
cmdline="fcntl07B_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl07B 1 TPASS : named pipe child exited 0, indicating that the file was closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl08 stime=1372174642
cmdline="fcntl08"
contacts=""
analysis=exit
<<<test_output>>>
fcntl08 1 TPASS : fcntl returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl08_64 stime=1372174642
cmdline="fcntl08_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl08 1 TPASS : fcntl returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl09 stime=1372174642
cmdline="fcntl09"
contacts=""
analysis=exit
<<<test_output>>>
fcntl09 1 TPASS : fcntl(./file_16742, F_SETLK, &flocks) flocks.l_type = F_WRLCK returned 0
fcntl09 2 TPASS : fcntl(./file_16742, F_SETLK, &flocks) flocks.l_type = F_UNLCK returned 0
fcntl09 1 TPASS : fcntl(./file_16742, F_SETLK, &flocks) flocks.l_type = F_RDLCK returned 0
fcntl09 2 TPASS : fcntl(./file_16742, F_SETLK, &flocks) flocks.l_type = F_UNLCK returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl09_64 stime=1372174642
cmdline="fcntl09_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl09 1 TPASS : fcntl(./file_16743, F_SETLK, &flocks) flocks.l_type = F_WRLCK returned 0
fcntl09 2 TPASS : fcntl(./file_16743, F_SETLK, &flocks) flocks.l_type = F_UNLCK returned 0
fcntl09 1 TPASS : fcntl(./file_16743, F_SETLK, &flocks) flocks.l_type = F_RDLCK returned 0
fcntl09 2 TPASS : fcntl(./file_16743, F_SETLK, &flocks) flocks.l_type = F_UNLCK returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl10 stime=1372174642
cmdline="fcntl10"
contacts=""
analysis=exit
<<<test_output>>>
fcntl10 1 TPASS : fcntl(tfile_16744, F_SETLKW, &flocks) flocks.l_type = F_WRLCK returned 0
fcntl10 2 TPASS : fcntl(tfile_16744, F_SETLKW, &flocks) flocks.l_type = F_UNLCK returned 0
fcntl10 1 TPASS : fcntl(tfile_16744, F_SETLKW, &flocks) flocks.l_type = F_RDLCK returned 0
fcntl10 2 TPASS : fcntl(tfile_16744, F_SETLKW, &flocks) flocks.l_type = F_UNLCK returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl10_64 stime=1372174642
cmdline="fcntl10_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl10 1 TPASS : fcntl(tfile_16745, F_SETLKW, &flocks) flocks.l_type = F_WRLCK returned 0
fcntl10 2 TPASS : fcntl(tfile_16745, F_SETLKW, &flocks) flocks.l_type = F_UNLCK returned 0
fcntl10 1 TPASS : fcntl(tfile_16745, F_SETLKW, &flocks) flocks.l_type = F_RDLCK returned 0
fcntl10 2 TPASS : fcntl(tfile_16745, F_SETLKW, &flocks) flocks.l_type = F_UNLCK returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl11 stime=1372174642
cmdline="fcntl11"
contacts=""
analysis=exit
<<<test_output>>>
fcntl11 0 TINFO : Enter block 1
fcntl11 0 TINFO : Exit block 1
fcntl11 0 TINFO : Enter block 2
fcntl11 0 TINFO : Exit block 2
fcntl11 0 TINFO : Enter block 3
fcntl11 0 TINFO : Exit block 3
fcntl11 0 TINFO : Enter block 4
fcntl11 0 TINFO : Exit block 4
fcntl11 0 TINFO : Enter block 5
fcntl11 0 TINFO : Exit block 5
fcntl11 0 TINFO : Enter block 6
fcntl11 0 TINFO : Exit block 6
fcntl11 0 TINFO : Enter block 7
fcntl11 0 TINFO : Exit block 7
fcntl11 0 TINFO : Enter block 8
fcntl11 0 TINFO : Exit block 8
fcntl11 0 TINFO : Enter block 9
fcntl11 0 TINFO : Exit block 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl11_64 stime=1372174642
cmdline="fcntl11_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl11 0 TINFO : Enter block 1
fcntl11 0 TINFO : Exit block 1
fcntl11 0 TINFO : Enter block 2
fcntl11 0 TINFO : Exit block 2
fcntl11 0 TINFO : Enter block 3
fcntl11 0 TINFO : Exit block 3
fcntl11 0 TINFO : Enter block 4
fcntl11 0 TINFO : Exit block 4
fcntl11 0 TINFO : Enter block 5
fcntl11 0 TINFO : Exit block 5
fcntl11 0 TINFO : Enter block 6
fcntl11 0 TINFO : Exit block 6
fcntl11 0 TINFO : Enter block 7
fcntl11 0 TINFO : Exit block 7
fcntl11 0 TINFO : Enter block 8
fcntl11 0 TINFO : Exit block 8
fcntl11 0 TINFO : Enter block 9
fcntl11 0 TINFO : Exit block 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl12 stime=1372174642
cmdline="fcntl12"
contacts=""
analysis=exit
<<<test_output>>>
fcntl12 0 TINFO : Enter block 1
fcntl12 0 TINFO : Test for errno EMFILE
fcntl12 0 TINFO : Enter block 1
fcntl12 0 TINFO : Test for errno EMFILE
fcntl12 0 TINFO : block 1 PASSED
fcntl12 0 TINFO : Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl12_64 stime=1372174642
cmdline="fcntl12_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl12 0 TINFO : Enter block 1
fcntl12 0 TINFO : Test for errno EMFILE
fcntl12 0 TINFO : Enter block 1
fcntl12 0 TINFO : Test for errno EMFILE
fcntl12 0 TINFO : block 1 PASSED
fcntl12 0 TINFO : Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl13 stime=1372174642
cmdline="fcntl13"
contacts=""
analysis=exit
<<<test_output>>>
fcntl13 0 TINFO : Enter block 1
fcntl13 0 TINFO : Test for errno EINVAL
fcntl13 0 TINFO : block 1 PASSED
fcntl13 0 TINFO : Exit block 1
fcntl13 0 TINFO : Enter block 2
fcntl13 0 TINFO : Test for errno EFAULT
fcntl13 0 TINFO : block 2 PASSED
fcntl13 0 TINFO : Exit block 2
fcntl13 0 TINFO : Enter block 3
fcntl13 0 TINFO : Test for errno EINVAL
fcntl13 0 TINFO : block 3 PASSED
fcntl13 0 TINFO : Exit block 3
fcntl13 0 TINFO : Enter block 4
fcntl13 0 TINFO : Test for errno EBADF
fcntl13 0 TINFO : block 4 PASSED
fcntl13 0 TINFO : Exit block 4
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl13_64 stime=1372174642
cmdline="fcntl13_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl13 0 TINFO : Enter block 1
fcntl13 0 TINFO : Test for errno EINVAL
fcntl13 0 TINFO : block 1 PASSED
fcntl13 0 TINFO : Exit block 1
fcntl13 0 TINFO : Enter block 2
fcntl13 0 TINFO : Test for errno EFAULT
fcntl13 0 TINFO : block 2 PASSED
fcntl13 0 TINFO : Exit block 2
fcntl13 0 TINFO : Enter block 3
fcntl13 0 TINFO : Test for errno EINVAL
fcntl13 0 TINFO : block 3 PASSED
fcntl13 0 TINFO : Exit block 3
fcntl13 0 TINFO : Enter block 4
fcntl13 0 TINFO : Test for errno EBADF
fcntl13 0 TINFO : block 4 PASSED
fcntl13 0 TINFO : Exit block 4
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl14 stime=1372174642
cmdline="fcntl14"
contacts=""
analysis=exit
<<<test_output>>>
fcntl14 0 TINFO : Enter block 1: without mandatory locking
fcntl14 1 TPASS : testcase:1 PASSED
fcntl14 2 TPASS : testcase:2 PASSED
fcntl14 3 TPASS : testcase:3 PASSED
fcntl14 4 TPASS : testcase:4 PASSED
fcntl14 5 TPASS : testcase:5 PASSED
fcntl14 6 TPASS : testcase:6 PASSED
fcntl14 7 TPASS : testcase:7 PASSED
fcntl14 8 TPASS : testcase:8 PASSED
fcntl14 9 TPASS : testcase:9 PASSED
fcntl14 10 TPASS : testcase:10 PASSED
fcntl14 11 TPASS : testcase:11 PASSED
fcntl14 12 TPASS : testcase:12 PASSED
fcntl14 13 TPASS : testcase:13 PASSED
fcntl14 14 TPASS : testcase:14 PASSED
fcntl14 15 TPASS : testcase:15 PASSED
fcntl14 16 TPASS : testcase:16 PASSED
fcntl14 17 TPASS : testcase:17 PASSED
fcntl14 18 TPASS : testcase:18 PASSED
fcntl14 19 TPASS : testcase:19 PASSED
fcntl14 20 TPASS : testcase:20 PASSED
fcntl14 21 TPASS : testcase:21 PASSED
fcntl14 22 TPASS : testcase:22 PASSED
fcntl14 23 TPASS : testcase:23 PASSED
fcntl14 24 TPASS : testcase:24 PASSED
fcntl14 25 TPASS : testcase:25 PASSED
fcntl14 26 TPASS : testcase:26 PASSED
fcntl14 27 TPASS : testcase:27 PASSED
fcntl14 28 TPASS : testcase:28 PASSED
fcntl14 29 TPASS : testcase:29 PASSED
fcntl14 30 TPASS : testcase:30 PASSED
fcntl14 31 TPASS : testcase:31 PASSED
fcntl14 32 TPASS : testcase:32 PASSED
fcntl14 33 TPASS : testcase:33 PASSED
fcntl14 34 TPASS : testcase:34 PASSED
fcntl14 35 TPASS : testcase:35 PASSED
fcntl14 36 TPASS : testcase:36 PASSED
fcntl14 37 TPASS : Block 1, test 1 PASSED
fcntl14 38 TPASS : testcase:37 PASSED
fcntl14 39 TPASS : testcase:38 PASSED
fcntl14 40 TPASS : testcase:39 PASSED
fcntl14 41 TPASS : testcase:40 PASSED
fcntl14 42 TPASS : testcase:41 PASSED
fcntl14 43 TPASS : testcase:42 PASSED
fcntl14 44 TPASS : testcase:43 PASSED
fcntl14 45 TPASS : testcase:44 PASSED
fcntl14 46 TPASS : testcase:45 PASSED
fcntl14 47 TPASS : Block 1, test 2 PASSED
fcntl14 0 TINFO : Exit block 1
fcntl14 0 TINFO : Enter block 2: with mandatory locking
fcntl14 48 TPASS : testcase:1 PASSED
fcntl14 49 TPASS : testcase:2 PASSED
fcntl14 50 TPASS : testcase:3 PASSED
fcntl14 51 TPASS : testcase:4 PASSED
fcntl14 52 TPASS : testcase:5 PASSED
fcntl14 53 TPASS : testcase:6 PASSED
fcntl14 54 TPASS : testcase:7 PASSED
fcntl14 55 TPASS : testcase:8 PASSED
fcntl14 56 TPASS : testcase:9 PASSED
fcntl14 57 TPASS : testcase:10 PASSED
fcntl14 58 TPASS : testcase:11 PASSED
fcntl14 59 TPASS : testcase:12 PASSED
fcntl14 60 TPASS : testcase:13 PASSED
fcntl14 61 TPASS : testcase:14 PASSED
fcntl14 62 TPASS : testcase:15 PASSED
fcntl14 63 TPASS : testcase:16 PASSED
fcntl14 64 TPASS : testcase:17 PASSED
fcntl14 65 TPASS : testcase:18 PASSED
fcntl14 66 TPASS : testcase:19 PASSED
fcntl14 67 TPASS : testcase:20 PASSED
fcntl14 68 TPASS : testcase:21 PASSED
fcntl14 69 TPASS : testcase:22 PASSED
fcntl14 70 TPASS : testcase:23 PASSED
fcntl14 71 TPASS : testcase:24 PASSED
fcntl14 72 TPASS : testcase:25 PASSED
fcntl14 73 TPASS : testcase:26 PASSED
fcntl14 74 TPASS : testcase:27 PASSED
fcntl14 75 TPASS : testcase:28 PASSED
fcntl14 76 TPASS : testcase:29 PASSED
fcntl14 77 TPASS : testcase:30 PASSED
fcntl14 78 TPASS : testcase:31 PASSED
fcntl14 79 TPASS : testcase:32 PASSED
fcntl14 80 TPASS : testcase:33 PASSED
fcntl14 81 TPASS : testcase:34 PASSED
fcntl14 82 TPASS : testcase:35 PASSED
fcntl14 83 TPASS : testcase:36 PASSED
fcntl14 84 TPASS : Block 2, test 1 PASSED
fcntl14 85 TPASS : testcase:37 PASSED
fcntl14 86 TPASS : testcase:38 PASSED
fcntl14 87 TPASS : testcase:39 PASSED
fcntl14 88 TPASS : testcase:40 PASSED
fcntl14 89 TPASS : testcase:41 PASSED
fcntl14 90 TPASS : testcase:42 PASSED
fcntl14 91 TPASS : testcase:43 PASSED
fcntl14 92 TPASS : testcase:44 PASSED
fcntl14 93 TPASS : testcase:45 PASSED
fcntl14 94 TPASS : Block 2, test 2 PASSED
fcntl14 0 TINFO : Exit block 2
fcntl14 0 TINFO : Enter block 3
fcntl14 0 TINFO : Test with mandatory locking PASSED
fcntl14 0 TINFO : Exit block 3
fcntl14 0 TINFO : Enter block 4
fcntl14 93 TPASS : testcase:45 PASSED
fcntl14 94 TPASS : Block 2, test 2 PASSED
fcntl14 0 TINFO : Exit block 2
fcntl14 0 TINFO : Enter block 3
fcntl14 0 TINFO : Test with mandatory locking PASSED
fcntl14 0 TINFO : Exit block 3
fcntl14 0 TINFO : Enter block 4
fcntl14 93 TPASS : testcase:45 PASSED
fcntl14 94 TPASS : Block 2, test 2 PASSED
fcntl14 0 TINFO : Exit block 2
fcntl14 0 TINFO : Enter block 3
fcntl14 0 TINFO : Test with mandatory locking PASSED
fcntl14 0 TINFO : Exit block 3
fcntl14 0 TINFO : Enter block 4
fcntl14 0 TINFO : Test of locks on file PASSED
fcntl14 0 TINFO : Exit block 4
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=7
<<<test_end>>>
<<<test_start>>>
tag=fcntl14_64 stime=1372174648
cmdline="fcntl14_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl14 0 TINFO : Enter block 1: without mandatory locking
fcntl14 1 TPASS : testcase:1 PASSED
fcntl14 2 TPASS : testcase:2 PASSED
fcntl14 3 TPASS : testcase:3 PASSED
fcntl14 4 TPASS : testcase:4 PASSED
fcntl14 5 TPASS : testcase:5 PASSED
fcntl14 6 TPASS : testcase:6 PASSED
fcntl14 7 TPASS : testcase:7 PASSED
fcntl14 8 TPASS : testcase:8 PASSED
fcntl14 9 TPASS : testcase:9 PASSED
fcntl14 10 TPASS : testcase:10 PASSED
fcntl14 11 TPASS : testcase:11 PASSED
fcntl14 12 TPASS : testcase:12 PASSED
fcntl14 13 TPASS : testcase:13 PASSED
fcntl14 14 TPASS : testcase:14 PASSED
fcntl14 15 TPASS : testcase:15 PASSED
fcntl14 16 TPASS : testcase:16 PASSED
fcntl14 17 TPASS : testcase:17 PASSED
fcntl14 18 TPASS : testcase:18 PASSED
fcntl14 19 TPASS : testcase:19 PASSED
fcntl14 20 TPASS : testcase:20 PASSED
fcntl14 21 TPASS : testcase:21 PASSED
fcntl14 22 TPASS : testcase:22 PASSED
fcntl14 23 TPASS : testcase:23 PASSED
fcntl14 24 TPASS : testcase:24 PASSED
fcntl14 25 TPASS : testcase:25 PASSED
fcntl14 26 TPASS : testcase:26 PASSED
fcntl14 27 TPASS : testcase:27 PASSED
fcntl14 28 TPASS : testcase:28 PASSED
fcntl14 29 TPASS : testcase:29 PASSED
fcntl14 30 TPASS : testcase:30 PASSED
fcntl14 31 TPASS : testcase:31 PASSED
fcntl14 32 TPASS : testcase:32 PASSED
fcntl14 33 TPASS : testcase:33 PASSED
fcntl14 34 TPASS : testcase:34 PASSED
fcntl14 35 TPASS : testcase:35 PASSED
fcntl14 36 TPASS : testcase:36 PASSED
fcntl14 37 TPASS : Block 1, test 1 PASSED
fcntl14 38 TPASS : testcase:37 PASSED
fcntl14 39 TPASS : testcase:38 PASSED
fcntl14 40 TPASS : testcase:39 PASSED
fcntl14 41 TPASS : testcase:40 PASSED
fcntl14 42 TPASS : testcase:41 PASSED
fcntl14 43 TPASS : testcase:42 PASSED
fcntl14 44 TPASS : testcase:43 PASSED
fcntl14 45 TPASS : testcase:44 PASSED
fcntl14 46 TPASS : testcase:45 PASSED
fcntl14 47 TPASS : Block 1, test 2 PASSED
fcntl14 0 TINFO : Exit block 1
fcntl14 0 TINFO : Enter block 2: with mandatory locking
fcntl14 48 TPASS : testcase:1 PASSED
fcntl14 49 TPASS : testcase:2 PASSED
fcntl14 50 TPASS : testcase:3 PASSED
fcntl14 51 TPASS : testcase:4 PASSED
fcntl14 52 TPASS : testcase:5 PASSED
fcntl14 53 TPASS : testcase:6 PASSED
fcntl14 54 TPASS : testcase:7 PASSED
fcntl14 55 TPASS : testcase:8 PASSED
fcntl14 56 TPASS : testcase:9 PASSED
fcntl14 57 TPASS : testcase:10 PASSED
fcntl14 58 TPASS : testcase:11 PASSED
fcntl14 59 TPASS : testcase:12 PASSED
fcntl14 60 TPASS : testcase:13 PASSED
fcntl14 61 TPASS : testcase:14 PASSED
fcntl14 62 TPASS : testcase:15 PASSED
fcntl14 63 TPASS : testcase:16 PASSED
fcntl14 64 TPASS : testcase:17 PASSED
fcntl14 65 TPASS : testcase:18 PASSED
fcntl14 66 TPASS : testcase:19 PASSED
fcntl14 67 TPASS : testcase:20 PASSED
fcntl14 68 TPASS : testcase:21 PASSED
fcntl14 69 TPASS : testcase:22 PASSED
fcntl14 70 TPASS : testcase:23 PASSED
fcntl14 71 TPASS : testcase:24 PASSED
fcntl14 72 TPASS : testcase:25 PASSED
fcntl14 73 TPASS : testcase:26 PASSED
fcntl14 74 TPASS : testcase:27 PASSED
fcntl14 75 TPASS : testcase:28 PASSED
fcntl14 76 TPASS : testcase:29 PASSED
fcntl14 77 TPASS : testcase:30 PASSED
fcntl14 78 TPASS : testcase:31 PASSED
fcntl14 79 TPASS : testcase:32 PASSED
fcntl14 80 TPASS : testcase:33 PASSED
fcntl14 81 TPASS : testcase:34 PASSED
fcntl14 82 TPASS : testcase:35 PASSED
fcntl14 83 TPASS : testcase:36 PASSED
fcntl14 84 TPASS : Block 2, test 1 PASSED
fcntl14 85 TPASS : testcase:37 PASSED
fcntl14 86 TPASS : testcase:38 PASSED
fcntl14 87 TPASS : testcase:39 PASSED
fcntl14 88 TPASS : testcase:40 PASSED
fcntl14 89 TPASS : testcase:41 PASSED
fcntl14 90 TPASS : testcase:42 PASSED
fcntl14 91 TPASS : testcase:43 PASSED
fcntl14 92 TPASS : testcase:44 PASSED
fcntl14 93 TPASS : testcase:45 PASSED
fcntl14 94 TPASS : Block 2, test 2 PASSED
fcntl14 0 TINFO : Exit block 2
fcntl14 0 TINFO : Enter block 3
fcntl14 0 TINFO : Test with mandatory locking PASSED
fcntl14 0 TINFO : Exit block 3
fcntl14 0 TINFO : Enter block 4
fcntl14 93 TPASS : testcase:45 PASSED
fcntl14 94 TPASS : Block 2, test 2 PASSED
fcntl14 0 TINFO : Exit block 2
fcntl14 0 TINFO : Enter block 3
fcntl14 0 TINFO : Test with mandatory locking PASSED
fcntl14 0 TINFO : Exit block 3
fcntl14 0 TINFO : Enter block 4
fcntl14 93 TPASS : testcase:45 PASSED
fcntl14 94 TPASS : Block 2, test 2 PASSED
fcntl14 0 TINFO : Exit block 2
fcntl14 0 TINFO : Enter block 3
fcntl14 0 TINFO : Test with mandatory locking PASSED
fcntl14 0 TINFO : Exit block 3
fcntl14 0 TINFO : Enter block 4
fcntl14 0 TINFO : Test of locks on file PASSED
fcntl14 0 TINFO : Exit block 4
<<<execution_status>>>
initiation_status="ok"
duration=5 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=fcntl15 stime=1372174653
cmdline="fcntl15"
contacts=""
analysis=exit
<<<test_output>>>
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Test 2: test with "open" PASSED
fcntl15 0 TINFO : Exiting block 2
fcntl15 0 TINFO : Entering block 3
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Test 2: test with "open" PASSED
fcntl15 0 TINFO : Exiting block 2
fcntl15 0 TINFO : Entering block 3
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Test 2: test with "open" PASSED
fcntl15 0 TINFO : Exiting block 2
fcntl15 0 TINFO : Entering block 3
fcntl15 0 TINFO : Test 3: test with "fork" PASSED
fcntl15 0 TINFO : Exiting block 3
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl15_64 stime=1372174663
cmdline="fcntl15_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Test 2: test with "open" PASSED
fcntl15 0 TINFO : Exiting block 2
fcntl15 0 TINFO : Entering block 3
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Test 2: test with "open" PASSED
fcntl15 0 TINFO : Exiting block 2
fcntl15 0 TINFO : Entering block 3
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Test 2: test with "open" PASSED
fcntl15 0 TINFO : Exiting block 2
fcntl15 0 TINFO : Entering block 3
fcntl15 0 TINFO : Test 3: test with "fork" PASSED
fcntl15 0 TINFO : Exiting block 3
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl16 stime=1372174673
cmdline="fcntl16"
contacts=""
analysis=exit
<<<test_output>>>
fcntl16 0 TINFO : Entering block 1
fcntl16 0 TINFO : Test case 1: without manadatory locking PASSED
fcntl16 0 TINFO : Exiting block 1
fcntl16 0 TINFO : Entering block 2
fcntl16 0 TINFO : Test case 2: with mandatory record locking PASSED
fcntl16 0 TINFO : Exiting block 2
fcntl16 0 TINFO : Entering block 3
fcntl16 0 TINFO : Test case 3: mandatory locking with NODELAY PASSED
fcntl16 0 TINFO : Exiting block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl16_64 stime=1372174673
cmdline="fcntl16_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl16 0 TINFO : Entering block 1
fcntl16 0 TINFO : Test case 1: without manadatory locking PASSED
fcntl16 0 TINFO : Exiting block 1
fcntl16 0 TINFO : Entering block 2
fcntl16 0 TINFO : Test case 2: with mandatory record locking PASSED
fcntl16 0 TINFO : Exiting block 2
fcntl16 0 TINFO : Entering block 3
fcntl16 0 TINFO : Test case 3: mandatory locking with NODELAY PASSED
fcntl16 0 TINFO : Exiting block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl17 stime=1372174673
cmdline="fcntl17"
contacts=""
analysis=exit
<<<test_output>>>
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : child 1 starting
fcntl17 0 TINFO : child 1 pid 17059 locked
fcntl17 0 TINFO : child 1 resuming
fcntl17 0 TINFO : child 1 unlocked
fcntl17 0 TINFO : child 1 exiting
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : child 3 starting
fcntl17 0 TINFO : child 3 pid 17061 locked
fcntl17 0 TINFO : child 3 resuming
fcntl17 0 TINFO : child 3 lockw err 35
fcntl17 0 TINFO : child 3 exiting
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : child 2 starting
fcntl17 0 TINFO : child 2 pid 17060 locked
fcntl17 0 TINFO : child 2 resuming
fcntl17 0 TINFO : child 2 lockw locked
fcntl17 0 TINFO : child 2 exiting
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : Exit preparation phase
fcntl17 0 TINFO : Enter block 1
fcntl17 0 TINFO : Block 1 PASSED
fcntl17 0 TINFO : Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl17_64 stime=1372174673
cmdline="fcntl17_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : child 3 starting
fcntl17 0 TINFO : child 3 pid 17065 locked
fcntl17 0 TINFO : child 3 resuming
fcntl17 0 TINFO : child 3 lockw err 35
fcntl17 0 TINFO : child 3 exiting
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : child 1 starting
fcntl17 0 TINFO : child 1 pid 17063 locked
fcntl17 0 TINFO : child 1 resuming
fcntl17 0 TINFO : child 1 unlocked
fcntl17 0 TINFO : child 1 exiting
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : child 2 starting
fcntl17 0 TINFO : child 2 pid 17064 locked
fcntl17 0 TINFO : child 2 resuming
fcntl17 0 TINFO : child 2 lockw locked
fcntl17 0 TINFO : child 2 exiting
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : Exit preparation phase
fcntl17 0 TINFO : Enter block 1
fcntl17 0 TINFO : Block 1 PASSED
fcntl17 0 TINFO : Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl18 stime=1372174673
cmdline="fcntl18"
contacts=""
analysis=exit
<<<test_output>>>
fcntl18 0 TINFO : Enter block 1
fcntl18 1 TPASS : Test F_GETLK: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 1 PASSED
fcntl18 0 TINFO : Exit block 1
fcntl18 0 TINFO : Enter block 2
fcntl18 2 TPASS : Test F_GETLK64: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 2 PASSED
fcntl18 0 TINFO : Exit block 2
fcntl18 0 TINFO : Enter block 3
fcntl18 3 TPASS : Test for errno EINVAL PASSED
fcntl18 0 TINFO : Enter block 1
fcntl18 1 TPASS : Test F_GETLK: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 1 PASSED
fcntl18 0 TINFO : Exit block 1
fcntl18 0 TINFO : Enter block 2
fcntl18 2 TPASS : Test F_GETLK64: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 2 PASSED
fcntl18 0 TINFO : Exit block 2
fcntl18 0 TINFO : Enter block 3
fcntl18 0 TINFO : Block 3 PASSED
fcntl18 0 TINFO : Exit block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl18_64 stime=1372174673
cmdline="fcntl18_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl18 0 TINFO : Enter block 1
fcntl18 1 TPASS : Test F_GETLK: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 1 PASSED
fcntl18 0 TINFO : Exit block 1
fcntl18 0 TINFO : Enter block 2
fcntl18 2 TPASS : Test F_GETLK64: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 2 PASSED
fcntl18 0 TINFO : Exit block 2
fcntl18 0 TINFO : Enter block 3
fcntl18 3 TPASS : Test for errno EINVAL PASSED
fcntl18 0 TINFO : Enter block 1
fcntl18 1 TPASS : Test F_GETLK: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 1 PASSED
fcntl18 0 TINFO : Exit block 1
fcntl18 0 TINFO : Enter block 2
fcntl18 2 TPASS : Test F_GETLK64: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 2 PASSED
fcntl18 0 TINFO : Exit block 2
fcntl18 0 TINFO : Enter block 3
fcntl18 0 TINFO : Block 3 PASSED
fcntl18 0 TINFO : Exit block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl19 stime=1372174673
cmdline="fcntl19"
contacts=""
analysis=exit
<<<test_output>>>
fcntl19 0 TINFO : Enter block 1
fcntl19 0 TINFO : Test block 1: PASSED
fcntl19 0 TINFO : Exit block 1
fcntl19 0 TINFO : Enter block 2
fcntl19 0 TINFO : Test block 2: PASSED
fcntl19 0 TINFO : Exit block 2
fcntl19 0 TINFO : Enter block 3
fcntl19 0 TINFO : Test block 3: PASSED
fcntl19 0 TINFO : Exit block 3
fcntl19 0 TINFO : Enter blcok 4
fcntl19 0 TINFO : Test block 4: PASSED
fcntl19 0 TINFO : Exit block 4
fcntl19 0 TINFO : Enter block 5
fcntl19 0 TINFO : Test block 5: PASSED
fcntl19 0 TINFO : Exit block 5
fcntl19 0 TINFO : Enter block 6
fcntl19 0 TINFO : Test block 6: PASSED
fcntl19 0 TINFO : Exit block 6
fcntl19 0 TINFO : Enter block 7
fcntl19 0 TINFO : Test block 7: PASSED
fcntl19 0 TINFO : Exit block 7
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl19_64 stime=1372174673
cmdline="fcntl19_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl19 0 TINFO : Enter block 1
fcntl19 0 TINFO : Test block 1: PASSED
fcntl19 0 TINFO : Exit block 1
fcntl19 0 TINFO : Enter block 2
fcntl19 0 TINFO : Test block 2: PASSED
fcntl19 0 TINFO : Exit block 2
fcntl19 0 TINFO : Enter block 3
fcntl19 0 TINFO : Test block 3: PASSED
fcntl19 0 TINFO : Exit block 3
fcntl19 0 TINFO : Enter blcok 4
fcntl19 0 TINFO : Test block 4: PASSED
fcntl19 0 TINFO : Exit block 4
fcntl19 0 TINFO : Enter block 5
fcntl19 0 TINFO : Test block 5: PASSED
fcntl19 0 TINFO : Exit block 5
fcntl19 0 TINFO : Enter block 6
fcntl19 0 TINFO : Test block 6: PASSED
fcntl19 0 TINFO : Exit block 6
fcntl19 0 TINFO : Enter block 7
fcntl19 0 TINFO : Test block 7: PASSED
fcntl19 0 TINFO : Exit block 7
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl20 stime=1372174673
cmdline="fcntl20"
contacts=""
analysis=exit
<<<test_output>>>
fcntl20 0 TINFO : Enter block 1
fcntl20 0 TINFO : Test block 1: PASSED
fcntl20 0 TINFO : Exit block 1
fcntl20 0 TINFO : Enter block 2
fcntl20 0 TINFO : Test block 2: PASSED
fcntl20 0 TINFO : Exit block 2
fcntl20 0 TINFO : Enter block 3
fcntl20 0 TINFO : Test block 3: PASSED
fcntl20 0 TINFO : Exit block 3
fcntl20 0 TINFO : Enter blcok 4
fcntl20 0 TINFO : Test block 4: PASSED
fcntl20 0 TINFO : Exit block 4
fcntl20 0 TINFO : Enter block 5
fcntl20 0 TINFO : Test block 5: PASSED
fcntl20 0 TINFO : Exit block 5
fcntl20 0 TINFO : Enter block 6
fcntl20 0 TINFO : Test block 6: PASSED
fcntl20 0 TINFO : Exit block 6
fcntl20 0 TINFO : Enter block 7
fcntl20 0 TINFO : Test block 7: PASSED
fcntl20 0 TINFO : Exit block 7
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl20_64 stime=1372174673
cmdline="fcntl20_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl20 0 TINFO : Enter block 1
fcntl20 0 TINFO : Test block 1: PASSED
fcntl20 0 TINFO : Exit block 1
fcntl20 0 TINFO : Enter block 2
fcntl20 0 TINFO : Test block 2: PASSED
fcntl20 0 TINFO : Exit block 2
fcntl20 0 TINFO : Enter block 3
fcntl20 0 TINFO : Test block 3: PASSED
fcntl20 0 TINFO : Exit block 3
fcntl20 0 TINFO : Enter blcok 4
fcntl20 0 TINFO : Test block 4: PASSED
fcntl20 0 TINFO : Exit block 4
fcntl20 0 TINFO : Enter block 5
fcntl20 0 TINFO : Test block 5: PASSED
fcntl20 0 TINFO : Exit block 5
fcntl20 0 TINFO : Enter block 6
fcntl20 0 TINFO : Test block 6: PASSED
fcntl20 0 TINFO : Exit block 6
fcntl20 0 TINFO : Enter block 7
fcntl20 0 TINFO : Test block 7: PASSED
fcntl20 0 TINFO : Exit block 7
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl21 stime=1372174673
cmdline="fcntl21"
contacts=""
analysis=exit
<<<test_output>>>
fcntl21 0 TINFO : Enter block 1
fcntl21 0 TINFO : Test block 1: PASSED
fcntl21 0 TINFO : Exit block 1
fcntl21 0 TINFO : Enter block 2
fcntl21 0 TINFO : Test block 2: PASSED
fcntl21 0 TINFO : Exit block 2
fcntl21 0 TINFO : Enter block 3
fcntl21 0 TINFO : Test block 3 : PASSED
fcntl21 0 TINFO : Exit block 3
fcntl21 0 TINFO : Enter block 4
fcntl21 0 TINFO : Test block 4: PASSED
fcntl21 0 TINFO : Exit block 4
fcntl21 0 TINFO : Enter block 5
fcntl21 0 TINFO : Test block 5: PASSED
fcntl21 0 TINFO : Exit block 5
fcntl21 0 TINFO : Enter block 6
fcntl21 0 TINFO : Test block 6 PASSED
fcntl21 0 TINFO : Exit block 6
fcntl21 0 TINFO : Enter block 7
fcntl21 0 TINFO : Test block 7: PASSED
fcntl21 0 TINFO : Exit block 7
fcntl21 0 TINFO : Enter block 8
fcntl21 0 TINFO : Test block 8: PASSED
fcntl21 0 TINFO : Exit block 8
fcntl21 0 TINFO : Enter block 9
fcntl21 0 TINFO : Test block 9: PASSED
fcntl21 0 TINFO : Exit block 9
fcntl21 0 TINFO : Enter block 10
fcntl21 0 TINFO : Test block 10: PASSED
fcntl21 0 TINFO : Exit block 10
fcntl21 0 TINFO : Enter block 11
fcntl21 0 TINFO : Test block 11: PASSED
fcntl21 0 TINFO : Exit block 11
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl21_64 stime=1372174673
cmdline="fcntl21_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl21 0 TINFO : Enter block 1
fcntl21 0 TINFO : Test block 1: PASSED
fcntl21 0 TINFO : Exit block 1
fcntl21 0 TINFO : Enter block 2
fcntl21 0 TINFO : Test block 2: PASSED
fcntl21 0 TINFO : Exit block 2
fcntl21 0 TINFO : Enter block 3
fcntl21 0 TINFO : Test block 3 : PASSED
fcntl21 0 TINFO : Exit block 3
fcntl21 0 TINFO : Enter block 4
fcntl21 0 TINFO : Test block 4: PASSED
fcntl21 0 TINFO : Exit block 4
fcntl21 0 TINFO : Enter block 5
fcntl21 0 TINFO : Test block 5: PASSED
fcntl21 0 TINFO : Exit block 5
fcntl21 0 TINFO : Enter block 6
fcntl21 0 TINFO : Test block 6 PASSED
fcntl21 0 TINFO : Exit block 6
fcntl21 0 TINFO : Enter block 7
fcntl21 0 TINFO : Test block 7: PASSED
fcntl21 0 TINFO : Exit block 7
fcntl21 0 TINFO : Enter block 8
fcntl21 0 TINFO : Test block 8: PASSED
fcntl21 0 TINFO : Exit block 8
fcntl21 0 TINFO : Enter block 9
fcntl21 0 TINFO : Test block 9: PASSED
fcntl21 0 TINFO : Exit block 9
fcntl21 0 TINFO : Enter block 10
fcntl21 0 TINFO : Test block 10: PASSED
fcntl21 0 TINFO : Exit block 10
fcntl21 0 TINFO : Enter block 11
fcntl21 0 TINFO : Test block 11: PASSED
fcntl21 0 TINFO : Exit block 11
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl22 stime=1372174673
cmdline="fcntl22"
contacts=""
analysis=exit
<<<test_output>>>
fcntl22 1 TPASS : fcntl() fails with expected error EAGAIN errno:11
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl22_64 stime=1372174673
cmdline="fcntl22_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl22 1 TPASS : fcntl() fails with expected error EAGAIN errno:11
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl23 stime=1372174673
cmdline="fcntl23"
contacts=""
analysis=exit
<<<test_output>>>
fcntl23 1 TPASS : fcntl(tfile_17086, F_SETLEASE, F_RDLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl23_64 stime=1372174673
cmdline="fcntl23_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl23 1 TPASS : fcntl(tfile_17087, F_SETLEASE, F_RDLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl24 stime=1372174673
cmdline="fcntl24"
contacts=""
analysis=exit
<<<test_output>>>
fcntl24 1 TPASS : fcntl(tfile_17088, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl24_64 stime=1372174673
cmdline="fcntl24_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl24 1 TPASS : fcntl(tfile_17089, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl25 stime=1372174673
cmdline="fcntl25"
contacts=""
analysis=exit
<<<test_output>>>
fcntl25 1 TPASS : fcntl(tfile_17090, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl25_64 stime=1372174673
cmdline="fcntl25_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl25 1 TPASS : fcntl(tfile_17091, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl26 stime=1372174673
cmdline="fcntl26"
contacts=""
analysis=exit
<<<test_output>>>
fcntl26 1 TPASS : fcntl(tfile_17092, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl26_64 stime=1372174673
cmdline="fcntl26_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl26 1 TPASS : fcntl(tfile_17093, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl27 stime=1372174673
cmdline="fcntl27"
contacts=""
analysis=exit
<<<test_output>>>
fcntl27 1 TPASS : fcntl(fd, F_SETLEASE, F_RDLCK) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl27_64 stime=1372174673
cmdline="fcntl27_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl27 1 TPASS : fcntl(fd, F_SETLEASE, F_RDLCK) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl28 stime=1372174673
cmdline="fcntl28"
contacts=""
analysis=exit
<<<test_output>>>
fcntl28 1 TPASS : fcntl(fd, F_SETLEASE, F_RDLCK) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl28_64 stime=1372174673
cmdline="fcntl28_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl28 1 TPASS : fcntl(fd, F_SETLEASE, F_RDLCK) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fdatasync01 stime=1372174673
cmdline="fdatasync01"
contacts=""
analysis=exit
<<<test_output>>>
fdatasync01 1 TPASS : fdatasync() successful
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fdatasync02 stime=1372174674
cmdline="fdatasync02"
contacts=""
analysis=exit
<<<test_output>>>
fdatasync02 1 TPASS : Expected failure for invalid file descriptor, errno: 9
fdatasync02 2 TPASS : Expected failure for file descriptor to a special file, errno: 22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock01 stime=1372174674
cmdline="flock01"
contacts=""
analysis=exit
<<<test_output>>>
flock01 1 TPASS : flock() succeeded with Shared Lock, returned error number=0
flock01 2 TPASS : flock() succeeded with Unlock, returned error number=0
flock01 3 TPASS : flock() succeeded with Exclusive Lock, returned error number=0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock02 stime=1372174674
cmdline="flock02"
contacts=""
analysis=exit
<<<test_output>>>
flock02 1 TPASS : flock failed as expected with EBADF
flock02 2 TPASS : flock failed as expected with EINVAL
flock02 3 TPASS : flock failed as expected with EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock03 stime=1372174674
cmdline="flock03"
contacts=""
analysis=exit
<<<test_output>>>
CHILD: File locked by parent unlocked
CHILD: Locking after unlock passed
flock03 1 TPASS : Parent: Initial attempt to flock() passed
flock03 2 TPASS : flock03 Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock04 stime=1372174674
cmdline="flock04"
contacts=""
analysis=exit
<<<test_output>>>
flock04 1 TPASS : flock() PASSED in acquiring shared lock on Share Locked file
flock04 1 TPASS : flock() failed to acquire exclusive lock on existing share locked file as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=flock05 stime=1372174674
cmdline="flock05"
contacts=""
analysis=exit
<<<test_output>>>
flock05 1 TPASS : flock() failed to acquire shared lock on an alreadyexclusive locked file as expected
flock05 1 TPASS : flock() failed to acquire exclusive lock on existing exclusive locked file as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock06 stime=1372174674
cmdline="flock06"
contacts=""
analysis=exit
<<<test_output>>>
flock06 1 TPASS : First attempt to flock() passed
flock06 2 TPASS : Second attempt to flock() denied
flock06 3 TPASS : Unlocked fd1
flock06 4 TPASS : Third attempt to flock() succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fmtmsg01 stime=1372174674
cmdline="fmtmsg01"
contacts=""
analysis=exit
<<<test_output>>>
fmtms01 1 TPASS : Test passed
fmtms01 2 TPASS : Test passed
fmtms01 3 TPASS : Test passed
fmtms01 4 TPASS : Test passed
fmtms01 5 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork01 stime=1372174674
cmdline="fork01"
contacts=""
analysis=exit
<<<test_output>>>
fork01 1 TPASS : fork() returned 17113
fork01 2 TPASS : child pid and fork() return agree: 17113
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork02 stime=1372174674
cmdline="fork02"
contacts=""
analysis=exit
<<<test_output>>>
fork02 0 TINFO : Inside parent
fork02 0 TINFO : exit status of wait 0
fork02 1 TPASS : test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork03 stime=1372174674
cmdline="fork03"
contacts=""
analysis=exit
<<<test_output>>>
fork03 0 TINFO : process id in parent of child from fork : 17117
fork03 1 TPASS : test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork04 stime=1372174674
cmdline="fork04"
contacts=""
analysis=exit
<<<test_output>>>
fork04 1 TPASS : Env var TERM unchanged after fork(): xterm
fork04 2 TPASS : Env var NoTSetzWq unchanged after fork(): getenv() does not find variable set
fork04 3 TPASS : Env var TESTPROG unchanged after fork(): FRKTCS04
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fork05 stime=1372174674
cmdline="fork05"
contacts=""
analysis=exit
<<<test_output>>>
fork05 0 TINFO : %fs test only for ix86
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork06 stime=1372174674
cmdline="fork06"
contacts=""
analysis=exit
<<<test_output>>>
fork06 0 TINFO : tries 1000
fork06 0 TINFO : successes 1000
fork06 0 TINFO : failures 0
fork06 0 TINFO : There were no children to wait for
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=2 cstime=14
<<<test_end>>>
<<<test_start>>>
tag=fork07 stime=1372174674
cmdline="fork07"
contacts=""
analysis=exit
<<<test_output>>>
fork07 0 TINFO : Forking 100 children
fork07 0 TINFO : Forked all 100 children, now collecting
fork07 0 TINFO : Collected all 100 children
fork07 1 TPASS : 100/100 children read correctly from an inheritted fd
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=fork08 stime=1372174675
cmdline="fork08"
contacts=""
analysis=exit
<<<test_output>>>
fork08 0 TINFO : parent forksval: 1
fork08 0 TINFO : second child got char: b
fork08 1 TPASS : Test passed in childnumber 2
fork08 0 TINFO : parent forksval: 1
fork08 0 TINFO : parent forksval: 2
fork08 0 TINFO : exit status of wait expected 0 got 0
fork08 1 TPASS : parent test PASSED
fork08 0 TINFO : exit status of wait expected 0 got 0
fork08 2 TPASS : parent test PASSED
fork08 0 TINFO : exit status of wait expected 0 got 0
fork08 3 TPASS : parent test PASSED
fork08 0 TINFO : Number of processes forked is 2
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fork09 stime=1372174676
cmdline="fork09"
contacts=""
analysis=exit
<<<test_output>>>
fork09 0 TINFO : OPEN_MAX is 1024
fork09 0 TINFO : first file descriptor is 5
fork09 0 TINFO : Parent reporting 1023 files open
fork09 0 TINFO : Child opened new file #1023
fork09 0 TINFO : OPEN_MAX is 1024
fork09 0 TINFO : first file descriptor is 5
fork09 0 TINFO : Parent reporting 1023 files open
fork09 1 TPASS : test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=5
<<<test_end>>>
<<<test_start>>>
tag=fork10 stime=1372174676
cmdline="fork10"
contacts=""
analysis=exit
<<<test_output>>>
fork10 0 TINFO : fork child A
fork10 1 TPASS : test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork11 stime=1372174676
cmdline="fork11"
contacts=""
analysis=exit
<<<test_output>>>
fork11 1 TPASS : fork test passed, 100 processes
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=fork13 stime=1372174676
cmdline="fork13 -i 1000000"
contacts=""
analysis=exit
<<<test_output>>>
fork13 1 TPASS : 1000000 pids forked, all passed
<<<execution_status>>>
initiation_status="ok"
duration=191 termination_type=exited termination_id=0 corefile=no
cutime=3514 cstime=15339
<<<test_end>>>
<<<test_start>>>
tag=fpathconf01 stime=1372174867
cmdline="fpathconf01"
contacts=""
analysis=exit
<<<test_output>>>
fpathconf01 1 TPASS : fpathconf(fd, _PC_MAX_CANON) returned 255
fpathconf01 2 TPASS : fpathconf(fd, _PC_MAX_INPUT) returned 255
fpathconf01 3 TPASS : fpathconf(fd, _PC_VDISABLE) returned 0
fpathconf01 4 TPASS : fpathconf(fd, _PC_LINK_MAX) returned 65000
fpathconf01 5 TPASS : fpathconf(fd, _PC_NAME_MAX) returned 255
fpathconf01 6 TPASS : fpathconf(fd, _PC_PATH_MAX) returned 4096
fpathconf01 7 TPASS : fpathconf(fd, _PC_PIPE_BUF) returned 4096
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat01 stime=1372174867
cmdline="fstat01"
contacts=""
analysis=exit
<<<test_output>>>
fstat01 1 TPASS : fstat returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fstat01_64 stime=1372174867
cmdline="fstat01_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat01 1 TPASS : fstat returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat02 stime=1372174867
cmdline="fstat02"
contacts=""
analysis=exit
<<<test_output>>>
fstat02 1 TPASS : functionality of fstat correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat02_64 stime=1372174867
cmdline="fstat02_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat02 1 TPASS : functionality of fstat correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat03 stime=1372174867
cmdline="fstat03"
contacts=""
analysis=exit
<<<test_output>>>
fstat03 1 TPASS : fstat() fails with expected error EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat03_64 stime=1372174867
cmdline="fstat03_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat03 1 TPASS : fstat() fails with expected error EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat04 stime=1372174867
cmdline="fstat04"
contacts=""
analysis=exit
<<<test_output>>>
fstat04 1 TPASS : fstat functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fstat04_64 stime=1372174867
cmdline="fstat04_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat04 1 TPASS : fstat functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat05 stime=1372174867
cmdline="fstat05"
contacts=""
analysis=exit
<<<test_output>>>
fstat05 1 TPASS : fstat failed with EFAULT as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat05_64 stime=1372174867
cmdline="fstat05_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat05 1 TPASS : fstat failed with EFAULT as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatat01 stime=1372174867
cmdline="fstatat01"
contacts=""
analysis=exit
<<<test_output>>>
fstatat01 1 TPASS : fstatat failed as expected: TEST_ERRNO=???(0): Success
fstatat01 2 TPASS : fstatat failed as expected: TEST_ERRNO=???(0): Success
fstatat01 3 TPASS : fstatat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
fstatat01 4 TPASS : fstatat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
fstatat01 5 TPASS : fstatat failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
fstatat01 6 TPASS : fstatat failed as expected: TEST_ERRNO=???(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatat01_64 stime=1372174867
cmdline="fstatat01_64"
contacts=""
analysis=exit
<<<test_output>>>
fstatat01 1 TPASS : fstatat failed as expected: TEST_ERRNO=???(0): Success
fstatat01 2 TPASS : fstatat failed as expected: TEST_ERRNO=???(0): Success
fstatat01 3 TPASS : fstatat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
fstatat01 4 TPASS : fstatat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
fstatat01 5 TPASS : fstatat failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
fstatat01 6 TPASS : fstatat failed as expected: TEST_ERRNO=???(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatfs01 stime=1372174867
cmdline="fstatfs01"
contacts=""
analysis=exit
<<<test_output>>>
fstatfs01 1 TPASS : fstatfs(5, &stats, sizeof(struct statfs), 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatfs01_64 stime=1372174867
cmdline="fstatfs01_64"
contacts=""
analysis=exit
<<<test_output>>>
fstatfs01 1 TPASS : fstatfs(5, &stats, sizeof(struct statfs), 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fstatfs02 stime=1372174867
cmdline="fstatfs02"
contacts=""
analysis=exit
<<<test_output>>>
fstatfs02 1 TPASS : expected failure - errno = 9 : Bad file descriptor
fstatfs02 2 TPASS : expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatfs02_64 stime=1372174867
cmdline="fstatfs02_64"
contacts=""
analysis=exit
<<<test_output>>>
fstatfs02 1 TPASS : expected failure - errno = 9 : Bad file descriptor
fstatfs02 2 TPASS : expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fsync01 stime=1372174867
cmdline="fsync01"
contacts=""
analysis=exit
<<<test_output>>>
fsync01 1 TPASS : fsync returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fsync02 stime=1372174867
cmdline="fsync02"
contacts=""
analysis=exit
<<<test_output>>>
fsync02 1 TPASS : fsync succeeded in an acceptable amount of time
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=4
<<<test_end>>>
<<<test_start>>>
tag=fsync03 stime=1372174870
cmdline="fsync03"
contacts=""
analysis=exit
<<<test_output>>>
fsync03 1 TPASS : expected failure - errno = 9 : Bad file descriptor
fsync03 2 TPASS : expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=ftruncate01 stime=1372174870
cmdline="ftruncate01"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate01 1 TPASS : Functionality of ftruncate() on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate01_64 stime=1372174870
cmdline="ftruncate01_64"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate01_64 1 TPASS : Functionality of ftruncate() on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate02 stime=1372174870
cmdline="ftruncate02"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate02 1 TPASS : Functionality of ftruncate(2) on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate02_64 stime=1372174870
cmdline="ftruncate02_64"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate02_64 1 TPASS : Functionality of ftruncate(2) on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate03 stime=1372174870
cmdline="ftruncate03"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate03 1 TPASS : Test Passed
ftruncate03 2 TPASS : Test Passed
ftruncate03 3 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate03_64 stime=1372174870
cmdline="ftruncate03_64"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate03_64 1 TPASS : Test Passed
ftruncate03_64 2 TPASS : Test Passed
ftruncate03_64 3 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate04 stime=1372174870
cmdline="ftruncate04.sh"
contacts=""
analysis=exit
<<<test_output>>>
DEV: /dev/loop0
MOUNT_POINT: /
FLAG: rw,relatime,errors=remount-ro,data=ordered
ftruncate04 1 TPASS : Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=5
<<<test_end>>>
<<<test_start>>>
tag=ftruncate04_64 stime=1372174870
cmdline="ftruncate04.sh 64"
contacts=""
analysis=exit
<<<test_output>>>
DEV: /dev/loop0
MOUNT_POINT: /
FLAG: rw,relatime,errors=remount-ro,data=ordered
ftruncate04_64 1 TPASS : Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=futimesat01 stime=1372174870
cmdline="futimesat01"
contacts=""
analysis=exit
<<<test_output>>>
futimesat01 1 TPASS : futimesat() returned the expected errno 0: Success
futimesat01 2 TPASS : futimesat() returned the expected errno 0: Success
futimesat01 3 TPASS : futimesat() returned the expected errno 20: Not a directory
futimesat01 4 TPASS : futimesat() returned the expected errno 9: Bad file descriptor
futimesat01 5 TPASS : futimesat() returned the expected errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getcontext01 stime=1372174870
cmdline="getcontext01"
contacts=""
analysis=exit
<<<test_output>>>
getcontext01 1 TPASS : getcontext passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getcpu01 stime=1372174870
cmdline="getcpu01"
contacts=""
analysis=exit
<<<test_output>>>
getcpu01 1 TPASS : getcpu() returned proper cpuid:3, node id:0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getcwd01 stime=1372174870
cmdline="getcwd01"
contacts=""
analysis=exit
<<<test_output>>>
getcwd01 0 TINFO : Test for EFAULT
getcwd01 1 TPASS : Test case 1 PASSED
getcwd01 0 TINFO : Test for ENOMEM
getcwd01 2 TPASS : Test case 2 PASSED
getcwd01 0 TINFO : Test for EINVAL
getcwd01 3 TPASS : Test case 3 PASSED
getcwd01 0 TINFO : Test for ERANGE
getcwd01 4 TPASS : Test case 4 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getcwd02 stime=1372174870
cmdline="getcwd02"
contacts=""
analysis=exit
<<<test_output>>>
getcwd02 0 TINFO : Enter Block 1
getcwd02 0 TINFO : Exit Block 1
getcwd02 1 TPASS : Block 1 PASSED
getcwd02 0 TINFO : Enter Block 2
getcwd02 0 TINFO : Exit Block 2
getcwd02 2 TPASS : Block 2 PASSED
getcwd02 0 TINFO : Enter Block 3
getcwd02 0 TINFO : Exit Block 3
getcwd02 3 TPASS : Block 3 PASSED
getcwd02 0 TINFO : Enter Block 4
getcwd02 0 TINFO : Exit Block 4
getcwd02 4 TPASS : Block 4 PASSED
getcwd02 0 TINFO : Enter Block 5
getcwd02 0 TINFO : Exit Block 5
getcwd02 5 TPASS : Block 5 PASSED
getcwd02 0 TINFO : Enter Block 6
getcwd02 0 TINFO : Exit Block 6
getcwd02 6 TPASS : Block 6 PASSED
getcwd02 0 TINFO : Enter Block 7
getcwd02 0 TINFO : Exit Block 7
getcwd02 7 TPASS : Block 7 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getcwd03 stime=1372174870
cmdline="getcwd03"
contacts=""
analysis=exit
<<<test_output>>>
getcwd03 0 TINFO : getcwd(2) succeeded in returning correct path for dir1
getcwd03 0 TINFO : getcwd(2) succeeded in returning correct path for symbolic link dir2 -> dir1
getcwd03 1 TPASS : Test PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents01 stime=1372174870
cmdline="getdents01"
contacts=""
analysis=exit
<<<test_output>>>
getdents01 0 TINFO : Found 'symlink'
getdents01 0 TINFO : Found 'file'
getdents01 0 TINFO : Found '.'
getdents01 0 TINFO : Found 'dir'
getdents01 0 TINFO : Found '..'
getdents01 1 TPASS : All entires found
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents02 stime=1372174870
cmdline="getdents02"
contacts=""
analysis=exit
<<<test_output>>>
getdents02 1 TPASS : failed as expected with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getdents03 stime=1372174870
cmdline="getdents03"
contacts=""
analysis=exit
<<<test_output>>>
getdents03 1 TPASS : getdents failed with EINVAL as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents04 stime=1372174870
cmdline="getdents04"
contacts=""
analysis=exit
<<<test_output>>>
getdents04 1 TPASS : getdents failed as expected with ENOTDIR
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents01_64 stime=1372174870
cmdline="getdents01 -l"
contacts=""
analysis=exit
<<<test_output>>>
getdents01 0 TINFO : Found 'symlink'
getdents01 0 TINFO : Found 'file'
getdents01 0 TINFO : Found '.'
getdents01 0 TINFO : Found 'dir'
getdents01 0 TINFO : Found '..'
getdents01 1 TPASS : All entires found
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents02_64 stime=1372174870
cmdline="getdents02 -l"
contacts=""
analysis=exit
<<<test_output>>>
getdents02 1 TPASS : failed as expected with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents03_64 stime=1372174870
cmdline="getdents03 -l"
contacts=""
analysis=exit
<<<test_output>>>
getdents03 1 TPASS : getdents failed with EINVAL as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents04_64 stime=1372174870
cmdline="getdents04 -l"
contacts=""
analysis=exit
<<<test_output>>>
getdents04 1 TPASS : getdents failed as expected with ENOTDIR
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdomainname01 stime=1372174870
cmdline="getdomainname01"
contacts=""
analysis=exit
<<<test_output>>>
getdomainname01 1 TPASS : getdomainname() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdtablesize01 stime=1372174870
cmdline="getdtablesize01"
contacts=""
analysis=exit
<<<test_output>>>
getdtablesize01 0 TINFO : Maximum number of files a process can have opened is 1024
getdtablesize01 0 TINFO : Checking with the value returned by getrlimit...RLIMIT_NOFILE
getdtablesize01 1 TPASS : got correct dtablesize, value is 1024
getdtablesize01 0 TINFO : Checking Max num of files that can be opened by a process.Should be: RLIMIT_NOFILE - 1
getdtablesize01 2 TPASS : 1023 = 1023
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getegid01 stime=1372174870
cmdline="getegid01"
contacts=""
analysis=exit
<<<test_output>>>
getegid01 1 TPASS : getegid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getegid01_16 stime=1372174870
cmdline="getegid01_16"
contacts=""
analysis=exit
<<<test_output>>>
getegid01_16 1 TPASS : getegid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getegid02 stime=1372174870
cmdline="getegid02"
contacts=""
analysis=exit
<<<test_output>>>
getegid02 1 TPASS : effective group id 0 is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getegid02_16 stime=1372174870
cmdline="getegid02_16"
contacts=""
analysis=exit
<<<test_output>>>
getegid02_16 1 TPASS : effective group id 0 is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=geteuid01 stime=1372174870
cmdline="geteuid01"
contacts=""
analysis=exit
<<<test_output>>>
geteuid01 1 TPASS : geteuid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=geteuid01_16 stime=1372174870
cmdline="geteuid01_16"
contacts=""
analysis=exit
<<<test_output>>>
geteuid01_16 1 TPASS : geteuid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgid01 stime=1372174870
cmdline="getgid01"
contacts=""
analysis=exit
<<<test_output>>>
getgid01 1 TPASS : getgid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgid01_16 stime=1372174870
cmdline="getgid01_16"
contacts=""
analysis=exit
<<<test_output>>>
getgid01_16 1 TPASS : getgid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgid03 stime=1372174871
cmdline="getgid03"
contacts=""
analysis=exit
<<<test_output>>>
getgid03 1 TPASS : group id 0 returned correctly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgid03_16 stime=1372174871
cmdline="getgid03_16"
contacts=""
analysis=exit
<<<test_output>>>
getgid03_16 1 TPASS : group id 0 returned correctly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getgroups01 stime=1372174871
cmdline="getgroups01"
contacts=""
analysis=exit
<<<test_output>>>
getgroups01 1 TPASS : getgroups failed as expected with EINVAL
getgroups01 2 TPASS : getgroups did not modify the gidset array
getgroups01 3 TCONF : getgroups returned 1; unable to test that using ngrps >=1 but less than number of grps
getgroups01 4 TPASS : getgroups(NGROUPS,gidset) returned 1 contains gid 0 (from getgid)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgroups01_16 stime=1372174871
cmdline="getgroups01_16"
contacts=""
analysis=exit
<<<test_output>>>
getgroups01 1 TPASS : getgroups failed as expected with EINVAL
getgroups01 2 TPASS : getgroups did not modify the gidset array
getgroups01 3 TCONF : getgroups returned 1; unable to test that using ngrps >=1 but less than number of grps
getgroups01 4 TPASS : getgroups(NGROUPS,gidset) returned 1 contains gid 0 (from getgid)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgroups03 stime=1372174871
cmdline="getgroups03"
contacts=""
analysis=exit
<<<test_output>>>
getgroups03 1 TPASS : getgroups functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgroups03_16 stime=1372174871
cmdline="getgroups03_16"
contacts=""
analysis=exit
<<<test_output>>>
getgroups03 1 TPASS : getgroups functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gethostid01 stime=1372174871
cmdline="gethostid01"
contacts=""
analysis=exit
<<<test_output>>>
gethostid01 1 TPASS : Hostid command and gethostid both report hostid is 007f0101
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gethostname01 stime=1372174871
cmdline="gethostname01"
contacts=""
analysis=exit
<<<test_output>>>
gethostname01 1 TPASS : gethostname returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getitimer01 stime=1372174871
cmdline="getitimer01"
contacts=""
analysis=exit
<<<test_output>>>
getitimer01 1 TPASS : functionality is ok
getitimer01 2 TPASS : functionality is ok
getitimer01 3 TPASS : functionality is ok
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getitimer02 stime=1372174871
cmdline="getitimer02"
contacts=""
analysis=exit
<<<test_output>>>
getitimer02 1 TPASS : expected failure - errno = 14 - Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getitimer03 stime=1372174871
cmdline="getitimer03"
contacts=""
analysis=exit
<<<test_output>>>
getitimer03 1 TPASS : expected failure - errno = 22 - Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpagesize01 stime=1372174871
cmdline="getpagesize01"
contacts=""
analysis=exit
<<<test_output>>>
getpagesize01 0 TINFO : Page Size is 4096
getpagesize01 1 TPASS : getpagesize - Page size returned 4096
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpeername01 stime=1372174871
cmdline="getpeername01"
contacts=""
analysis=exit
<<<test_output>>>
getpeername01 1 TPASS : bad file descriptor successful
getpeername01 2 TPASS : bad file descriptor successful
getpeername01 3 TPASS : invalid salen successful
getpeername01 4 TPASS : invalid socket buffer successful
getpeername01 5 TPASS : invalid aligned salen successful
getpeername01 6 TPASS : invalid unaligned salen successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpgid01 stime=1372174871
cmdline="getpgid01"
contacts=""
analysis=exit
<<<test_output>>>
getpgid01 0 TINFO : Enter block 1
getpgid01 1 TPASS : Test block 1: getpgid(0) PASSED
getpgid01 0 TINFO : Exit block 1
getpgid01 0 TINFO : Enter block 2
getpgid01 2 TPASS : Test block 2: getpgid(getpid()) PASSED
getpgid01 0 TINFO : Exit block 2
getpgid01 0 TINFO : Enter block 3
getpgid01 3 TPASS : Test block 3: getpgid(getppid()) PASSED
getpgid01 0 TINFO : Exit block 3
getpgid01 0 TINFO : Enter block 4
getpgid01 4 TPASS : Test block 4: getpgid(1) PASSED
getpgid01 0 TINFO : Exit block 4
getpgid01 0 TINFO : Enter block 5
getpgid01 5 TPASS : Test block 5: getpgid(1) PASSED
getpgid01 0 TINFO : Exit block 5
getpgid01 0 TINFO : getpgid01 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpgid02 stime=1372174871
cmdline="getpgid02"
contacts=""
analysis=exit
<<<test_output>>>
getpgid02 1 TPASS : expected failure - errno = 3 : No such process
getpgid02 2 TPASS : expected failure - errno = 3 : No such process
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpgrp01 stime=1372174871
cmdline="getpgrp01"
contacts=""
analysis=exit
<<<test_output>>>
getpgrp01 1 TPASS : getpgrp returned 22381
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpid01 stime=1372174871
cmdline="getpid01"
contacts=""
analysis=exit
<<<test_output>>>
getpid01 1 TPASS : getpid returned 22382
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpid02 stime=1372174871
cmdline="getpid02"
contacts=""
analysis=exit
<<<test_output>>>
getpid02 1 TPASS : getpid functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getppid01 stime=1372174871
cmdline="getppid01"
contacts=""
analysis=exit
<<<test_output>>>
getppid01 1 TPASS : getppid returned 2572
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getppid02 stime=1372174871
cmdline="getppid02"
contacts=""
analysis=exit
<<<test_output>>>
return value and parent's pid value match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpriority01 stime=1372174871
cmdline="getpriority01"
contacts=""
analysis=exit
<<<test_output>>>
getpriority01 1 TPASS : getpriority(0, 0) returned 0 priority value
getpriority01 2 TPASS : getpriority(1, 0) returned 0 priority value
getpriority01 3 TPASS : getpriority(2, 0) returned -20 priority value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpriority02 stime=1372174871
cmdline="getpriority02"
contacts=""
analysis=exit
<<<test_output>>>
getpriority02 1 TPASS : getpriority(2) fails, Invalid 'which' value specified, errno:22
getpriority02 2 TPASS : getpriority(2) fails, Invalid 'who' value specified, errno:3
getpriority02 3 TPASS : getpriority(2) fails, Invalid 'who' value specified, errno:3
getpriority02 4 TPASS : getpriority(2) fails, Invalid 'who' value specified, errno:3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresgid01 stime=1372174871
cmdline="getresgid01"
contacts=""
analysis=exit
<<<test_output>>>
getresgid01 1 TPASS : Functionality of getresgid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresgid02 stime=1372174871
cmdline="getresgid02"
contacts=""
analysis=exit
<<<test_output>>>
getresgid02 1 TPASS : Functionality of getresgid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresgid03 stime=1372174871
cmdline="getresgid03"
contacts=""
analysis=exit
<<<test_output>>>
getresgid03 1 TPASS : Functionality of getresgid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresuid01 stime=1372174871
cmdline="getresuid01"
contacts=""
analysis=exit
<<<test_output>>>
getresuid01 1 TPASS : Functionality of getresuid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresuid02 stime=1372174871
cmdline="getresuid02"
contacts=""
analysis=exit
<<<test_output>>>
getresuid02 1 TPASS : Functionality of getresuid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getresuid03 stime=1372174871
cmdline="getresuid03"
contacts=""
analysis=exit
<<<test_output>>>
getresuid03 1 TPASS : Functionality of getresuid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrlimit01 stime=1372174871
cmdline="getrlimit01"
contacts=""
analysis=exit
<<<test_output>>>
getrlimit01 1 TPASS : getrlimit() returned 0; got RLIMIT_CPU values
getrlimit01 2 TPASS : getrlimit() returned 0; got RLIMIT_FSIZE values
getrlimit01 3 TPASS : getrlimit() returned 0; got RLIMIT_DATA values
getrlimit01 4 TPASS : getrlimit() returned 0; got RLIMIT_STACK values
getrlimit01 5 TPASS : getrlimit() returned 0; got RLIMIT_CORE values
getrlimit01 6 TPASS : getrlimit() returned 0; got RLIMIT_RSS values
getrlimit01 7 TPASS : getrlimit() returned 0; got RLIMIT_NPROC values
getrlimit01 8 TPASS : getrlimit() returned 0; got RLIMIT_NOFILE values
getrlimit01 9 TPASS : getrlimit() returned 0; got RLIMIT_MEMLOCK values
getrlimit01 10 TPASS : getrlimit() returned 0; got RLIMIT_AS values
getrlimit01 11 TPASS : getrlimit() returned 0; got RLIMIT_LOCKS values
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrlimit02 stime=1372174871
cmdline="getrlimit02"
contacts=""
analysis=exit
<<<test_output>>>
getrlimit02 1 TPASS : expected failure; got EFAULT
getrlimit02 2 TPASS : expected failure; got EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=get_mempolicy01 stime=1372174871
cmdline="get_mempolicy01"
contacts=""
analysis=exit
<<<test_output>>>
get_mempolicy01 1 TCONF : System doesn't have required numa support
get_mempolicy01 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=get_robust_list01 stime=1372174871
cmdline="get_robust_list01"
contacts=""
analysis=exit
<<<test_output>>>
get_robust_list01 1 TPASS : get_robust_list failed as expected with EFAULT
get_robust_list01 2 TPASS : get_robust_list failed as expected with EFAULT
get_robust_list01 3 TPASS : get_robust_list failed as expected with ESRCH
get_robust_list01 4 TPASS : get_robust_list succeeded
get_robust_list01 5 TPASS : get_robust_list failed as expected with EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrusage01 stime=1372174871
cmdline="getrusage01"
contacts=""
analysis=exit
<<<test_output>>>
getrusage01 1 TPASS : getrusage passed
getrusage01 2 TPASS : getrusage passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrusage02 stime=1372174871
cmdline="getrusage02"
contacts=""
analysis=exit
<<<test_output>>>
getrusage02 1 TPASS : getrusage failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
getrusage02 2 TPASS : getrusage failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrusage03 stime=1372174871
cmdline="getrusage03"
contacts=""
analysis=exit
<<<test_output>>>
getrusage03 0 TINFO : allocate 100MB
getrusage03 0 TINFO : Testcase #01: fork inherit
getrusage03 0 TINFO : initial.self = 103004
getrusage03 0 TINFO : child.self = 102532
getrusage03 0 TINFO : allocate 100MB
getrusage03 0 TINFO : Testcase #01: fork inherit
getrusage03 0 TINFO : initial.self = 103004
getrusage03 1 TPASS : initial.self ~= child.self
getrusage03 0 TINFO : Testcase #02: fork inherit(cont.)
getrusage03 0 TINFO : initial.children = 102708
getrusage03 2 TPASS : initial.children ~= 100MB
getrusage03 0 TINFO : child.children = 0
getrusage03 0 TINFO : allocate 100MB
getrusage03 0 TINFO : Testcase #01: fork inherit
getrusage03 0 TINFO : initial.self = 103004
getrusage03 1 TPASS : initial.self ~= child.self
getrusage03 0 TINFO : Testcase #02: fork inherit(cont.)
getrusage03 0 TINFO : initial.children = 102708
getrusage03 2 TPASS : initial.children ~= 100MB
getrusage03 3 TPASS : child.children == 0
getrusage03 0 TINFO : Testcase #03: fork + malloc
getrusage03 0 TINFO : initial.self = 103008
getrusage03 0 TINFO : child allocate +50MB
getrusage03 0 TINFO : child.self = 153856
getrusage03_child 0 TINFO : grandchild allocate 300MB
getrusage03_child 0 TINFO : grandchild allocate 300MB
getrusage03 0 TINFO : allocate 100MB
getrusage03 0 TINFO : Testcase #01: fork inherit
getrusage03 0 TINFO : initial.self = 103004
getrusage03 1 TPASS : initial.self ~= child.self
getrusage03 0 TINFO : Testcase #02: fork inherit(cont.)
getrusage03 0 TINFO : initial.children = 102708
getrusage03 2 TPASS : initial.children ~= 100MB
getrusage03 3 TPASS : child.children == 0
getrusage03 0 TINFO : Testcase #03: fork + malloc
getrusage03 0 TINFO : initial.self = 103008
getrusage03 4 TPASS : initial.self + 50MB ~= child.self
getrusage03 0 TINFO : Testcase #04: grandchild maxrss
getrusage03 0 TINFO : initial.children = 153932
getrusage03_child 0 TINFO : child allocate 400MB
getrusage03 0 TINFO : allocate 100MB
getrusage03 0 TINFO : Testcase #01: fork inherit
getrusage03 0 TINFO : initial.self = 103004
getrusage03 1 TPASS : initial.self ~= child.self
getrusage03 0 TINFO : Testcase #02: fork inherit(cont.)
getrusage03 0 TINFO : initial.children = 102708
getrusage03 2 TPASS : initial.children ~= 100MB
getrusage03 3 TPASS : child.children == 0
getrusage03 0 TINFO : Testcase #03: fork + malloc
getrusage03 0 TINFO : initial.self = 103008
getrusage03 4 TPASS : initial.self + 50MB ~= child.self
getrusage03 0 TINFO : Testcase #04: grandchild maxrss
getrusage03 0 TINFO : initial.children = 153932
getrusage03 0 TINFO : post_wait.children = 307472
getrusage03 5 TPASS : child.children ~= 300MB
getrusage03 0 TINFO : Testcase #05: zombie
getrusage03 0 TINFO : initial.children = 307472
getrusage03_child 0 TINFO : child allocate 500MB
getrusage03 0 TINFO : allocate 100MB
getrusage03 0 TINFO : Testcase #01: fork inherit
getrusage03 0 TINFO : initial.self = 103004
getrusage03 1 TPASS : initial.self ~= child.self
getrusage03 0 TINFO : Testcase #02: fork inherit(cont.)
getrusage03 0 TINFO : initial.children = 102708
getrusage03 2 TPASS : initial.children ~= 100MB
getrusage03 3 TPASS : child.children == 0
getrusage03 0 TINFO : Testcase #03: fork + malloc
getrusage03 0 TINFO : initial.self = 103008
getrusage03 4 TPASS : initial.self + 50MB ~= child.self
getrusage03 0 TINFO : Testcase #04: grandchild maxrss
getrusage03 0 TINFO : initial.children = 153932
getrusage03 0 TINFO : post_wait.children = 307472
getrusage03 5 TPASS : child.children ~= 300MB
getrusage03 0 TINFO : Testcase #05: zombie
getrusage03 0 TINFO : initial.children = 307472
getrusage03 0 TINFO : pre_wait.children = 307472
getrusage03 6 TPASS : initial.children ~= pre_wait.children
getrusage03 0 TINFO : post_wait.children = 410220
getrusage03 7 TPASS : post_wait.children ~= 400MB
getrusage03 0 TINFO : Testcase #06: SIG_IGN
getrusage03 0 TINFO : initial.children = 410220
getrusage03_child 0 TINFO : exec.self = 103028, exec.children = 410220
getrusage03_child 1 TPASS : initial.self ~= exec.self
getrusage03_child 2 TPASS : initial.children ~= exec.children
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=29 cstime=36
<<<test_end>>>
<<<test_start>>>
tag=getrusage04 stime=1372174873
cmdline="getrusage04"
contacts=""
analysis=exit
<<<test_output>>>
getrusage04 0 TINFO : Expected timers granularity is 4000 us
getrusage04 0 TINFO : Using 1 as multiply factor for max [us]time increment (1000+4000us)!
getrusage04 0 TINFO : utime: 521us; stime: 1387us
getrusage04 0 TINFO : utime: 524us; stime: 1388us
getrusage04 0 TINFO : utime: 527us; stime: 1389us
getrusage04 0 TINFO : utime: 528us; stime: 1389us
getrusage04 0 TINFO : utime: 530us; stime: 1390us
getrusage04 0 TINFO : utime: 532us; stime: 1390us
getrusage04 0 TINFO : utime: 534us; stime: 1391us
getrusage04 0 TINFO : utime: 536us; stime: 1391us
getrusage04 0 TINFO : utime: 537us; stime: 1391us
getrusage04 0 TINFO : utime: 539us; stime: 1392us
getrusage04 0 TINFO : utime: 541us; stime: 1392us
getrusage04 0 TINFO : utime: 543us; stime: 1393us
getrusage04 0 TINFO : utime: 545us; stime: 1393us
getrusage04 0 TINFO : utime: 546us; stime: 1394us
getrusage04 0 TINFO : utime: 548us; stime: 1394us
getrusage04 0 TINFO : utime: 550us; stime: 1395us
getrusage04 0 TINFO : utime: 552us; stime: 1395us
getrusage04 0 TINFO : utime: 554us; stime: 1396us
getrusage04 0 TINFO : utime: 556us; stime: 1396us
getrusage04 0 TINFO : utime: 557us; stime: 1397us
getrusage04 0 TINFO : utime: 559us; stime: 1397us
getrusage04 1 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getsid01 stime=1372174873
cmdline="getsid01"
contacts=""
analysis=exit
<<<test_output>>>
getsid01 1 TPASS : session ID is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getsid02 stime=1372174873
cmdline="getsid02"
contacts=""
analysis=exit
<<<test_output>>>
getsid02 1 TPASS : expected failure - errno = 3 - No such process
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getsockname01 stime=1372174873
cmdline="getsockname01"
contacts=""
analysis=exit
<<<test_output>>>
getsockname01 1 TPASS : bad file descriptor successful
getsockname01 2 TPASS : bad file descriptor successful
getsockname01 3 TPASS : invalid socket buffer successful
getsockname01 4 TPASS : invalid aligned salen successful
getsockname01 5 TPASS : invalid unaligned salen successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getsockopt01 stime=1372174873
cmdline="getsockopt01"
contacts=""
analysis=exit
<<<test_output>>>
getsockopt01 1 TPASS : bad file descriptor successful
getsockopt01 2 TPASS : bad file descriptor successful
getsockopt01 3 TPASS : invalid option buffer successful
getsockopt01 4 TPASS : invalid optlen successful
getsockopt01 5 TPASS : invalid level successful
getsockopt01 6 TPASS : invalid option name successful
getsockopt01 7 TPASS : invalid option name (UDP) successful
getsockopt01 8 TPASS : invalid option name (IP) successful
getsockopt01 9 TPASS : invalid option name (TCP) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gettid01 stime=1372174873
cmdline="gettid01"
contacts=""
analysis=exit
<<<test_output>>>
gettid01 1 TPASS : gettid() returned 22422
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gettimeofday01 stime=1372174873
cmdline="gettimeofday01"
contacts=""
analysis=exit
<<<test_output>>>
gettimeofday01 1 TPASS : gettimeofday(2) set the errno EFAULT correctly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gettimeofday02 stime=1372174873
cmdline="gettimeofday02"
contacts=""
analysis=exit
<<<test_output>>>
gettimeofday02 0 TINFO : checking if gettimeofday is monotonous, takes 30s
gettimeofday02 1 TPASS : gettimeofday monotonous in 30 seconds
<<<execution_status>>>
initiation_status="ok"
duration=30 termination_type=exited termination_id=0 corefile=no
cutime=625 cstime=2373
<<<test_end>>>
<<<test_start>>>
tag=getuid01 stime=1372174903
cmdline="getuid01"
contacts=""
analysis=exit
<<<test_output>>>
getuid01 1 TPASS : getuid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid01_16 stime=1372174903
cmdline="getuid01_16"
contacts=""
analysis=exit
<<<test_output>>>
getuid01_16 1 TPASS : getuid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid02 stime=1372174903
cmdline="getuid02"
contacts=""
analysis=exit
<<<test_output>>>
getuid02 1 TPASS : values from geteuid and getpwuid match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid02_16 stime=1372174903
cmdline="getuid02_16"
contacts=""
analysis=exit
<<<test_output>>>
getuid02_16 1 TPASS : values from geteuid and getpwuid match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid03 stime=1372174903
cmdline="getuid03"
contacts=""
analysis=exit
<<<test_output>>>
getuid03 1 TPASS : values from getuid and getpwuid match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid03_16 stime=1372174903
cmdline="getuid03_16"
contacts=""
analysis=exit
<<<test_output>>>
getuid03_16 1 TPASS : values from getuid and getpwuid match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getxattr01 stime=1372174903
cmdline="getxattr01"
contacts=""
analysis=exit
<<<test_output>>>
getxattr01 1 TPASS : expected behavior: TEST_ERRNO=???(61): No data available
getxattr01 2 TPASS : expected behavior: TEST_ERRNO=ERANGE(34): Numerical result out of range
getxattr01 3 TPASS : expected behavior: TEST_ERRNO=???(0): Success
getxattr01 4 TPASS : Got the right value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getxattr02 stime=1372174903
cmdline="getxattr02"
contacts=""
analysis=exit
<<<test_output>>>
getxattr02 1 TPASS : expected behavior: TEST_ERRNO=???(61): No data available
getxattr02 2 TPASS : expected behavior: TEST_ERRNO=???(61): No data available
getxattr02 3 TPASS : expected behavior: TEST_ERRNO=???(61): No data available
getxattr02 4 TPASS : expected behavior: TEST_ERRNO=???(61): No data available
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getxattr03 stime=1372174903
cmdline="getxattr03"
contacts=""
analysis=exit
<<<test_output>>>
getxattr03 1 TPASS : getxattr(2) returned correct value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ioctl01_02 stime=1372174903
cmdline=" test_ioctl"
contacts=""
analysis=exit
<<<test_output>>>
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty0
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty0
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty1
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty1
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty10
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty10
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty11
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty11
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty12
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty12
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty13
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty13
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty14
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty14
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty15
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty15
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty16
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty16
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty17
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty17
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty18
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty18
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty19
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty19
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty2
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty2
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty20
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty20
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty21
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty21
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty22
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty22
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty23
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty23
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty24
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty24
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty25
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty25
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty26
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty26
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty27
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty27
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty28
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty28
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty29
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty29
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty3
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty3
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty30
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty30
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty31
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty31
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty32
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty32
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty33
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty33
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty34
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty34
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty35
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty35
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty36
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty36
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty37
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty37
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty38
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty38
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty39
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty39
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty4
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty4
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty40
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty40
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty41
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty41
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty42
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty42
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty43
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty43
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty44
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty44
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty45
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty45
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty46
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty46
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty47
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty47
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty48
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty48
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty49
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty49
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty5
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty5
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty50
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty50
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty51
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty51
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty52
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty52
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty53
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty53
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty54
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty54
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty55
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty55
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty56
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty56
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty57
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty57
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty58
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty58
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty59
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty59
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty6
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty6
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty60
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty60
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty61
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty61
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty62
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty62
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty63
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty63
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty7
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty7
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty8
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty8
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty9
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty9
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty0
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty0
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty1
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty1
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty10
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty10
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty11
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty11
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty12
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty12
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty13
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty13
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty14
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty14
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty15
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty15
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty16
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty16
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty17
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty17
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty18
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty18
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty19
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty19
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty2
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty2
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty20
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty20
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty21
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty21
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty22
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty22
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty23
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty23
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty24
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty24
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty25
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty25
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty26
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty26
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty27
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty27
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty28
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty28
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty29
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty29
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty3
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty3
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty30
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty30
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty31
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty31
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty32
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty32
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty33
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty33
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty34
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty34
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty35
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty35
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty36
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty36
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty37
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty37
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty38
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty38
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty39
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty39
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty4
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty4
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty40
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty40
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty41
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty41
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty42
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty42
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty43
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty43
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty44
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty44
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty45
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty45
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty46
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty46
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty47
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty47
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty48
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty48
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty49
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty49
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty5
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty5
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty50
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty50
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty51
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty51
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty52
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty52
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty53
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty53
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty54
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty54
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty55
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty55
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty56
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty56
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty57
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty57
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty58
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty58
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty59
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty59
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty6
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty6
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty60
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty60
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty61
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty61
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty62
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty62
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty63
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty63
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty7
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty7
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty8
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty8
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty9
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty9
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=19 cstime=44
<<<test_end>>>
<<<test_start>>>
tag=ioctl03 stime=1372174904
cmdline=" ioctl03"
contacts=""
analysis=exit
<<<test_output>>>
ioctl03 0 TINFO : Available features are: 0x7103
ioctl03 0 TINFO : TUN 0x1
ioctl03 0 TINFO : TAP 0x2
ioctl03 0 TINFO : NO_PI 0x1000
ioctl03 0 TINFO : ONE_QUEUE 0x2000
ioctl03 0 TINFO : VNET_HDR 0x4000
ioctl03 0 TINFO : MULTI_QUEUE 0x100
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify_init1_01 stime=1372174904
cmdline="inotify_init1_01"
contacts=""
analysis=exit
<<<test_output>>>
inotify_init1_01 1 TPASS : inotify_init1(O_CLOEXEC) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify_init1_02 stime=1372174904
cmdline="inotify_init1_02"
contacts=""
analysis=exit
<<<test_output>>>
inotify_init1_02 1 TPASS : inotify_init1(IN_NONBLOCK) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify01 stime=1372174904
cmdline="inotify01"
contacts=""
analysis=exit
<<<test_output>>>
inotify01 1 TPASS : get event: wd=1 mask=4 cookie=0 len=0
inotify01 2 TPASS : get event: wd=1 mask=20 cookie=0 len=0
inotify01 3 TPASS : get event: wd=1 mask=1 cookie=0 len=0
inotify01 4 TPASS : get event: wd=1 mask=10 cookie=0 len=0
inotify01 5 TPASS : get event: wd=1 mask=20 cookie=0 len=0
inotify01 6 TPASS : get event: wd=1 mask=2 cookie=0 len=0
inotify01 7 TPASS : get event: wd=1 mask=8 cookie=0 len=0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify02 stime=1372174904
cmdline="inotify02"
contacts=""
analysis=exit
<<<test_output>>>
inotify02 1 TPASS : get event: wd=1 mask=40000004 cookie=0 len=0 name="\x01"
inotify02 2 TPASS : get event: wd=1 mask=100 cookie=0 len=16 name="test_file1"
inotify02 3 TPASS : get event: wd=1 mask=20 cookie=0 len=16 name="test_file1"
inotify02 4 TPASS : get event: wd=1 mask=8 cookie=0 len=16 name="test_file1"
inotify02 5 TPASS : get event: wd=1 mask=40 cookie=845 len=16 name="test_file1"
inotify02 6 TPASS : get event: wd=1 mask=80 cookie=845 len=16 name="test_file2"
inotify02 7 TPASS : get event: wd=1 mask=800 cookie=0 len=0 name="\x01"
inotify02 8 TPASS : get event: wd=1 mask=200 cookie=0 len=16 name="test_file2"
inotify02 9 TPASS : get event: wd=1 mask=800 cookie=0 len=0 name=""
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify03 stime=1372174904
cmdline="inotify03 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
inotify03 0 TINFO : mount /dev/loop1 to mnt_23019 fstype=ext4
inotify03 0 TINFO : umount /dev/loop1
inotify03 1 TBROK : umount(2) Failed while unmounting errno = 16 : Device or resource busy
inotify03 2 TBROK : Remaining cases broken
inotify03 0 TWARN : umount(mnt_23019) failed: TEST_ERRNO=EBUSY(16): Device or resource busy
inotify03 0 TWARN : tst_rmdir: rmobj(/tmp/ltp-kN6m0brwl9/ino7trGeH) failed: remove(/tmp/ltp-kN6m0brwl9/ino7trGeH/mnt_23019) failed; errno=16: Device or resource busy
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=6 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=inotify04 stime=1372174904
cmdline="inotify04"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ioperm01 stime=1372174904
cmdline="ioperm01"
contacts=""
analysis=exit
<<<test_output>>>
ioperm01 1 TPASS : ioperm() passed for port address 1021, returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ioperm02 stime=1372174904
cmdline="ioperm02"
contacts=""
analysis=exit
<<<test_output>>>
ioperm02 1 TPASS : Expected failure for Invalid I/O address, errno: 22
ioperm02 2 TPASS : Expected failure for Non super-user, errno: 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=iopl01 stime=1372174904
cmdline="iopl01"
contacts=""
analysis=exit
<<<test_output>>>
iopl01 1 TPASS : iopl() passed for level 0, returned 0
iopl01 2 TPASS : iopl() passed for level 1, returned 0
iopl01 3 TPASS : iopl() passed for level 2, returned 0
iopl01 4 TPASS : iopl() passed for level 3, returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=iopl02 stime=1372174904
cmdline="iopl02"
contacts=""
analysis=exit
<<<test_output>>>
iopl02 1 TPASS : Expected failure for Invalid privilege level, errno: 22
iopl02 2 TPASS : Expected failure for Non super-user, errno: 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_cancel01 stime=1372174904
cmdline="io_cancel01"
contacts=""
analysis=exit
<<<test_output>>>
io_cancel01 1 TPASS : expected failure - returned value = -14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=io_destroy01 stime=1372174904
cmdline="io_destroy01"
contacts=""
analysis=exit
<<<test_output>>>
io_destroy01 1 TPASS : expected failure - returned value = -22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_getevents01 stime=1372174904
cmdline="io_getevents01"
contacts=""
analysis=exit
<<<test_output>>>
io_getevents01 1 TPASS : expected failure - returned value = -22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_setup01 stime=1372174904
cmdline="io_setup01"
contacts=""
analysis=exit
<<<test_output>>>
io_setup01 1 TPASS : call succeeded expectedly
io_setup01 2 TPASS : expected failure - returned value = -22 : Invalid argument
io_setup01 3 TPASS : expected failure - returned value = -22 : Invalid argument
io_setup01 4 TPASS : expected failure - returned value = -14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_submit01 stime=1372174904
cmdline="io_submit01"
contacts=""
analysis=exit
<<<test_output>>>
io_submit01 1 TPASS : expected failure - returned value = -22 : Invalid argument
io_submit01 2 TPASS : expected failure - returned value = -22 : Invalid argument
io_submit01 3 TPASS : expected failure - returned value = -9 : Bad file descriptor
io_submit01 4 TPASS : expected failure - returned value = -14 : Bad address
io_submit01 5 TPASS : expected failure - returned value = -22 : Invalid argument
io_submit01 6 TPASS : expected failure - returned value = -9 : Bad file descriptor
io_submit01 7 TPASS : expected success - returned value = 0
io_submit01 8 TPASS : expected success - returned value = 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=keyctl01 stime=1372174904
cmdline="keyctl01"
contacts=""
analysis=exit
<<<test_output>>>
keyctl01 1 TCONF : keyctl syscall support not available on system
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill01 stime=1372174904
cmdline="kill01"
contacts=""
analysis=exit
<<<test_output>>>
kill01 1 TPASS : received expected signal 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill02 stime=1372174904
cmdline="kill02"
contacts=""
analysis=exit
<<<test_output>>>
kill02 1 TPASS : The signal was sent to all processes in the process group.
kill02 2 TPASS : The signal was not sent to selective processes that were not in the process group.
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill03 stime=1372174914
cmdline="kill03"
contacts=""
analysis=exit
<<<test_output>>>
kill03 1 TPASS : errno set to 22 : Invalid argument, as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=kill04 stime=1372174914
cmdline="kill04"
contacts=""
analysis=exit
<<<test_output>>>
kill04 1 TPASS : errno set to 3 : No such process, as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill05 stime=1372174914
cmdline="kill05"
contacts=""
analysis=exit
<<<test_output>>>
kill failed with EPERM
kill05 1 TPASS : received expected errno(EPERM)
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill06 stime=1372174916
cmdline="kill06"
contacts=""
analysis=exit
<<<test_output>>>
kill06 1 TPASS : received expected signal 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill07 stime=1372174916
cmdline="kill07"
contacts=""
analysis=exit
<<<test_output>>>
kill07 0 TINFO : received expected signal 9
kill07 1 TPASS : Did not catch signal as expected
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill08 stime=1372174917
cmdline="kill08"
contacts=""
analysis=exit
<<<test_output>>>
kill08 1 TPASS : received expected signal 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=kill09 stime=1372174917
cmdline="kill09"
contacts=""
analysis=exit
<<<test_output>>>
kill09 1 TPASS : kill(23069, SIGKILL) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill10 stime=1372174917
cmdline="kill10"
contacts=""
analysis=exit
<<<test_output>>>
23071: All 10 children reported in
23072: All 10 children reported in
kill10 1 TPASS : All 2 pgrps received their signals
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill11 stime=1372174919
cmdline="ulimit -c 1024;kill11"
contacts=""
analysis=exit
<<<test_output>>>
kill11 1 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=kill12 stime=1372174920
cmdline="kill12"
contacts=""
analysis=exit
<<<test_output>>>
kill12 1 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lchown01 stime=1372174920
cmdline="lchown01"
contacts=""
analysis=exit
<<<test_output>>>
lchown01 1 TPASS : lchown() succeeds to Change Owner/Group ids of slink_file
lchown01 2 TPASS : lchown() succeeds to Change Owner id only of slink_file
lchown01 3 TPASS : lchown() succeeds to Change Owner/Group ids of slink_file
lchown01 4 TPASS : lchown() succeeds to Change Group id only of slink_file
lchown01 5 TPASS : lchown() succeeds to Change Group/Group ids of slink_file
lchown01 6 TPASS : lchown() succeeds to Change none of slink_file
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lchown01_16 stime=1372174920
cmdline="lchown01_16"
contacts=""
analysis=exit
<<<test_output>>>
lchown01 1 TPASS : lchown() succeeds to Change Owner/Group ids of slink_file
lchown01 2 TPASS : lchown() succeeds to Change Owner id only of slink_file
lchown01 3 TPASS : lchown() succeeds to Change Owner/Group ids of slink_file
lchown01 4 TPASS : lchown() succeeds to Change Group id only of slink_file
lchown01 5 TPASS : lchown() succeeds to Change Group/Group ids of slink_file
lchown01 6 TPASS : lchown() succeeds to Change none of slink_file
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=lchown02 stime=1372174920
cmdline=" lchown02"
contacts=""
analysis=exit
<<<test_output>>>
lchown02 1 TPASS : lchown(2) fails, Process is not owner/root, errno:1
lchown02 2 TPASS : lchown(2) fails, Search permission denied, errno:13
lchown02 3 TPASS : lchown(2) fails, Address beyond address space, errno:14
lchown02 4 TPASS : lchown(2) fails, Unaccessible address space, errno:14
lchown02 5 TPASS : lchown(2) fails, Pathname too long, errno:36
lchown02 6 TPASS : lchown(2) fails, Path contains regular file, errno:20
lchown02 7 TPASS : lchown(2) fails, Pathname is empty, errno:2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lchown02_16 stime=1372174920
cmdline="lchown02_16"
contacts=""
analysis=exit
<<<test_output>>>
lchown02 1 TPASS : lchown(2) fails, Process is not owner/root, errno:1
lchown02 2 TPASS : lchown(2) fails, Search permission denied, errno:13
lchown02 3 TPASS : lchown(2) fails, Address beyond address space, errno:14
lchown02 4 TPASS : lchown(2) fails, Unaccessible address space, errno:14
lchown02 5 TPASS : lchown(2) fails, Pathname too long, errno:36
lchown02 6 TPASS : lchown(2) fails, Path contains regular file, errno:20
lchown02 7 TPASS : lchown(2) fails, Pathname is empty, errno:2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link01 stime=1372174920
cmdline="symlink01 -T link01"
contacts=""
analysis=exit
<<<test_output>>>
link01 1 TPASS : link(2) to a symbolic link, which is pointing to an existing object file worked - file created and link count adjusted
link01 2 TPASS : link(2) to a symbolic link, which is pointing to a non-existing object file worked ok - file created and link count adjusted.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link02 stime=1372174920
cmdline="link02"
contacts=""
analysis=exit
<<<test_output>>>
link02 1 TPASS : link(tfile, lfile) returned 0 and link cnts match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link03 stime=1372174920
cmdline="link03"
contacts=""
analysis=exit
<<<test_output>>>
link03 1 TPASS : link(lkfile_23138, lkfile_23138.[1-10]) ret 0 for 10 files, stat linkcounts match 10
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link04 stime=1372174920
cmdline="link04"
contacts=""
analysis=exit
<<<test_output>>>
link04 1 TPASS : link(<non-existent file>, <nefile>) Failed, errno=2
link04 2 TPASS : link(<path is empty string>, <nefile>) Failed, errno=2
link04 3 TPASS : link(<path contains a non-existent file>, <nefile>) Failed, errno=2
link04 4 TPASS : link(<path contains a regular file>, <nefile>) Failed, errno=20
link04 5 TPASS : link(<pathname too long>, <nefile>) Failed, errno=36
link04 6 TPASS : link(<address beyond address space>, <nefile>) Failed, errno=14
link04 7 TPASS : link(<negative address>, <nefile>) Failed, errno=14
link04 8 TPASS : link(<regfile>, <empty string>) Failed, errno=2
link04 9 TPASS : link(<regfile>, <path contains a non-existent file>) Failed, errno=2
link04 10 TPASS : link(<regfile>, <path contains a regular file>) Failed, errno=2
link04 11 TPASS : link(<regfile>, <pathname too long>) Failed, errno=36
link04 12 TPASS : link(<regfile>, <address beyond address space>) Failed, errno=14
link04 13 TPASS : link(<regfile>, <negative address>) Failed, errno=14
link04 14 TPASS : link(<regfile>, <regfile2>) Failed, errno=17
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=link05 stime=1372174920
cmdline="link05"
contacts=""
analysis=exit
<<<test_output>>>
link05 1 TPASS : link(lkfile_23140, lkfile_23140.[1-1000]) ret 0 for 1000 files, stat linkcounts match 1000
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=4
<<<test_end>>>
<<<test_start>>>
tag=link06 stime=1372174920
cmdline="link06"
contacts=""
analysis=exit
<<<test_output>>>
link06 1 TPASS : link() fails with expected error EACCES errno:13
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link07 stime=1372174920
cmdline="link07"
contacts=""
analysis=exit
<<<test_output>>>
link07 1 TPASS : link() fails with expected error EACCES errno:13
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=linkat01 stime=1372174920
cmdline="linkat01"
contacts=""
analysis=exit
<<<test_output>>>
linkat01 1 TPASS : linkat is functionality correct
linkat01 2 TPASS : linkat succeeded as expected
linkat01 3 TPASS : linkat is functionality correct
linkat01 4 TPASS : linkat is functionality correct
linkat01 5 TPASS : linkat is functionality correct
linkat01 6 TPASS : linkat succeeded as expected
linkat01 7 TPASS : linkat is functionality correct
linkat01 8 TPASS : linkat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
linkat01 9 TPASS : linkat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
linkat01 10 TPASS : linkat succeeded as expected
linkat01 11 TPASS : linkat is functionality correct
linkat01 12 TPASS : linkat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
linkat01 13 TPASS : linkat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
linkat01 14 TPASS : linkat succeeded as expected
linkat01 15 TPASS : linkat is functionality correct
linkat01 16 TPASS : linkat failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
linkat01 17 TPASS : linkat failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
linkat01 18 TPASS : linkat succeeded as expected
linkat01 19 TPASS : linkat is functionality correct
linkat01 20 TPASS : linkat failed as expected: TEST_ERRNO=EXDEV(18): Invalid cross-device link
linkat01 21 TPASS : linkat failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
linkat01 22 TPASS : linkat failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=listen01 stime=1372174920
cmdline="listen01"
contacts=""
analysis=exit
<<<test_output>>>
listen01 1 TPASS : bad file descriptor successful
listen01 2 TPASS : not a socket successful
listen01 3 TPASS : UDP listen successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=llseek01 stime=1372174920
cmdline="llseek01"
contacts=""
analysis=exit
<<<test_output>>>
llseek01 1 TPASS : Functionality of llseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=llseek02 stime=1372174920
cmdline="llseek02"
contacts=""
analysis=exit
<<<test_output>>>
llseek02 1 TPASS : llseek() fails, 'whence' argument is not valid, errno:22
llseek02 2 TPASS : llseek() fails, 'fd' is not an open file descriptor, errno:9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek01 stime=1372174920
cmdline="lseek01"
contacts=""
analysis=exit
<<<test_output>>>
lseek01 1 TPASS : lseek(tfile_23147, 0, 0) returned 0
lseek01 2 TPASS : lseek(tfile_23147, 0, 1) returned 0
lseek01 3 TPASS : lseek(tfile_23147, 0, 2) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek02 stime=1372174920
cmdline="lseek02"
contacts=""
analysis=exit
<<<test_output>>>
lseek02 1 TPASS : lseek(-1, 1, SEEK_SET) Failed, errno=9 : Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek03 stime=1372174920
cmdline="lseek03"
contacts=""
analysis=exit
<<<test_output>>>
lseek03 1 TPASS : lseek(tfile_23149, 1, 5) Failed, errno=22 : Invalid argument
lseek03 2 TPASS : lseek(tfile_23149, 1, -1) Failed, errno=22 : Invalid argument
lseek03 3 TPASS : lseek(tfile_23149, 1, 7) Failed, errno=22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=lseek04 stime=1372174920
cmdline="lseek04"
contacts=""
analysis=exit
<<<test_output>>>
lseek04 1 TPASS : lseek(fifofd, 1, SEEK_SET) Failed, errno=29 : Illegal seek
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek05 stime=1372174920
cmdline="lseek05"
contacts=""
analysis=exit
<<<test_output>>>
lseek05 1 TPASS : lseek(pipefd, 1, SEEK_SET) Failed, errno=29 : Illegal seek
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek06 stime=1372174920
cmdline="lseek06"
contacts=""
analysis=exit
<<<test_output>>>
lseek06 1 TPASS : Functionality of lseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek07 stime=1372174920
cmdline="lseek07"
contacts=""
analysis=exit
<<<test_output>>>
lseek07 1 TPASS : Functionality of lseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek08 stime=1372174920
cmdline="lseek08"
contacts=""
analysis=exit
<<<test_output>>>
lseek08 1 TPASS : Functionality of lseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek09 stime=1372174920
cmdline="lseek09"
contacts=""
analysis=exit
<<<test_output>>>
lseek09 1 TPASS : Functionality of lseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek10 stime=1372174920
cmdline="lseek10"
contacts=""
analysis=exit
<<<test_output>>>
lseek10 1 TPASS : lseek() fails, 'fd' associated with a pipe/fifo, errno:29
lseek10 2 TPASS : lseek() fails, 'whence' argument is not valid, errno:22
lseek10 3 TPASS : lseek() fails, 'fd' is not an open file descriptor, errno:9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat01A stime=1372174920
cmdline="symlink01 -T lstat01"
contacts=""
analysis=exit
<<<test_output>>>
lstat01 1 TPASS : lstat(2) of symbolic link file which points to no object file is ok
lstat01 2 TPASS : lstat(2) of symbolic link file which points at an object file is ok
lstat01 3 TPASS : lstat(2) of object file returns object file inode information
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=lstat01A_64 stime=1372174920
cmdline="symlink01 -T lstat01_64"
contacts=""
analysis=exit
<<<test_output>>>
lstat01_64 1 TPASS : lstat(2) of symbolic link file which points to no object file is ok
lstat01_64 2 TPASS : lstat(2) of symbolic link file which points at an object file is ok
lstat01_64 3 TPASS : lstat(2) of object file returns object file inode information
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat01 stime=1372174920
cmdline="lstat01"
contacts=""
analysis=exit
<<<test_output>>>
lstat01 1 TPASS : lstat(lnfile_23159, &statter) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat01_64 stime=1372174920
cmdline="lstat01_64"
contacts=""
analysis=exit
<<<test_output>>>
lstat01 1 TPASS : lstat(lnfile_23160, &statter) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat02 stime=1372174920
cmdline="lstat02"
contacts=""
analysis=exit
<<<test_output>>>
lstat02 1 TPASS : lstat() fails, No Search permissions to process, errno:13
lstat02 2 TPASS : lstat() fails, Negative address, errno:14
lstat02 3 TPASS : lstat() fails, Address beyond address space, errno:14
lstat02 4 TPASS : lstat() fails, Pathname too long, errno:36
lstat02 5 TPASS : lstat() fails, Pathname is empty, errno:2
lstat02 6 TPASS : lstat() fails, Path contains regular file, errno:20
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat02_64 stime=1372174920
cmdline="lstat02_64"
contacts=""
analysis=exit
<<<test_output>>>
lstat02 1 TPASS : lstat() fails, No Search permissions to process, errno:13
lstat02 2 TPASS : lstat() fails, Negative address, errno:14
lstat02 3 TPASS : lstat() fails, Address beyond address space, errno:14
lstat02 4 TPASS : lstat() fails, Pathname too long, errno:36
lstat02 5 TPASS : lstat() fails, Pathname is empty, errno:2
lstat02 6 TPASS : lstat() fails, Path contains regular file, errno:20
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat03 stime=1372174920
cmdline="lstat03"
contacts=""
analysis=exit
<<<test_output>>>
lstat03 1 TPASS : Functionality of lstat(2) on 'sfile' Succcessful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=lstat03_64 stime=1372174920
cmdline="lstat03_64"
contacts=""
analysis=exit
<<<test_output>>>
lstat03 1 TPASS : Functionality of lstat(2) on 'sfile' Succcessful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mallopt01 stime=1372174920
cmdline="mallopt01"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mbind01 stime=1372174920
cmdline="mbind01"
contacts=""
analysis=exit
<<<test_output>>>
mbind01 1 TCONF : System doesn't have required numa support
mbind01 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=memset01 stime=1372174920
cmdline="memset01"
contacts=""
analysis=exit
<<<test_output>>>
memset01 1 TPASS : Test passed
memset01 2 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=memcmp01 stime=1372174920
cmdline="memcmp01"
contacts=""
analysis=exit
<<<test_output>>>
memcmp1 1 TPASS : Test passed
memcmp1 2 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=memcpy01 stime=1372174920
cmdline="memcpy01"
contacts=""
analysis=exit
<<<test_output>>>
memcpy1 1 TPASS : Test passed
memcpy1 2 TPASS : Test passed
memcpy1 3 TPASS : Test passed
memcpy1 4 TPASS : Test passed
memcpy1 5 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=migrate_pages01 stime=1372174920
cmdline="migrate_pages01"
contacts=""
analysis=exit
<<<test_output>>>
migrate_pages01 1 TCONF : System doesn't support __NR_migrate_pages or libnuma is not available
migrate_pages01 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=migrate_pages02 stime=1372174920
cmdline="migrate_pages02"
contacts=""
analysis=exit
<<<test_output>>>
migrate_pages02 1 TCONF : System doesn't support __NR_migrate_pages or libnuma is not available
migrate_pages02 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mlockall01 stime=1372174920
cmdline="mlockall01"
contacts=""
analysis=exit
<<<test_output>>>
mlockall01 1 TPASS : mlockall test passed for MCL_CURRENT
mlockall01 2 TPASS : mlockall test passed for MCL_FUTURE
mlockall01 3 TPASS : mlockall test passed for MCL_CURRENT|MCL_FUTURE
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mlockall02 stime=1372174920
cmdline="mlockall02"
contacts=""
analysis=exit
<<<test_output>>>
mlockall02 1 TPASS : expected failure - errno = 12 : Cannot allocate memory
mlockall02 2 TPASS : expected failure - errno = 1 : Operation not permitted
mlockall02 3 TPASS : expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mlockall03 stime=1372174920
cmdline="mlockall03"
contacts=""
analysis=exit
<<<test_output>>>
mlockall03 1 TPASS : expected failure - errno = 12 : Cannot allocate memory
mlockall03 2 TPASS : expected failure - errno = 1 : Operation not permitted
mlockall03 3 TPASS : expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir01 stime=1372174920
cmdline="mkdir01"
contacts=""
analysis=exit
<<<test_output>>>
mkdir01 1 TPASS : mkdir - path argument pointing below allocated address space failed as expected with errno 14 : Bad address
mkdir01 2 TPASS : mkdir - path argument pointing above allocated address space failed as expected with errno 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir02 stime=1372174920
cmdline="mkdir02"
contacts=""
analysis=exit
<<<test_output>>>
mkdir02 1 TPASS : Test to attempt to make a directory inherits group ID SUCCEEDED
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mkdir03 stime=1372174921
cmdline="mkdir03"
contacts=""
analysis=exit
<<<test_output>>>
mkdir03 1 TPASS : expected failure - errno = 14 : Bad address
mkdir03 2 TPASS : expected failure - errno = 36 : File name too long
mkdir03 3 TPASS : expected failure - errno = 17 : File exists
mkdir03 4 TPASS : expected failure - errno = 2 : No such file or directory
mkdir03 5 TPASS : expected failure - errno = 20 : Not a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir04 stime=1372174921
cmdline="mkdir04"
contacts=""
analysis=exit
<<<test_output>>>
mkdir04 1 TPASS : Test to attempt to creat a directory in a directory having no permissions SUCCEEDED in setting errno to EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir05 stime=1372174921
cmdline="mkdir05"
contacts=""
analysis=exit
<<<test_output>>>
mkdir05 1 TPASS : mkdir() functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir05A stime=1372174921
cmdline="symlink01 -T mkdir05"
contacts=""
analysis=exit
<<<test_output>>>
mkdir05 1 TPASS : mkdir(2) of object file through symbolic link file failed as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir08 stime=1372174921
cmdline="mkdir08"
contacts=""
analysis=exit
<<<test_output>>>
mkdir08 1 TPASS : mkdir(./dir_23185) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mkdir09 stime=1372174921
cmdline="mkdir09"
contacts=""
analysis=exit
<<<test_output>>>
mkdir09 1 TPASS : PASS
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=84 cstime=1373
<<<test_end>>>
<<<test_start>>>
tag=mkdirat01 stime=1372174931
cmdline="mkdirat01"
contacts=""
analysis=exit
<<<test_output>>>
mkdirat01 1 TPASS : mkdirat() returned the expected errno 0: Success
mkdirat01 2 TPASS : mkdirat() returned the expected errno 0: Success
mkdirat01 3 TPASS : mkdirat() returned the expected errno 20: Not a directory
mkdirat01 4 TPASS : mkdirat() returned the expected errno 9: Bad file descriptor
mkdirat01 5 TPASS : mkdirat() returned the expected errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod01 stime=1372174931
cmdline="mknod01"
contacts=""
analysis=exit
<<<test_output>>>
mknod01 1 TPASS : mknod(./tnode_23194, 0100777, 0) returned 0
mknod01 2 TPASS : mknod(./tnode_23194, 010777, 0) returned 0
mknod01 3 TPASS : mknod(./tnode_23194, 020777, 0) returned 0
mknod01 4 TPASS : mknod(./tnode_23194, 060777, 0) returned 0
mknod01 5 TPASS : mknod(./tnode_23194, 0104700, 0) returned 0
mknod01 6 TPASS : mknod(./tnode_23194, 0102700, 0) returned 0
mknod01 7 TPASS : mknod(./tnode_23194, 0106700, 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mknod02 stime=1372174931
cmdline="mknod02"
contacts=""
analysis=exit
<<<test_output>>>
mknod02 1 TPASS : Functionality of mknod(tnode_23195, 012777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod03 stime=1372174931
cmdline="mknod03"
contacts=""
analysis=exit
<<<test_output>>>
mknod03 1 TPASS : Functionality of mknod(tnode_23196, 012777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod04 stime=1372174931
cmdline="mknod04"
contacts=""
analysis=exit
<<<test_output>>>
mknod04 1 TPASS : Functionality of mknod(tnode_23197, 010777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod05 stime=1372174931
cmdline="mknod05"
contacts=""
analysis=exit
<<<test_output>>>
mknod05 1 TPASS : Functionality of mknod(tnode_23198, 012777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod06 stime=1372174931
cmdline="mknod06"
contacts=""
analysis=exit
<<<test_output>>>
mknod06 1 TPASS : mknod() fails, Specified node already exists, errno:17
mknod06 2 TPASS : mknod() fails, Negative address, errno:14
mknod06 3 TPASS : mknod() fails, Address beyond address space, errno:14
mknod06 4 TPASS : mknod() fails, Non-existent file, errno:2
mknod06 5 TPASS : mknod() fails, Pathname is empty, errno:2
mknod06 6 TPASS : mknod() fails, Pathname too long, errno:36
mknod06 7 TPASS : mknod() fails, Path contains regular file, errno:20
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mknod07 stime=1372174931
cmdline="mknod07"
contacts=""
analysis=exit
<<<test_output>>>
mknod07 1 TPASS : mknod failed as expected: TEST_ERRNO=EACCES(13): Permission denied
mknod07 2 TPASS : mknod failed as expected: TEST_ERRNO=EACCES(13): Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod08 stime=1372174931
cmdline="mknod08"
contacts=""
analysis=exit
<<<test_output>>>
mknod08 1 TPASS : Functionality of mknod(tnode_23201, 010777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod09 stime=1372174931
cmdline="mknod09"
contacts=""
analysis=exit
<<<test_output>>>
mknod09 1 TPASS : mknod() fails with expected error EINVAL errno:22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknodat01 stime=1372174931
cmdline="cd $LTPROOT/testcases/bin && chown root mknodat01 && chmod 04755 mknodat01 && mknodat01"
contacts=""
analysis=exit
<<<test_output>>>
mknodat01 1 TPASS : mknodat() returned the expected errno: TEST_ERRNO=???(0): Success
mknodat01 2 TPASS : mknodat() returned the expected errno: TEST_ERRNO=???(0): Success
mknodat01 3 TPASS : mknodat() returned the expected errno: TEST_ERRNO=ENOTDIR(20): Not a directory
mknodat01 4 TPASS : mknodat() returned the expected errno: TEST_ERRNO=EBADF(9): Bad file descriptor
mknodat01 5 TPASS : mknodat() returned the expected errno: TEST_ERRNO=???(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mlock01 stime=1372174931
cmdline="mlock01"
contacts=""
analysis=exit
<<<test_output>>>
mlock01 1 TPASS : mlock passed
mlock01 2 TPASS : mlock passed
mlock01 3 TPASS : mlock passed
mlock01 4 TPASS : mlock passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mlock02 stime=1372174931
cmdline="mlock02"
contacts=""
analysis=exit
<<<test_output>>>
mlock02 1 TPASS : mlock failed as expected: TEST_ERRNO=ENOMEM(12): Cannot allocate memory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mlock03 stime=1372174931
cmdline="mlock03 -i 20"
contacts=""
analysis=exit
<<<test_output>>>
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 1388000 to 13a9000
mlock03 0 TINFO : mlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : mlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : mlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : mlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : mlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : mlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : mlock from 7fd4ff8bc000 to 7fd4ff8c0000
mlock03 0 TINFO : mlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : mlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : mlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : mlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 1388000 to 13a9000
mlock03 0 TINFO : munlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : munlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : munlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : munlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : munlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : munlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : munlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : munlock from 7fd4ff8bc000 to 7fd4ff8bd000
mlock03 0 TINFO : munlock from 7fd4ff8bd000 to 7fd4ff8be000
mlock03 0 TINFO : munlock from 7fd4ff8be000 to 7fd4ff8c0000
mlock03 0 TINFO : munlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : munlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4103c000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : munlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 1388000 to 13a9000
mlock03 0 TINFO : mlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : mlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : mlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : mlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : mlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : mlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : mlock from 7fd4ff8bc000 to 7fd4ff8c0000
mlock03 0 TINFO : mlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : mlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : mlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : mlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 1388000 to 13a9000
mlock03 0 TINFO : munlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : munlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : munlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : munlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : munlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : munlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : munlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : munlock from 7fd4ff8bc000 to 7fd4ff8bd000
mlock03 0 TINFO : munlock from 7fd4ff8bd000 to 7fd4ff8be000
mlock03 0 TINFO : munlock from 7fd4ff8be000 to 7fd4ff8c0000
mlock03 0 TINFO : munlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : munlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4103c000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : munlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 1388000 to 13a9000
mlock03 0 TINFO : mlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : mlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : mlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : mlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : mlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : mlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : mlock from 7fd4ff8bc000 to 7fd4ff8c0000
mlock03 0 TINFO : mlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : mlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : mlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : mlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 1388000 to 13a9000
mlock03 0 TINFO : munlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : munlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : munlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : munlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : munlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : munlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : munlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : munlock from 7fd4ff8bc000 to 7fd4ff8bd000
mlock03 0 TINFO : munlock from 7fd4ff8bd000 to 7fd4ff8be000
mlock03 0 TINFO : munlock from 7fd4ff8be000 to 7fd4ff8c0000
mlock03 0 TINFO : munlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : munlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4103c000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : munlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 1388000 to 13a9000
mlock03 0 TINFO : mlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : mlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : mlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : mlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : mlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : mlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : mlock from 7fd4ff8bc000 to 7fd4ff8c0000
mlock03 0 TINFO : mlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : mlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : mlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : mlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 1388000 to 13a9000
mlock03 0 TINFO : munlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : munlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : munlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : munlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : munlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : munlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : munlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : munlock from 7fd4ff8bc000 to 7fd4ff8bd000
mlock03 0 TINFO : munlock from 7fd4ff8bd000 to 7fd4ff8be000
mlock03 0 TINFO : munlock from 7fd4ff8be000 to 7fd4ff8c0000
mlock03 0 TINFO : munlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : munlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4103c000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : munlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 1388000 to 13a9000
mlock03 0 TINFO : mlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : mlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : mlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : mlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : mlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : mlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : mlock from 7fd4ff8bc000 to 7fd4ff8c0000
mlock03 0 TINFO : mlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : mlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : mlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : mlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 1388000 to 13a9000
mlock03 0 TINFO : munlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : munlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : munlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : munlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : munlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : munlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : munlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : munlock from 7fd4ff8bc000 to 7fd4ff8bd000
mlock03 0 TINFO : munlock from 7fd4ff8bd000 to 7fd4ff8be000
mlock03 0 TINFO : munlock from 7fd4ff8be000 to 7fd4ff8c0000
mlock03 0 TINFO : munlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : munlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4103c000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : munlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 1388000 to 13a9000
mlock03 0 TINFO : mlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : mlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : mlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : mlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : mlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : mlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : mlock from 7fd4ff8bc000 to 7fd4ff8c0000
mlock03 0 TINFO : mlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : mlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : mlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : mlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 1388000 to 13a9000
mlock03 0 TINFO : munlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : munlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : munlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : munlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : munlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : munlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : munlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : munlock from 7fd4ff8bc000 to 7fd4ff8bd000
mlock03 0 TINFO : munlock from 7fd4ff8bd000 to 7fd4ff8be000
mlock03 0 TINFO : munlock from 7fd4ff8be000 to 7fd4ff8c0000
mlock03 0 TINFO : munlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : munlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4103c000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : munlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 1388000 to 13a9000
mlock03 0 TINFO : mlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : mlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : mlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : mlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : mlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : mlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : mlock from 7fd4ff8bc000 to 7fd4ff8c0000
mlock03 0 TINFO : mlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : mlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : mlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : mlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 1388000 to 13a9000
mlock03 0 TINFO : munlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : munlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : munlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : munlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : munlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : munlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : munlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : munlock from 7fd4ff8bc000 to 7fd4ff8bd000
mlock03 0 TINFO : munlock from 7fd4ff8bd000 to 7fd4ff8be000
mlock03 0 TINFO : munlock from 7fd4ff8be000 to 7fd4ff8c0000
mlock03 0 TINFO : munlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : munlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4103c000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : munlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 1388000 to 13a9000
mlock03 0 TINFO : mlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : mlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : mlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : mlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : mlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : mlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : mlock from 7fd4ff8bc000 to 7fd4ff8c0000
mlock03 0 TINFO : mlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : mlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : mlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : mlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 1388000 to 13a9000
mlock03 0 TINFO : munlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : munlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : munlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : munlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : munlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : munlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : munlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : munlock from 7fd4ff8bc000 to 7fd4ff8bd000
mlock03 0 TINFO : munlock from 7fd4ff8bd000 to 7fd4ff8be000
mlock03 0 TINFO : munlock from 7fd4ff8be000 to 7fd4ff8c0000
mlock03 0 TINFO : munlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : munlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4103c000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : munlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 1388000 to 13a9000
mlock03 0 TINFO : mlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : mlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : mlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : mlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : mlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : mlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : mlock from 7fd4ff8bc000 to 7fd4ff8c0000
mlock03 0 TINFO : mlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : mlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : mlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : mlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 1388000 to 13a9000
mlock03 0 TINFO : munlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : munlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : munlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : munlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : munlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : munlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : munlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : munlock from 7fd4ff8bc000 to 7fd4ff8bd000
mlock03 0 TINFO : munlock from 7fd4ff8bd000 to 7fd4ff8be000
mlock03 0 TINFO : munlock from 7fd4ff8be000 to 7fd4ff8c0000
mlock03 0 TINFO : munlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : munlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4103c000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : munlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 1388000 to 13a9000
mlock03 0 TINFO : mlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : mlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : mlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : mlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : mlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : mlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : mlock from 7fd4ff8bc000 to 7fd4ff8c0000
mlock03 0 TINFO : mlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : mlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : mlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : mlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 1388000 to 13a9000
mlock03 0 TINFO : munlock from 7fd4ff2df000 to 7fd4ff494000
mlock03 0 TINFO : munlock from 7fd4ff494000 to 7fd4ff693000
mlock03 0 TINFO : munlock from 7fd4ff693000 to 7fd4ff697000
mlock03 0 TINFO : munlock from 7fd4ff697000 to 7fd4ff699000
mlock03 0 TINFO : munlock from 7fd4ff699000 to 7fd4ff69e000
mlock03 0 TINFO : munlock from 7fd4ff69e000 to 7fd4ff6c0000
mlock03 0 TINFO : munlock from 7fd4ff8a3000 to 7fd4ff8a6000
mlock03 0 TINFO : munlock from 7fd4ff8bc000 to 7fd4ff8bd000
mlock03 0 TINFO : munlock from 7fd4ff8bd000 to 7fd4ff8be000
mlock03 0 TINFO : munlock from 7fd4ff8be000 to 7fd4ff8c0000
mlock03 0 TINFO : munlock from 7fd4ff8c0000 to 7fd4ff8c1000
mlock03 0 TINFO : munlock from 7fd4ff8c1000 to 7fd4ff8c3000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4103c000
mlock03 0 TINFO : munlock from 7fff4103c000 to 7fff4105d000
mlock03 0 TINFO : munlock from 7fff41123000 to 7fff41125000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : starting stack size is 132
mlock03 0 TINFO : final stack size is 132
mlock03 1 TPASS : stack size is not decreased.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=5
<<<test_end>>>
<<<test_start>>>
tag=mlock04 stime=1372174931
cmdline="mlock04"
contacts=""
analysis=exit
<<<test_output>>>
mlock04 0 TINFO : locked 40960 bytes from 0x7febd8bc5000
mlock04 1 TPASS : test succeeded.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=qmm01 stime=1372174931
cmdline="mmap001 -m 1"
contacts=""
analysis=exit
<<<test_output>>>
mmap001 0 TINFO : mmap()ing file of 1 pages or 4096 bytes
mmap001 1 TPASS : mmap() completed successfully.
mmap001 0 TINFO : touching mmaped memory
mmap001 2 TPASS : we're still here, mmaped area must be good
mmap001 3 TPASS : synchronizing mmapped page passed
mmap001 4 TPASS : munmapping testfile.23211 successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap01 stime=1372174931
cmdline="mmap01"
contacts=""
analysis=exit
<<<test_output>>>
mmap01 1 TPASS : Functionality of mmap() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap02 stime=1372174931
cmdline="mmap02"
contacts=""
analysis=exit
<<<test_output>>>
mmap02 1 TPASS : Functionality of mmap() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap03 stime=1372174931
cmdline="mmap03"
contacts=""
analysis=exit
<<<test_output>>>
mmap03 1 TPASS : mmap() functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap04 stime=1372174931
cmdline="mmap04"
contacts=""
analysis=exit
<<<test_output>>>
mmap04 1 TPASS : Functionality of mmap() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap05 stime=1372174931
cmdline="mmap05"
contacts=""
analysis=exit
<<<test_output>>>
mmap05 1 TPASS : Got SIGSEGV as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mmap06 stime=1372174931
cmdline="mmap06"
contacts=""
analysis=exit
<<<test_output>>>
mmap06 1 TPASS : mmap failed with EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap07 stime=1372174931
cmdline="mmap07"
contacts=""
analysis=exit
<<<test_output>>>
mmap07 1 TPASS : mmap failed with EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap08 stime=1372174931
cmdline="mmap08"
contacts=""
analysis=exit
<<<test_output>>>
mmap08 1 TPASS : mmap failed with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap09 stime=1372174931
cmdline="mmap09"
contacts=""
analysis=exit
<<<test_output>>>
mmap09 1 TPASS : ftruncate mmaped file to a smaller size
mmap09 2 TPASS : ftruncate mmaped file to a larger size
mmap09 3 TPASS : ftruncate mmaped file to 0 size
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=modify_ldt01 stime=1372174931
cmdline="modify_ldt01"
contacts=""
analysis=exit
<<<test_output>>>
modify_ldt01 1 TCONF : modify_ldt is available but not tested on the platform than __i386__
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=modify_ldt02 stime=1372174931
cmdline="modify_ldt02"
contacts=""
analysis=exit
<<<test_output>>>
modify_ldt02 1 TCONF : modify_ldt is available but not tested on the platform than __i386__
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mount01 stime=1372174931
cmdline="mount01 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
mount01 1 TPASS : mount(2) passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mount02 stime=1372174931
cmdline="mount02 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
mount02 1 TPASS : mount got expected failure: errno=ENODEV(19): No such device
mount02 2 TPASS : mount got expected failure: errno=ENOTBLK(15): Block device required
mount02 3 TPASS : mount got expected failure: errno=EBUSY(16): Device or resource busy
mount02 4 TBROK : umount of mnt_23226 failed: errno=EBUSY(16): Device or resource busy
mount02 5 TBROK : Remaining cases broken
mount02 0 TWARN : tst_rmdir: rmobj(/tmp/ltp-kN6m0brwl9/mouShr1bl) failed: remove(/tmp/ltp-kN6m0brwl9/mouShr1bl/mnt_23226) failed; errno=16: Device or resource busy
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=6 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mount03 stime=1372174931
cmdline="mount03 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
mount03 1 TBROK : stat for setuid_test failed
mount03 2 TBROK : Remaining cases broken
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=2 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mount04 stime=1372174931
cmdline="mount04 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
mount04 1 TPASS : mount(2) expected failure; Got errno - EPERM : User not Super User/root
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages01 stime=1372174931
cmdline="move_pages.sh 01"
contacts=""
analysis=exit
<<<test_output>>>
move_pages01 1 TCONF : NUMA support not provided
move_pages01 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages02 stime=1372174931
cmdline="move_pages.sh 02"
contacts=""
analysis=exit
<<<test_output>>>
move_pages02 1 TCONF : NUMA support not provided
move_pages02 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=move_pages03 stime=1372174931
cmdline="cd $LTPROOT/testcases/bin && chown root move_pages03 && chmod 04755 move_pages03 && move_pages.sh 03"
contacts=""
analysis=exit
<<<test_output>>>
move_pages03 1 TCONF : NUMA support not provided
move_pages03 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages04 stime=1372174931
cmdline="move_pages.sh 04"
contacts=""
analysis=exit
<<<test_output>>>
move_pages04 1 TCONF : NUMA support not provided
move_pages04 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages05 stime=1372174931
cmdline="move_pages.sh 05"
contacts=""
analysis=exit
<<<test_output>>>
move_pages05 1 TCONF : NUMA support not provided
move_pages05 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=move_pages06 stime=1372174931
cmdline="move_pages.sh 06"
contacts=""
analysis=exit
<<<test_output>>>
move_pages06 1 TCONF : NUMA support not provided
move_pages06 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages07 stime=1372174932
cmdline="move_pages.sh 07"
contacts=""
analysis=exit
<<<test_output>>>
move_pages07 1 TCONF : NUMA support not provided
move_pages07 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages08 stime=1372174932
cmdline="move_pages.sh 08"
contacts=""
analysis=exit
<<<test_output>>>
move_pages08 1 TCONF : move_pages: E2BIG was removed in commit 3140a227
move_pages08 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages09 stime=1372174932
cmdline="move_pages.sh 09"
contacts=""
analysis=exit
<<<test_output>>>
move_pages09 1 TCONF : NUMA support not provided
move_pages09 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages10 stime=1372174932
cmdline="move_pages.sh 10"
contacts=""
analysis=exit
<<<test_output>>>
move_pages10 1 TCONF : NUMA support not provided
move_pages10 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=move_pages11 stime=1372174932
cmdline="cd $LTPROOT/testcases/bin && chown root move_pages11 && chmod 04755 move_pages11 && move_pages.sh 11"
contacts=""
analysis=exit
<<<test_output>>>
move_pages11 1 TCONF : NUMA support not provided
move_pages11 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mprotect01 stime=1372174932
cmdline="mprotect01"
contacts=""
analysis=exit
<<<test_output>>>
mprotect01 1 TPASS : expected failure - errno = 12 : Cannot allocate memory
mprotect01 2 TPASS : expected failure - errno = 22 : Invalid argument
mprotect01 3 TPASS : expected failure - errno = 13 : Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mprotect02 stime=1372174932
cmdline="mprotect02"
contacts=""
analysis=exit
<<<test_output>>>
mprotect02 1 TPASS : got SIGSEGV as expected
mprotect02 1 TPASS : got SIGSEGV as expected
mprotect02 2 TPASS : didn't get SIGSEGV
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mprotect03 stime=1372174932
cmdline="mprotect03"
contacts=""
analysis=exit
<<<test_output>>>
mprotect03 0 TINFO : received signal: SIGSEGV
mprotect03 1 TPASS : SIGSEGV generated as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mq_notify01 stime=1372174932
cmdline="mq_notify01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=16 (Device or resource busy)
RESULT: return value(ret)=-1 errno=16 (Device or resource busy)
mq_notify01 0 TINFO : (case00) START
mq_notify01 0 TINFO : (case00) END => OK
mq_notify01 0 TINFO : (case01) START
mq_notify01 0 TINFO : (case01) END => OK
mq_notify01 0 TINFO : (case02) START
mq_notify01 0 TINFO : (case02) END => OK
mq_notify01 0 TINFO : (case03) START
mq_notify01 0 TINFO : (case03) END => OK
mq_notify01 0 TINFO : (case04) START
mq_notify01 0 TINFO : (case04) END => OK
mq_notify01 0 TINFO : (case05) START
mq_notify01 0 TINFO : (case05) END => OK
mq_notify01 0 TINFO : (case06) START
mq_notify01 0 TINFO : (case06) END => OK
mq_notify01 1 TPASS : mq_notify call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mq_open01 stime=1372174932
cmdline="mq_open01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 5 errno=0 (Success)
mq_open01 0 TINFO : (case00) START
mq_open01 0 TINFO : mq_maxmsg E:20, R:20
mq_open01 0 TINFO : mq_msgsize E:16384, R:16384
mq_open01 0 TINFO : (case00) END => OK
mq_open01 1 TPASS : mq_open call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mq_timedreceive01 stime=1372174932
cmdline="mq_timedreceive01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=0 errno=0 (Success)
RESULT: return value(ret)=0 errno=0 (Success)
EXPECT: return value(ret)=1 errno=0 (Success)
RESULT: return value(ret)=1 errno=0 (Success)
EXPECT: return value(ret)=8192 errno=0 (Success)
RESULT: return value(ret)=8192 errno=0 (Success)
EXPECT: return value(ret)=1 errno=0 (Success)
RESULT: return value(ret)=1 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=90 (Message too long)
RESULT: return value(ret)=-1 errno=90 (Message too long)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=11 (Resource temporarily unavailable)
RESULT: return value(ret)=-1 errno=11 (Resource temporarily unavailable)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=110 (Connection timed out)
RESULT: return value(ret)=-1 errno=110 (Connection timed out)
EXPECT: return value(ret)=-1 errno=4 (Interrupted system call)
RESULT: return value(ret)=-1 errno=4 (Interrupted system call)
mq_timedreceive01 0 TINFO : (case00) START
mq_timedreceive01 0 TINFO : (case00) END => OK
mq_timedreceive01 0 TINFO : (case01) START
mq_timedreceive01 0 TINFO : (case01) END => OK
mq_timedreceive01 0 TINFO : (case02) START
mq_timedreceive01 0 TINFO : (case02) END => OK
mq_timedreceive01 0 TINFO : (case03) START
mq_timedreceive01 0 TINFO : (case03) END => OK
mq_timedreceive01 0 TINFO : (case04) START
mq_timedreceive01 0 TINFO : (case04) END => OK
mq_timedreceive01 0 TINFO : (case05) START
mq_timedreceive01 0 TINFO : (case05) END => OK
mq_timedreceive01 0 TINFO : (case06) START
mq_timedreceive01 0 TINFO : (case06) END => OK
mq_timedreceive01 0 TINFO : (case07) START
mq_timedreceive01 0 TINFO : (case07) END => OK
mq_timedreceive01 0 TINFO : (case08) START
mq_timedreceive01 0 TINFO : (case08) END => OK
mq_timedreceive01 0 TINFO : (case09) START
mq_timedreceive01 0 TINFO : (case09) END => OK
mq_timedreceive01 0 TINFO : (case10) START
mq_timedreceive01 0 TINFO : (case10) END => OK
mq_timedreceive01 0 TINFO : (case11) START
mq_timedreceive01 0 TINFO : (case11) END => OK
mq_timedreceive01 0 TINFO : (case12) START
mq_timedreceive01 0 TINFO : (case12) END => OK
mq_timedreceive01 0 TINFO : (case13) START
mq_timedreceive01 0 TINFO : (case13) END => OK
mq_timedreceive01 1 TPASS : mq_timedreceive call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mq_timedsend01 stime=1372174933
cmdline="mq_timedsend01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=90 (Message too long)
RESULT: return value(ret)=-1 errno=90 (Message too long)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=11 (Resource temporarily unavailable)
RESULT: return value(ret)=-1 errno=11 (Resource temporarily unavailable)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=110 (Connection timed out)
RESULT: return value(ret)=-1 errno=110 (Connection timed out)
EXPECT: return value(ret)=-1 errno=4 (Interrupted system call)
RESULT: return value(ret)=-1 errno=4 (Interrupted system call)
mq_timedsend01 0 TINFO : (case00) START
mq_timedsend01 0 TINFO : (case00) END => OK
mq_timedsend01 0 TINFO : (case01) START
mq_timedsend01 0 TINFO : (case01) END => OK
mq_timedsend01 0 TINFO : (case02) START
mq_timedsend01 0 TINFO : (case02) END => OK
mq_timedsend01 0 TINFO : (case03) START
mq_timedsend01 0 TINFO : (case03) END => OK
mq_timedsend01 0 TINFO : (case04) START
mq_timedsend01 0 TINFO : (case04) END => OK
mq_timedsend01 0 TINFO : (case05) START
mq_timedsend01 0 TINFO : (case05) END => OK
mq_timedsend01 0 TINFO : (case06) START
mq_timedsend01 0 TINFO : (case06) END => OK
mq_timedsend01 0 TINFO : (case07) START
mq_timedsend01 0 TINFO : (case07) END => OK
mq_timedsend01 0 TINFO : (case08) START
mq_timedsend01 0 TINFO : (case08) END => OK
mq_timedsend01 0 TINFO : (case09) START
mq_timedsend01 0 TINFO : (case09) END => OK
mq_timedsend01 0 TINFO : (case10) START
mq_timedsend01 0 TINFO : (case10) END => OK
mq_timedsend01 0 TINFO : (case11) START
mq_timedsend01 0 TINFO : (case11) END => OK
mq_timedsend01 0 TINFO : (case12) START
mq_timedsend01 0 TINFO : (case12) END => OK
mq_timedsend01 0 TINFO : (case13) START
mq_timedsend01 0 TINFO : (case13) END => OK
mq_timedsend01 0 TINFO : (case14) START
mq_timedsend01 0 TINFO : (case14) END => OK
mq_timedsend01 1 TPASS : mq_timedsend call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mq_unlink01 stime=1372174934
cmdline="mq_unlink01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=13 (Permission denied)
RESULT: return value(ret)=-1 errno=13 (Permission denied)
EXPECT: return value(ret)=-1 errno=2 (No such file or directory)
RESULT: return value(ret)=-1 errno=2 (No such file or directory)
EXPECT: return value(ret)=-1 errno=36 (File name too long)
RESULT: return value(ret)=-1 errno=36 (File name too long)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mremap01 stime=1372174934
cmdline="mremap01"
contacts=""
analysis=exit
<<<test_output>>>
mremap01 1 TPASS : Functionality of mremap() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=mremap02 stime=1372174934
cmdline="mremap02"
contacts=""
analysis=exit
<<<test_output>>>
mremap02 1 TPASS : mremap() Failed, 'invalid argument specified' - errno 22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mremap03 stime=1372174934
cmdline="mremap03"
contacts=""
analysis=exit
<<<test_output>>>
mremap03 1 TPASS : mremap() Fails, 'old region not mapped', errno 14
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mremap04 stime=1372174934
cmdline="mremap04"
contacts=""
analysis=exit
<<<test_output>>>
mremap04 1 TPASS : mremap() failed, 'MREMAP_MAYMOVE flag unset', errno 12
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mremap05 stime=1372174934
cmdline="mremap05"
contacts=""
analysis=exit
<<<test_output>>>
mremap05 1 TPASS : MREMAP_FIXED requires MREMAP_MAYMOVE
mremap05 2 TPASS : new_addr has to be page aligned
mremap05 3 TPASS : old/new area must not overlap
mremap05 4 TPASS : mremap #1
mremap05 5 TPASS : mremap #1 value OK
mremap05 6 TPASS : mremap #2
mremap05 7 TPASS : mremap #2 value OK
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl01 stime=1372174934
cmdline="msgctl01"
contacts=""
analysis=exit
<<<test_output>>>
msgctl01 1 TPASS : qs_buf.msg_qbytes is a positive value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl02 stime=1372174934
cmdline="msgctl02"
contacts=""
analysis=exit
<<<test_output>>>
msgctl02 1 TPASS : qs_buf.msg_qbytes is the new value - 16383
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl03 stime=1372174934
cmdline="msgctl03"
contacts=""
analysis=exit
<<<test_output>>>
msgctl03 1 TPASS : The queue is gone
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl04 stime=1372174934
cmdline="msgctl04"
contacts=""
analysis=exit
<<<test_output>>>
msgctl04 1 TPASS : expected failure: TEST_ERRNO=EACCES(13): Permission denied
msgctl04 2 TPASS : expected failure: TEST_ERRNO=EFAULT(14): Bad address
msgctl04 3 TPASS : expected failure: TEST_ERRNO=EFAULT(14): Bad address
msgctl04 4 TPASS : expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
msgctl04 5 TPASS : expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
msgctl04 6 TPASS : expected failure: TEST_ERRNO=EINVAL(22): Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl05 stime=1372174934
cmdline="msgctl05"
contacts=""
analysis=exit
<<<test_output>>>
msgctl05 1 TPASS : expected error = 1 : Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=msgctl06 stime=1372174934
cmdline="msgctl06"
contacts=""
analysis=exit
<<<test_output>>>
msgctl06 1 TPASS : msgctl06 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl07 stime=1372174934
cmdline="msgctl07"
contacts=""
analysis=exit
<<<test_output>>>
msgctl07 1 TPASS : msgctl07 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=20 termination_type=exited termination_id=0 corefile=no
cutime=1995 cstime=3
<<<test_end>>>
<<<test_start>>>
tag=msgctl08 stime=1372174954
cmdline="msgctl08"
contacts=""
analysis=exit
<<<test_output>>>
msgctl08 0 TWARN : Verify error in child 0, *buf = 28, val = 27, size = 8
msgctl08 1 TFAIL : in child 0 read # = 73,key = 127
msgctl08 0 TWARN : Verify error in child 3, *buf = ffffff8a, val = ffffff89, size = 52
msgctl08 1 TFAIL : in child 3 read # = 157,key = 189
msgctl08 0 TWARN : Verify error in child 2, *buf = ffffff87, val = ffffff86, size = 71
msgctl08 1 TFAIL : in child 2 read # = 15954,key = 3e86
msgctl08 0 TWARN : Verify error in child 12, *buf = ffffffa9, val = ffffffa8, size = 22
msgctl08 1 TFAIL : in child 12 read # = 12904,key = 32a8
msgctl08 0 TWARN : Verify error in child 13, *buf = 36, val = 35, size = 27
msgctl08 1 TFAIL : in child 13 read # = 10442,key = 2935
msgctl08 0 TWARN : Verify error in child 10, *buf = ffffff86, val = ffffff85, size = 63
msgctl08 1 TFAIL : in child 10 read # = 19713,key = 4d85
msgctl08 0 TWARN : Verify error in child 4, *buf = 4c, val = 4b, size = 83
msgctl08 1 TFAIL : in child 4 read # = 23082,key = 5a4b
msgctl08 0 TWARN : Verify error in child 15, *buf = 61, val = 60, size = 94
msgctl08 1 TFAIL : in child 15 read # = 23554,key = 5c60
msgctl08 0 TWARN : Verify error in child 11, *buf = 3b, val = 3a, size = 22
msgctl08 1 TFAIL : in child 11 read # = 26468,key = 683a
msgctl08 0 TWARN : Verify error in child 5, *buf = ffffffb5, val = ffffffb4, size = 41
msgctl08 1 TFAIL : in child 5 read # = 31867,key = 7cb4
msgctl08 0 TWARN : Verify error in child 1, *buf = 7d, val = 7c, size = 59
msgctl08 1 TFAIL : in child 1 read # = 41063,key = a07c
msgctl08 0 TWARN : Verify error in child 7, *buf = fffffff2, val = fffffff1, size = 83
msgctl08 1 TFAIL : in child 7 read # = 38476,key = 96f1
msgctl08 0 TWARN : Verify error in child 9, *buf = ffffff8b, val = ffffff8a, size = 40
msgctl08 1 TFAIL : in child 9 read # = 90438,key = 1618a
msgctl08 0 TWARN : Verify error in child 8, *buf = ffffffcd, val = ffffffcc, size = 38
msgctl08 1 TFAIL : in child 8 read # = 88712,key = 15acc
msgctl08 0 TWARN : Verify error in child 6, *buf = 6, val = 5, size = 1
msgctl08 1 TFAIL : in child 6 read # = 83297,key = 14605
[-- Attachment #6: config-3.10.0-rc7-next20130624-1-iniza-small --]
[-- Type: application/octet-stream, Size: 114138 bytes --]
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 3.10.0-rc7 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_MMU=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_ARCH_HAS_CPU_AUTOPROBE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ZONE_DMA32=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_HAVE_INTEL_TXT=y
CONFIG_X86_64_SMP=y
CONFIG_X86_HT=y
CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11"
CONFIG_ARCH_CPU_PROBE_RELEASE=y
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_EXTABLE_SORT=y
#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_CROSS_COMPILE=""
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
CONFIG_HAVE_KERNEL_LZ4=y
CONFIG_KERNEL_GZIP=y
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
# CONFIG_KERNEL_XZ is not set
# CONFIG_KERNEL_LZO is not set
# CONFIG_KERNEL_LZ4 is not set
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
CONFIG_FHANDLE=y
CONFIG_AUDIT=y
CONFIG_AUDITSYSCALL=y
CONFIG_AUDIT_WATCH=y
CONFIG_AUDIT_TREE=y
# CONFIG_AUDIT_LOGINUID_IMMUTABLE is not set
CONFIG_HAVE_GENERIC_HARDIRQS=y
#
# IRQ subsystem
#
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_IRQ_DOMAIN=y
# CONFIG_IRQ_DOMAIN_DEBUG is not set
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_DATA=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y
#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
CONFIG_NO_HZ_IDLE=y
# CONFIG_NO_HZ_FULL is not set
# CONFIG_NO_HZ is not set
CONFIG_HIGH_RES_TIMERS=y
#
# CPU/Task time and stats accounting
#
CONFIG_VIRT_CPU_ACCOUNTING=y
# CONFIG_TICK_CPU_ACCOUNTING is not set
CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
# CONFIG_IRQ_TIME_ACCOUNTING is not set
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_PREEMPT_RCU is not set
CONFIG_RCU_STALL_COMMON=y
CONFIG_CONTEXT_TRACKING=y
CONFIG_RCU_USER_QS=y
CONFIG_CONTEXT_TRACKING_FORCE=y
CONFIG_RCU_FANOUT=64
CONFIG_RCU_FANOUT_LEAF=16
# CONFIG_RCU_FANOUT_EXACT is not set
# CONFIG_RCU_FAST_NO_HZ is not set
# CONFIG_TREE_RCU_TRACE is not set
CONFIG_RCU_NOCB_CPU=y
CONFIG_RCU_NOCB_CPU_NONE=y
# CONFIG_RCU_NOCB_CPU_ZERO is not set
# CONFIG_RCU_NOCB_CPU_ALL is not set
CONFIG_IKCONFIG=m
# CONFIG_IKCONFIG_PROC is not set
CONFIG_LOG_BUF_SHIFT=18
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y
# CONFIG_NUMA_BALANCING is not set
CONFIG_CGROUPS=y
# CONFIG_CGROUP_DEBUG is not set
CONFIG_CGROUP_FREEZER=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_RESOURCE_COUNTERS=y
CONFIG_MEMCG=y
CONFIG_MEMCG_SWAP=y
# CONFIG_MEMCG_SWAP_ENABLED is not set
# CONFIG_MEMCG_KMEM is not set
CONFIG_CGROUP_HUGETLB=y
CONFIG_CGROUP_PERF=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
CONFIG_CFS_BANDWIDTH=y
CONFIG_RT_GROUP_SCHED=y
CONFIG_BLK_CGROUP=y
# CONFIG_DEBUG_BLK_CGROUP is not set
CONFIG_CHECKPOINT_RESTORE=y
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
CONFIG_PID_NS=y
CONFIG_NET_NS=y
CONFIG_SCHED_AUTOGROUP=y
CONFIG_MM_OWNER=y
# CONFIG_SYSFS_DEPRECATED is not set
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
# CONFIG_RD_LZ4 is not set
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SYSCTL=y
CONFIG_ANON_INODES=y
CONFIG_HAVE_UID16=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
CONFIG_EXPERT=y
CONFIG_UID16=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_PCI_QUIRKS=y
# CONFIG_EMBEDDED is not set
CONFIG_HAVE_PERF_EVENTS=y
#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
CONFIG_VM_EVENT_COUNTERS=y
# CONFIG_COMPAT_BRK is not set
CONFIG_SLAB=y
# CONFIG_SLUB is not set
# CONFIG_SLOB is not set
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
# CONFIG_OPROFILE is not set
CONFIG_HAVE_OPROFILE=y
CONFIG_OPROFILE_NMI_TIMER=y
CONFIG_KPROBES=y
CONFIG_JUMP_LABEL=y
CONFIG_OPTPROBES=y
CONFIG_KPROBES_ON_FTRACE=y
CONFIG_UPROBES=y
# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_ARCH_USE_BUILTIN_BSWAP=y
CONFIG_KRETPROBES=y
CONFIG_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_OPTPROBES=y
CONFIG_HAVE_KPROBES_ON_FTRACE=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_ATTRS=y
CONFIG_USE_GENERIC_SMP_HELPERS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_DMA_API_DEBUG=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
CONFIG_HAVE_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_PERF_EVENTS_NMI=y
CONFIG_HAVE_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP_FILTER=y
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_HAVE_ARCH_SOFT_DIRTY=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_OLD_SIGSUSPEND3=y
CONFIG_COMPAT_OLD_SIGACTION=y
#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
CONFIG_SLABINFO=y
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
CONFIG_MODVERSIONS=y
CONFIG_MODULE_SRCVERSION_ALL=y
CONFIG_MODULE_SIG=y
# CONFIG_MODULE_SIG_FORCE is not set
CONFIG_MODULE_SIG_ALL=y
# CONFIG_MODULE_SIG_SHA1 is not set
# CONFIG_MODULE_SIG_SHA224 is not set
# CONFIG_MODULE_SIG_SHA256 is not set
# CONFIG_MODULE_SIG_SHA384 is not set
CONFIG_MODULE_SIG_SHA512=y
CONFIG_MODULE_SIG_HASH="sha512"
CONFIG_STOP_MACHINE=y
CONFIG_BLOCK=y
CONFIG_BLK_DEV_BSG=y
CONFIG_BLK_DEV_BSGLIB=y
CONFIG_BLK_DEV_INTEGRITY=y
CONFIG_BLK_DEV_THROTTLING=y
#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
CONFIG_ACORN_PARTITION=y
# CONFIG_ACORN_PARTITION_CUMANA is not set
# CONFIG_ACORN_PARTITION_EESOX is not set
CONFIG_ACORN_PARTITION_ICS=y
# CONFIG_ACORN_PARTITION_ADFS is not set
# CONFIG_ACORN_PARTITION_POWERTEC is not set
CONFIG_ACORN_PARTITION_RISCIX=y
# CONFIG_AIX_PARTITION is not set
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
CONFIG_ATARI_PARTITION=y
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
CONFIG_LDM_PARTITION=y
# CONFIG_LDM_DEBUG is not set
CONFIG_SGI_PARTITION=y
CONFIG_ULTRIX_PARTITION=y
CONFIG_SUN_PARTITION=y
CONFIG_KARMA_PARTITION=y
CONFIG_EFI_PARTITION=y
CONFIG_SYSV68_PARTITION=y
CONFIG_BLOCK_COMPAT=y
#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
CONFIG_CFQ_GROUP_IOSCHED=y
CONFIG_DEFAULT_DEADLINE=y
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="deadline"
CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_ASN1=y
CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_FREEZER=y
#
# Processor type and features
#
CONFIG_ZONE_DMA=y
CONFIG_SMP=y
CONFIG_X86_X2APIC=y
CONFIG_X86_MPPARSE=y
CONFIG_X86_EXTENDED_PLATFORM=y
CONFIG_X86_NUMACHIP=y
# CONFIG_X86_VSMP is not set
# CONFIG_X86_UV is not set
# CONFIG_X86_INTEL_LPSS is not set
CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
CONFIG_SCHED_OMIT_FRAME_POINTER=y
CONFIG_HYPERVISOR_GUEST=y
CONFIG_PARAVIRT=y
# CONFIG_PARAVIRT_DEBUG is not set
CONFIG_PARAVIRT_SPINLOCKS=y
CONFIG_XEN=y
CONFIG_XEN_DOM0=y
CONFIG_XEN_PRIVILEGED_GUEST=y
CONFIG_XEN_PVHVM=y
CONFIG_XEN_MAX_DOMAIN_MEMORY=500
CONFIG_XEN_SAVE_RESTORE=y
# CONFIG_XEN_DEBUG_FS is not set
# CONFIG_XEN_X86_PVH is not set
CONFIG_KVM_GUEST=y
# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
CONFIG_PARAVIRT_CLOCK=y
CONFIG_NO_BOOTMEM=y
CONFIG_MEMTEST=y
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
# CONFIG_MCORE2 is not set
# CONFIG_MATOM is not set
CONFIG_GENERIC_CPU=y
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_PROCESSOR_SELECT=y
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
CONFIG_GART_IOMMU=y
CONFIG_CALGARY_IOMMU=y
CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
# CONFIG_MAXSMP is not set
CONFIG_NR_CPUS=256
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_INTEL=y
CONFIG_X86_MCE_AMD=y
CONFIG_X86_MCE_THRESHOLD=y
# CONFIG_X86_MCE_INJECT is not set
CONFIG_X86_THERMAL_VECTOR=y
# CONFIG_I8K is not set
CONFIG_MICROCODE=y
CONFIG_MICROCODE_INTEL=y
CONFIG_MICROCODE_AMD=y
CONFIG_MICROCODE_OLD_INTERFACE=y
CONFIG_MICROCODE_INTEL_LIB=y
CONFIG_MICROCODE_INTEL_EARLY=y
CONFIG_MICROCODE_AMD_EARLY=y
CONFIG_MICROCODE_EARLY=y
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_DIRECT_GBPAGES=y
CONFIG_NUMA=y
CONFIG_AMD_NUMA=y
CONFIG_X86_64_ACPI_NUMA=y
CONFIG_NODES_SPAN_OTHER_NODES=y
# CONFIG_NUMA_EMU is not set
CONFIG_NODES_SHIFT=6
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ARCH_MEMORY_PROBE=y
CONFIG_ARCH_PROC_KCORE_TEXT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_NEED_MULTIPLE_NODES=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_HAVE_MEMBLOCK=y
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
CONFIG_ARCH_DISCARD_MEMBLOCK=y
CONFIG_MEMORY_ISOLATION=y
# CONFIG_MOVABLE_NODE is not set
CONFIG_HAVE_BOOTMEM_INFO_NODE=y
CONFIG_MEMORY_HOTPLUG=y
CONFIG_MEMORY_HOTPLUG_SPARSE=y
CONFIG_MEMORY_HOTREMOVE=y
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=999999
CONFIG_COMPACTION=y
CONFIG_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_NEED_BOUNCE_POOL=y
CONFIG_VIRT_TO_BUS=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=65536
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
CONFIG_MEMORY_FAILURE=y
# CONFIG_HWPOISON_INJECT is not set
CONFIG_TRANSPARENT_HUGEPAGE=y
# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set
CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y
CONFIG_CROSS_MEMORY_ATTACH=y
CONFIG_CLEANCACHE=y
CONFIG_FRONTSWAP=y
# CONFIG_ZBUD is not set
# CONFIG_ZSWAP is not set
# CONFIG_MEM_SOFT_DIRTY is not set
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
CONFIG_X86_RESERVE_LOW=64
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_ARCH_RANDOM=y
CONFIG_X86_SMAP=y
CONFIG_EFI=y
CONFIG_EFI_STUB=y
CONFIG_SECCOMP=y
CONFIG_CC_STACKPROTECTOR=y
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_SCHED_HRTICK=y
CONFIG_KEXEC=y
CONFIG_CRASH_DUMP=y
CONFIG_KEXEC_JUMP=y
CONFIG_PHYSICAL_START=0x1000000
CONFIG_RELOCATABLE=y
CONFIG_PHYSICAL_ALIGN=0x1000000
CONFIG_HOTPLUG_CPU=y
# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
# CONFIG_COMPAT_VDSO is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
CONFIG_USE_PERCPU_NUMA_NODE_ID=y
#
# Power management and ACPI options
#
CONFIG_ARCH_HIBERNATION_HEADER=y
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
CONFIG_HIBERNATE_CALLBACKS=y
CONFIG_HIBERNATION=y
CONFIG_PM_STD_PARTITION=""
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
# CONFIG_PM_AUTOSLEEP is not set
# CONFIG_PM_WAKELOCKS is not set
CONFIG_PM_RUNTIME=y
CONFIG_PM=y
CONFIG_PM_DEBUG=y
# CONFIG_PM_ADVANCED_DEBUG is not set
# CONFIG_PM_TEST_SUSPEND is not set
CONFIG_PM_SLEEP_DEBUG=y
# CONFIG_PM_TRACE_RTC is not set
# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
CONFIG_ACPI=y
CONFIG_ACPI_SLEEP=y
# CONFIG_ACPI_PROCFS is not set
# CONFIG_ACPI_PROCFS_POWER is not set
CONFIG_ACPI_EC_DEBUGFS=m
CONFIG_ACPI_PROC_EVENT=y
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=y
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_I2C=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_NUMA=y
CONFIG_ACPI_CUSTOM_DSDT_FILE=""
# CONFIG_ACPI_CUSTOM_DSDT is not set
# CONFIG_ACPI_INITRD_TABLE_OVERRIDE is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=y
# CONFIG_ACPI_HOTPLUG_MEMORY is not set
# CONFIG_ACPI_SBS is not set
CONFIG_ACPI_HED=y
# CONFIG_ACPI_CUSTOM_METHOD is not set
CONFIG_ACPI_BGRT=y
CONFIG_ACPI_APEI=y
CONFIG_ACPI_APEI_GHES=y
CONFIG_ACPI_APEI_PCIEAER=y
CONFIG_ACPI_APEI_MEMORY_FAILURE=y
# CONFIG_ACPI_APEI_EINJ is not set
# CONFIG_ACPI_APEI_ERST_DEBUG is not set
CONFIG_SFI=y
#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=y
CONFIG_CPU_FREQ_GOV_COMMON=y
CONFIG_CPU_FREQ_STAT=y
CONFIG_CPU_FREQ_STAT_DETAILS=y
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
#
# x86 CPU frequency scaling drivers
#
CONFIG_X86_INTEL_PSTATE=y
CONFIG_X86_PCC_CPUFREQ=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_X86_ACPI_CPUFREQ_CPB=y
CONFIG_X86_POWERNOW_K8=y
# CONFIG_X86_AMD_FREQ_SENSITIVITY is not set
CONFIG_X86_SPEEDSTEP_CENTRINO=y
# CONFIG_X86_P4_CLOCKMOD is not set
#
# shared options
#
# CONFIG_X86_SPEEDSTEP_LIB is not set
CONFIG_CPU_IDLE=y
# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set
CONFIG_CPU_IDLE_GOV_LADDER=y
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
CONFIG_INTEL_IDLE=y
#
# Memory power savings
#
# CONFIG_I7300_IDLE is not set
#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_PCI_XEN=y
CONFIG_PCI_DOMAINS=y
# CONFIG_PCI_CNB20LE_QUIRK is not set
CONFIG_PCIEPORTBUS=y
CONFIG_HOTPLUG_PCI_PCIE=y
CONFIG_PCIEAER=y
# CONFIG_PCIE_ECRC is not set
# CONFIG_PCIEAER_INJECT is not set
CONFIG_PCIEASPM=y
# CONFIG_PCIEASPM_DEBUG is not set
CONFIG_PCIEASPM_DEFAULT=y
# CONFIG_PCIEASPM_POWERSAVE is not set
# CONFIG_PCIEASPM_PERFORMANCE is not set
CONFIG_PCIE_PME=y
CONFIG_ARCH_SUPPORTS_MSI=y
CONFIG_PCI_MSI=y
# CONFIG_PCI_DEBUG is not set
CONFIG_PCI_REALLOC_ENABLE_AUTO=y
# CONFIG_PCI_STUB is not set
# CONFIG_XEN_PCIDEV_FRONTEND is not set
CONFIG_HT_IRQ=y
CONFIG_PCI_ATS=y
CONFIG_PCI_IOV=y
CONFIG_PCI_PRI=y
CONFIG_PCI_PASID=y
CONFIG_PCI_IOAPIC=y
CONFIG_PCI_LABEL=y
#
# PCI host controller drivers
#
CONFIG_ISA_DMA_API=y
CONFIG_AMD_NB=y
# CONFIG_PCCARD is not set
CONFIG_HOTPLUG_PCI=y
# CONFIG_HOTPLUG_PCI_ACPI is not set
CONFIG_HOTPLUG_PCI_CPCI=y
# CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set
# CONFIG_HOTPLUG_PCI_CPCI_GENERIC is not set
# CONFIG_HOTPLUG_PCI_SHPC is not set
CONFIG_RAPIDIO=y
CONFIG_RAPIDIO_TSI721=y
CONFIG_RAPIDIO_DISC_TIMEOUT=30
# CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS is not set
CONFIG_RAPIDIO_DMA_ENGINE=y
# CONFIG_RAPIDIO_DEBUG is not set
# CONFIG_RAPIDIO_ENUM_BASIC is not set
CONFIG_RAPIDIO_TSI57X=y
CONFIG_RAPIDIO_CPS_XX=y
CONFIG_RAPIDIO_TSI568=y
CONFIG_RAPIDIO_CPS_GEN2=y
#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y
# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
CONFIG_BINFMT_SCRIPT=y
# CONFIG_HAVE_AOUT is not set
# CONFIG_BINFMT_MISC is not set
CONFIG_COREDUMP=y
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
CONFIG_X86_X32=y
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_KEYS_COMPAT=y
CONFIG_HAVE_TEXT_POKE_SMP=y
CONFIG_X86_DEV_DMA_OPS=y
CONFIG_NET=y
CONFIG_COMPAT_NETLINK_MESSAGES=y
#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_DIAG is not set
CONFIG_UNIX=y
# CONFIG_UNIX_DIAG is not set
# CONFIG_XFRM_USER is not set
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_IP_FIB_TRIE_STATS=y
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_VERBOSE=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
# CONFIG_IP_PNP_BOOTP is not set
# CONFIG_IP_PNP_RARP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE_DEMUX is not set
# CONFIG_NET_IP_TUNNEL is not set
CONFIG_IP_MROUTE=y
# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
# CONFIG_ARPD is not set
CONFIG_SYN_COOKIES=y
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
# CONFIG_INET_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET_XFRM_MODE_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_BEET is not set
CONFIG_INET_LRO=y
# CONFIG_INET_DIAG is not set
CONFIG_TCP_CONG_ADVANCED=y
# CONFIG_TCP_CONG_BIC is not set
CONFIG_TCP_CONG_CUBIC=y
# CONFIG_TCP_CONG_WESTWOOD is not set
# CONFIG_TCP_CONG_HTCP is not set
# CONFIG_TCP_CONG_HSTCP is not set
# CONFIG_TCP_CONG_HYBLA is not set
# CONFIG_TCP_CONG_VEGAS is not set
# CONFIG_TCP_CONG_SCALABLE is not set
# CONFIG_TCP_CONG_LP is not set
# CONFIG_TCP_CONG_VENO is not set
# CONFIG_TCP_CONG_YEAH is not set
# CONFIG_TCP_CONG_ILLINOIS is not set
CONFIG_DEFAULT_CUBIC=y
# CONFIG_DEFAULT_RENO is not set
CONFIG_DEFAULT_TCP_CONG="cubic"
CONFIG_TCP_MD5SIG=y
CONFIG_IPV6=y
CONFIG_IPV6_PRIVACY=y
CONFIG_IPV6_ROUTER_PREF=y
CONFIG_IPV6_ROUTE_INFO=y
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
# CONFIG_INET6_AH is not set
# CONFIG_INET6_ESP is not set
# CONFIG_INET6_IPCOMP is not set
# CONFIG_IPV6_MIP6 is not set
# CONFIG_INET6_XFRM_TUNNEL is not set
# CONFIG_INET6_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET6_XFRM_MODE_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_BEET is not set
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
# CONFIG_IPV6_SIT is not set
# CONFIG_IPV6_TUNNEL is not set
# CONFIG_IPV6_GRE is not set
CONFIG_IPV6_MULTIPLE_TABLES=y
CONFIG_IPV6_SUBTREES=y
CONFIG_IPV6_MROUTE=y
CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
CONFIG_IPV6_PIMSM_V2=y
CONFIG_NETLABEL=y
CONFIG_NETWORK_SECMARK=y
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
CONFIG_NETFILTER_ADVANCED=y
#
# Core Netfilter Configuration
#
# CONFIG_NETFILTER_NETLINK_ACCT is not set
# CONFIG_NETFILTER_NETLINK_QUEUE is not set
# CONFIG_NETFILTER_NETLINK_LOG is not set
# CONFIG_NF_CONNTRACK is not set
# CONFIG_NETFILTER_XTABLES is not set
# CONFIG_IP_VS is not set
#
# IP: Netfilter Configuration
#
# CONFIG_NF_DEFRAG_IPV4 is not set
# CONFIG_IP_NF_IPTABLES is not set
# CONFIG_IP_NF_ARPTABLES is not set
#
# IPv6: Netfilter Configuration
#
# CONFIG_NF_DEFRAG_IPV6 is not set
# CONFIG_IP6_NF_IPTABLES is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_RDS is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_L2TP is not set
# CONFIG_BRIDGE is not set
CONFIG_HAVE_NET_DSA=y
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
# CONFIG_IEEE802154 is not set
CONFIG_NET_SCHED=y
#
# Queueing/Scheduling
#
# CONFIG_NET_SCH_CBQ is not set
CONFIG_NET_SCH_HTB=m
# CONFIG_NET_SCH_HFSC is not set
# CONFIG_NET_SCH_PRIO is not set
# CONFIG_NET_SCH_MULTIQ is not set
# CONFIG_NET_SCH_RED is not set
# CONFIG_NET_SCH_SFB is not set
# CONFIG_NET_SCH_SFQ is not set
# CONFIG_NET_SCH_TEQL is not set
# CONFIG_NET_SCH_TBF is not set
# CONFIG_NET_SCH_GRED is not set
# CONFIG_NET_SCH_DSMARK is not set
# CONFIG_NET_SCH_NETEM is not set
# CONFIG_NET_SCH_DRR is not set
# CONFIG_NET_SCH_MQPRIO is not set
# CONFIG_NET_SCH_CHOKE is not set
# CONFIG_NET_SCH_QFQ is not set
CONFIG_NET_SCH_CODEL=m
CONFIG_NET_SCH_FQ_CODEL=m
# CONFIG_NET_SCH_INGRESS is not set
# CONFIG_NET_SCH_PLUG is not set
#
# Classification
#
CONFIG_NET_CLS=y
# CONFIG_NET_CLS_BASIC is not set
# CONFIG_NET_CLS_TCINDEX is not set
# CONFIG_NET_CLS_ROUTE4 is not set
# CONFIG_NET_CLS_FW is not set
# CONFIG_NET_CLS_U32 is not set
# CONFIG_NET_CLS_RSVP is not set
# CONFIG_NET_CLS_RSVP6 is not set
# CONFIG_NET_CLS_FLOW is not set
# CONFIG_NET_CLS_CGROUP is not set
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
# CONFIG_NET_EMATCH_CMP is not set
# CONFIG_NET_EMATCH_NBYTE is not set
# CONFIG_NET_EMATCH_U32 is not set
# CONFIG_NET_EMATCH_META is not set
# CONFIG_NET_EMATCH_TEXT is not set
CONFIG_NET_CLS_ACT=y
# CONFIG_NET_ACT_POLICE is not set
# CONFIG_NET_ACT_GACT is not set
# CONFIG_NET_ACT_MIRRED is not set
# CONFIG_NET_ACT_NAT is not set
# CONFIG_NET_ACT_PEDIT is not set
# CONFIG_NET_ACT_SIMP is not set
# CONFIG_NET_ACT_SKBEDIT is not set
# CONFIG_NET_ACT_CSUM is not set
CONFIG_NET_SCH_FIFO=y
CONFIG_DCB=y
CONFIG_DNS_RESOLVER=y
# CONFIG_BATMAN_ADV is not set
# CONFIG_OPENVSWITCH is not set
# CONFIG_VSOCKETS is not set
# CONFIG_NETLINK_MMAP is not set
# CONFIG_NETLINK_DIAG is not set
# CONFIG_NET_MPLS_GSO is not set
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_XPS=y
# CONFIG_NETPRIO_CGROUP is not set
CONFIG_NET_LL_RX_POLL=y
CONFIG_BQL=y
CONFIG_BPF_JIT=y
CONFIG_NET_FLOW_LIMIT=y
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_TCPPROBE is not set
# CONFIG_NET_DROP_MONITOR is not set
CONFIG_HAMRADIO=y
#
# Packet Radio protocols
#
# CONFIG_AX25 is not set
# CONFIG_CAN is not set
# CONFIG_IRDA is not set
CONFIG_BT=m
CONFIG_BT_RFCOMM=m
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=m
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
# CONFIG_BT_HIDP is not set
#
# Bluetooth device drivers
#
CONFIG_BT_HCIBTUSB=m
# CONFIG_BT_HCIBTSDIO is not set
# CONFIG_BT_HCIUART is not set
# CONFIG_BT_HCIBCM203X is not set
# CONFIG_BT_HCIBPA10X is not set
# CONFIG_BT_HCIBFUSB is not set
# CONFIG_BT_HCIVHCI is not set
# CONFIG_BT_MRVL is not set
# CONFIG_BT_ATH3K is not set
# CONFIG_AF_RXRPC is not set
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_WEXT_CORE=y
CONFIG_WEXT_PROC=y
CONFIG_CFG80211=m
CONFIG_NL80211_TESTMODE=y
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
# CONFIG_CFG80211_REG_DEBUG is not set
# CONFIG_CFG80211_CERTIFICATION_ONUS is not set
CONFIG_CFG80211_DEFAULT_PS=y
CONFIG_CFG80211_DEBUGFS=y
# CONFIG_CFG80211_INTERNAL_REGDB is not set
CONFIG_CFG80211_WEXT=y
# CONFIG_LIB80211 is not set
CONFIG_MAC80211=m
CONFIG_MAC80211_HAS_RC=y
CONFIG_MAC80211_RC_PID=y
CONFIG_MAC80211_RC_MINSTREL=y
CONFIG_MAC80211_RC_MINSTREL_HT=y
# CONFIG_MAC80211_RC_DEFAULT_PID is not set
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
CONFIG_MAC80211_MESH=y
CONFIG_MAC80211_LEDS=y
CONFIG_MAC80211_DEBUGFS=y
# CONFIG_MAC80211_MESSAGE_TRACING is not set
# CONFIG_MAC80211_DEBUG_MENU is not set
# CONFIG_WIMAX is not set
CONFIG_RFKILL=y
CONFIG_RFKILL_LEDS=y
CONFIG_RFKILL_INPUT=y
# CONFIG_RFKILL_REGULATOR is not set
# CONFIG_NET_9P is not set
# CONFIG_CAIF is not set
# CONFIG_CEPH_LIB is not set
# CONFIG_NFC is not set
CONFIG_HAVE_BPF_JIT=y
#
# Device Drivers
#
#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER_PATH=""
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
# CONFIG_STANDALONE is not set
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
CONFIG_FIRMWARE_IN_KERNEL=y
CONFIG_EXTRA_FIRMWARE=""
CONFIG_FW_LOADER_USER_HELPER=y
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
CONFIG_SYS_HYPERVISOR=y
# CONFIG_GENERIC_CPU_DEVICES is not set
CONFIG_REGMAP=y
CONFIG_REGMAP_I2C=y
CONFIG_REGMAP_SPI=y
CONFIG_REGMAP_IRQ=y
CONFIG_DMA_SHARED_BUFFER=y
#
# Bus devices
#
CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
# CONFIG_MTD is not set
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
# CONFIG_PARPORT_SERIAL is not set
CONFIG_PARPORT_PC_FIFO=y
# CONFIG_PARPORT_PC_SUPERIO is not set
# CONFIG_PARPORT_GSC is not set
# CONFIG_PARPORT_AX88796 is not set
CONFIG_PARPORT_1284=y
CONFIG_PNP=y
# CONFIG_PNP_DEBUG_MESSAGES is not set
#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_FD is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_DRBD is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_NVME is not set
# CONFIG_BLK_DEV_SX8 is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=65536
# CONFIG_BLK_DEV_XIP is not set
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_XEN_BLKDEV_FRONTEND=y
# CONFIG_XEN_BLKDEV_BACKEND is not set
CONFIG_VIRTIO_BLK=y
# CONFIG_BLK_DEV_HD is not set
# CONFIG_BLK_DEV_RBD is not set
# CONFIG_BLK_DEV_RSXX is not set
# CONFIG_BLOCKCONSOLE is not set
#
# Misc devices
#
# CONFIG_SENSORS_LIS3LV02D is not set
# CONFIG_AD525X_DPOT is not set
# CONFIG_DUMMY_IRQ is not set
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_INTEL_MID_PTI is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
# CONFIG_ATMEL_SSC is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
# CONFIG_APDS9802ALS is not set
# CONFIG_ISL29003 is not set
# CONFIG_ISL29020 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_SENSORS_BH1780 is not set
# CONFIG_SENSORS_BH1770 is not set
# CONFIG_SENSORS_APDS990X is not set
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
# CONFIG_TI_DAC7512 is not set
# CONFIG_VMWARE_BALLOON is not set
# CONFIG_BMP085_I2C is not set
# CONFIG_BMP085_SPI is not set
# CONFIG_PCH_PHUB is not set
# CONFIG_USB_SWITCH_FSA9480 is not set
# CONFIG_LATTICE_ECP3_CONFIG is not set
# CONFIG_SRAM is not set
# CONFIG_C2PORT is not set
#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
# CONFIG_EEPROM_AT25 is not set
# CONFIG_EEPROM_LEGACY is not set
# CONFIG_EEPROM_MAX6875 is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_EEPROM_93XX46 is not set
# CONFIG_CB710_CORE is not set
#
# Texas Instruments shared transport line discipline
#
# CONFIG_TI_ST is not set
# CONFIG_SENSORS_LIS3_I2C is not set
#
# Altera FPGA firmware download module
#
# CONFIG_ALTERA_STAPL is not set
CONFIG_INTEL_MEI=y
CONFIG_INTEL_MEI_ME=y
# CONFIG_VMWARE_VMCI is not set
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set
#
# SCSI device support
#
CONFIG_SCSI_MOD=y
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_TGT is not set
# CONFIG_SCSI_NETLINK is not set
CONFIG_SCSI_PROC_FS=y
#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
# CONFIG_BLK_DEV_SR_VENDOR is not set
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
CONFIG_SCSI_SCAN_ASYNC=y
#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
CONFIG_SCSI_LOWLEVEL=y
# CONFIG_ISCSI_TCP is not set
# CONFIG_ISCSI_BOOT_SYSFS is not set
# CONFIG_SCSI_CXGB3_ISCSI is not set
# CONFIG_SCSI_CXGB4_ISCSI is not set
# CONFIG_SCSI_BNX2_ISCSI is not set
# CONFIG_SCSI_BNX2X_FCOE is not set
# CONFIG_BE2ISCSI is not set
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_HPSA is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_3W_SAS is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_AIC94XX is not set
# CONFIG_SCSI_MVSAS is not set
# CONFIG_SCSI_MVUMI is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
CONFIG_MEGARAID_NEWGEN=y
# CONFIG_MEGARAID_MM is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
# CONFIG_SCSI_MPT2SAS is not set
# CONFIG_SCSI_MPT3SAS is not set
# CONFIG_SCSI_UFSHCD is not set
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_VMWARE_PVSCSI is not set
# CONFIG_LIBFC is not set
# CONFIG_LIBFCOE is not set
# CONFIG_FCOE is not set
# CONFIG_FCOE_FNIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_ISCI is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_PPA is not set
# CONFIG_SCSI_IMM is not set
# CONFIG_SCSI_STEX is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_FC is not set
# CONFIG_SCSI_QLA_ISCSI is not set
# CONFIG_SCSI_LPFC is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_DEBUG is not set
# CONFIG_SCSI_PMCRAID is not set
# CONFIG_SCSI_PM8001 is not set
# CONFIG_SCSI_SRP is not set
# CONFIG_SCSI_BFA_FC is not set
# CONFIG_SCSI_VIRTIO is not set
# CONFIG_SCSI_CHELSIO_FCOE is not set
# CONFIG_SCSI_DH is not set
# CONFIG_SCSI_OSD_INITIATOR is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_ATA_VERBOSE_ERROR=y
CONFIG_ATA_ACPI=y
# CONFIG_SATA_ZPODD is not set
CONFIG_SATA_PMP=y
#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=y
# CONFIG_SATA_AHCI_PLATFORM is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_SATA_ACARD_AHCI is not set
# CONFIG_SATA_SIL24 is not set
CONFIG_ATA_SFF=y
#
# SFF controllers with custom DMA interface
#
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_SX4 is not set
CONFIG_ATA_BMDMA=y
#
# SATA SFF controllers with BMDMA
#
CONFIG_ATA_PIIX=y
# CONFIG_SATA_HIGHBANK is not set
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_RCAR is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_SVW is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set
#
# PATA SFF controllers with BMDMA
#
# CONFIG_PATA_ALI is not set
# CONFIG_PATA_AMD is not set
# CONFIG_PATA_ARASAN_CF is not set
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_ATP867X is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CS5520 is not set
# CONFIG_PATA_CS5530 is not set
# CONFIG_PATA_CS5536 is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87415 is not set
# CONFIG_PATA_OLDPIIX is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RDC is not set
# CONFIG_PATA_SC1200 is not set
# CONFIG_PATA_SCH is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_SIL680 is not set
CONFIG_PATA_SIS=y
# CONFIG_PATA_TOSHIBA is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set
#
# PIO-only SFF controllers
#
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_PLATFORM is not set
# CONFIG_PATA_RZ1000 is not set
#
# Generic fallback / legacy drivers
#
CONFIG_PATA_ACPI=y
CONFIG_ATA_GENERIC=y
# CONFIG_PATA_LEGACY is not set
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_AUTODETECT=y
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID10 is not set
# CONFIG_MD_RAID456 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_MD_FAULTY is not set
# CONFIG_BCACHE is not set
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_DEBUG is not set
# CONFIG_DM_CRYPT is not set
# CONFIG_DM_SNAPSHOT is not set
# CONFIG_DM_THIN_PROVISIONING is not set
# CONFIG_DM_CACHE is not set
# CONFIG_DM_MIRROR is not set
# CONFIG_DM_RAID is not set
# CONFIG_DM_ZERO is not set
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
CONFIG_DM_UEVENT=y
# CONFIG_DM_FLAKEY is not set
# CONFIG_DM_VERITY is not set
# CONFIG_TARGET_CORE is not set
CONFIG_FUSION=y
# CONFIG_FUSION_SPI is not set
# CONFIG_FUSION_FC is not set
# CONFIG_FUSION_SAS is not set
CONFIG_FUSION_MAX_SGE=128
CONFIG_FUSION_LOGGING=y
#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
# CONFIG_I2O is not set
CONFIG_MACINTOSH_DRIVERS=y
CONFIG_MAC_EMUMOUSEBTN=m
CONFIG_NETDEVICES=y
CONFIG_MII=m
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
# CONFIG_DUMMY is not set
# CONFIG_EQUALIZER is not set
CONFIG_NET_FC=y
# CONFIG_IFB is not set
# CONFIG_NET_TEAM is not set
# CONFIG_MACVLAN is not set
# CONFIG_VXLAN is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_RIONET is not set
CONFIG_TUN=y
# CONFIG_VETH is not set
CONFIG_VIRTIO_NET=y
# CONFIG_ARCNET is not set
#
# CAIF transport drivers
#
# CONFIG_VHOST_NET is not set
#
# Distributed Switch Architecture drivers
#
# CONFIG_NET_DSA_MV88E6XXX is not set
# CONFIG_NET_DSA_MV88E6060 is not set
# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
# CONFIG_NET_DSA_MV88E6131 is not set
# CONFIG_NET_DSA_MV88E6123_61_65 is not set
CONFIG_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
# CONFIG_VORTEX is not set
# CONFIG_TYPHOON is not set
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_NET_VENDOR_ALTEON=y
# CONFIG_ACENIC is not set
CONFIG_NET_VENDOR_AMD=y
# CONFIG_AMD8111_ETH is not set
# CONFIG_PCNET32 is not set
CONFIG_NET_VENDOR_ATHEROS=y
# CONFIG_ATL2 is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
# CONFIG_ATL1C is not set
# CONFIG_ALX is not set
CONFIG_NET_CADENCE=y
# CONFIG_ARM_AT91_ETHER is not set
# CONFIG_MACB is not set
CONFIG_NET_VENDOR_BROADCOM=y
# CONFIG_B44 is not set
# CONFIG_BNX2 is not set
# CONFIG_CNIC is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2X is not set
CONFIG_NET_VENDOR_BROCADE=y
# CONFIG_BNA is not set
# CONFIG_NET_CALXEDA_XGMAC is not set
CONFIG_NET_VENDOR_CHELSIO=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_CHELSIO_T4 is not set
# CONFIG_CHELSIO_T4VF is not set
CONFIG_NET_VENDOR_CISCO=y
# CONFIG_ENIC is not set
# CONFIG_DNET is not set
CONFIG_NET_VENDOR_DEC=y
CONFIG_NET_TULIP=y
# CONFIG_DE2104X is not set
# CONFIG_TULIP is not set
# CONFIG_DE4X5 is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_DM9102 is not set
# CONFIG_ULI526X is not set
CONFIG_NET_VENDOR_DLINK=y
# CONFIG_DL2K is not set
# CONFIG_SUNDANCE is not set
CONFIG_NET_VENDOR_EMULEX=y
# CONFIG_BE2NET is not set
CONFIG_NET_VENDOR_EXAR=y
# CONFIG_S2IO is not set
# CONFIG_VXGE is not set
CONFIG_NET_VENDOR_HP=y
# CONFIG_HP100 is not set
CONFIG_NET_VENDOR_INTEL=y
# CONFIG_E100 is not set
# CONFIG_E1000 is not set
# CONFIG_E1000E is not set
# CONFIG_IGB is not set
# CONFIG_IGBVF is not set
# CONFIG_IXGB is not set
# CONFIG_IXGBE is not set
# CONFIG_IXGBEVF is not set
CONFIG_NET_VENDOR_I825XX=y
# CONFIG_IP1000 is not set
# CONFIG_JME is not set
CONFIG_NET_VENDOR_MARVELL=y
# CONFIG_MVMDIO is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
CONFIG_NET_VENDOR_MELLANOX=y
# CONFIG_MLX4_EN is not set
# CONFIG_MLX4_CORE is not set
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8842 is not set
# CONFIG_KS8851 is not set
# CONFIG_KS8851_MLL is not set
# CONFIG_KSZ884X_PCI is not set
CONFIG_NET_VENDOR_MICROCHIP=y
# CONFIG_ENC28J60 is not set
CONFIG_NET_VENDOR_MYRI=y
# CONFIG_MYRI10GE is not set
# CONFIG_FEALNX is not set
CONFIG_NET_VENDOR_NATSEMI=y
# CONFIG_NATSEMI is not set
# CONFIG_NS83820 is not set
CONFIG_NET_VENDOR_8390=y
# CONFIG_NE2K_PCI is not set
CONFIG_NET_VENDOR_NVIDIA=y
# CONFIG_FORCEDETH is not set
CONFIG_NET_VENDOR_OKI=y
# CONFIG_PCH_GBE is not set
# CONFIG_ETHOC is not set
CONFIG_NET_PACKET_ENGINE=y
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
CONFIG_NET_VENDOR_QLOGIC=y
# CONFIG_QLA3XXX is not set
# CONFIG_QLCNIC is not set
# CONFIG_QLGE is not set
# CONFIG_NETXEN_NIC is not set
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_ATP is not set
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
CONFIG_R8169=m
# CONFIG_SH_ETH is not set
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
CONFIG_NET_VENDOR_SEEQ=y
CONFIG_NET_VENDOR_SILAN=y
# CONFIG_SC92031 is not set
CONFIG_NET_VENDOR_SIS=y
# CONFIG_SIS900 is not set
# CONFIG_SIS190 is not set
# CONFIG_SFC is not set
CONFIG_NET_VENDOR_SMSC=y
# CONFIG_EPIC100 is not set
# CONFIG_SMSC911X is not set
# CONFIG_SMSC9420 is not set
CONFIG_NET_VENDOR_STMICRO=y
# CONFIG_STMMAC_ETH is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TLAN is not set
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_NET_VENDOR_WIZNET=y
# CONFIG_WIZNET_W5100 is not set
# CONFIG_WIZNET_W5300 is not set
CONFIG_FDDI=y
# CONFIG_DEFXX is not set
# CONFIG_SKFP is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
CONFIG_PHYLIB=y
#
# MII PHY device drivers
#
CONFIG_AT803X_PHY=y
CONFIG_AMD_PHY=y
CONFIG_MARVELL_PHY=y
CONFIG_DAVICOM_PHY=y
CONFIG_QSEMI_PHY=y
CONFIG_LXT_PHY=y
CONFIG_CICADA_PHY=y
CONFIG_VITESSE_PHY=y
CONFIG_SMSC_PHY=y
CONFIG_BROADCOM_PHY=y
CONFIG_BCM87XX_PHY=y
CONFIG_ICPLUS_PHY=y
CONFIG_REALTEK_PHY=y
CONFIG_NATIONAL_PHY=y
CONFIG_STE10XP=y
CONFIG_LSI_ET1011C_PHY=y
CONFIG_MICREL_PHY=y
CONFIG_FIXED_PHY=y
CONFIG_MDIO_BITBANG=y
CONFIG_MDIO_GPIO=y
# CONFIG_MICREL_KS8995MA is not set
# CONFIG_PLIP is not set
CONFIG_PPP=y
# CONFIG_PPP_BSDCOMP is not set
# CONFIG_PPP_DEFLATE is not set
CONFIG_PPP_FILTER=y
# CONFIG_PPP_MPPE is not set
CONFIG_PPP_MULTILINK=y
# CONFIG_PPPOE is not set
# CONFIG_PPP_ASYNC is not set
# CONFIG_PPP_SYNC_TTY is not set
# CONFIG_SLIP is not set
CONFIG_SLHC=y
#
# USB Network Adapters
#
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_RTL8152 is not set
# CONFIG_USB_USBNET is not set
# CONFIG_USB_HSO is not set
# CONFIG_USB_IPHETH is not set
CONFIG_WLAN=y
# CONFIG_LIBERTAS_THINFIRM is not set
# CONFIG_AIRO is not set
# CONFIG_ATMEL is not set
# CONFIG_AT76C50X_USB is not set
# CONFIG_PRISM54 is not set
# CONFIG_USB_ZD1201 is not set
# CONFIG_USB_NET_RNDIS_WLAN is not set
# CONFIG_RTL8180 is not set
# CONFIG_RTL8187 is not set
# CONFIG_ADM8211 is not set
# CONFIG_MAC80211_HWSIM is not set
# CONFIG_MWL8K is not set
# CONFIG_ATH_CARDS is not set
# CONFIG_B43 is not set
# CONFIG_B43LEGACY is not set
# CONFIG_BRCMFMAC is not set
# CONFIG_HOSTAP is not set
# CONFIG_IPW2100 is not set
# CONFIG_IPW2200 is not set
CONFIG_IWLWIFI=m
CONFIG_IWLDVM=m
# CONFIG_IWLMVM is not set
CONFIG_IWLWIFI_OPMODE_MODULAR=y
#
# Debugging Options
#
CONFIG_IWLWIFI_DEBUG=y
CONFIG_IWLWIFI_DEBUGFS=y
# CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE is not set
CONFIG_IWLWIFI_DEVICE_TRACING=y
CONFIG_IWLWIFI_DEVICE_TESTMODE=y
# CONFIG_IWLWIFI_P2P is not set
# CONFIG_IWL4965 is not set
# CONFIG_IWL3945 is not set
# CONFIG_LIBERTAS is not set
# CONFIG_HERMES is not set
# CONFIG_P54_COMMON is not set
# CONFIG_RT2X00 is not set
# CONFIG_RTLWIFI is not set
CONFIG_WL_TI=y
# CONFIG_WL1251 is not set
# CONFIG_WL12XX is not set
# CONFIG_WL18XX is not set
# CONFIG_WLCORE is not set
# CONFIG_ZD1211RW is not set
# CONFIG_MWIFIEX is not set
# CONFIG_CW1200 is not set
#
# Enable WiMAX (Networking options) to see the WiMAX drivers
#
CONFIG_WAN=y
# CONFIG_HDLC is not set
# CONFIG_DLCI is not set
# CONFIG_SBNI is not set
CONFIG_XEN_NETDEV_FRONTEND=y
# CONFIG_XEN_NETDEV_BACKEND is not set
# CONFIG_VMXNET3 is not set
CONFIG_ISDN=y
# CONFIG_ISDN_I4L is not set
# CONFIG_ISDN_CAPI is not set
# CONFIG_ISDN_DRV_GIGASET is not set
# CONFIG_HYSDN is not set
# CONFIG_MISDN is not set
#
# Input device support
#
CONFIG_INPUT=y
# CONFIG_INPUT_FF_MEMLESS is not set
# CONFIG_INPUT_POLLDEV is not set
# CONFIG_INPUT_SPARSEKMAP is not set
# CONFIG_INPUT_MATRIXKMAP is not set
#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=m
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set
#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5520 is not set
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_GPIO is not set
# CONFIG_KEYBOARD_GPIO_POLLED is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 is not set
# CONFIG_KEYBOARD_MATRIX is not set
# CONFIG_KEYBOARD_LM8323 is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MCS is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_STMPE is not set
# CONFIG_KEYBOARD_TC3589X is not set
# CONFIG_KEYBOARD_XTKBD is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_CYPRESS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
CONFIG_MOUSE_PS2_ELANTECH=y
CONFIG_MOUSE_PS2_SENTELIC=y
CONFIG_MOUSE_PS2_TOUCHKIT=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_BCM5974 is not set
# CONFIG_MOUSE_CYAPA is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_MOUSE_GPIO is not set
# CONFIG_MOUSE_SYNAPTICS_I2C is not set
# CONFIG_MOUSE_SYNAPTICS_USB is not set
CONFIG_INPUT_JOYSTICK=y
# CONFIG_JOYSTICK_ANALOG is not set
# CONFIG_JOYSTICK_A3D is not set
# CONFIG_JOYSTICK_ADI is not set
# CONFIG_JOYSTICK_COBRA is not set
# CONFIG_JOYSTICK_GF2K is not set
# CONFIG_JOYSTICK_GRIP is not set
# CONFIG_JOYSTICK_GRIP_MP is not set
# CONFIG_JOYSTICK_GUILLEMOT is not set
# CONFIG_JOYSTICK_INTERACT is not set
# CONFIG_JOYSTICK_SIDEWINDER is not set
# CONFIG_JOYSTICK_TMDC is not set
# CONFIG_JOYSTICK_IFORCE is not set
# CONFIG_JOYSTICK_WARRIOR is not set
# CONFIG_JOYSTICK_MAGELLAN is not set
# CONFIG_JOYSTICK_SPACEORB is not set
# CONFIG_JOYSTICK_SPACEBALL is not set
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDJOY is not set
# CONFIG_JOYSTICK_ZHENHUA is not set
# CONFIG_JOYSTICK_DB9 is not set
# CONFIG_JOYSTICK_GAMECON is not set
# CONFIG_JOYSTICK_TURBOGRAFX is not set
# CONFIG_JOYSTICK_AS5011 is not set
# CONFIG_JOYSTICK_JOYDUMP is not set
# CONFIG_JOYSTICK_XPAD is not set
# CONFIG_JOYSTICK_WALKERA0701 is not set
CONFIG_INPUT_TABLET=y
# CONFIG_TABLET_USB_ACECAD is not set
# CONFIG_TABLET_USB_AIPTEK is not set
# CONFIG_TABLET_USB_GTCO is not set
# CONFIG_TABLET_USB_HANWANG is not set
# CONFIG_TABLET_USB_KBTAB is not set
# CONFIG_TABLET_USB_WACOM is not set
CONFIG_INPUT_TOUCHSCREEN=y
# CONFIG_TOUCHSCREEN_88PM860X is not set
# CONFIG_TOUCHSCREEN_ADS7846 is not set
# CONFIG_TOUCHSCREEN_AD7877 is not set
# CONFIG_TOUCHSCREEN_AD7879 is not set
# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
# CONFIG_TOUCHSCREEN_BU21013 is not set
# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
# CONFIG_TOUCHSCREEN_DA9034 is not set
# CONFIG_TOUCHSCREEN_DA9052 is not set
# CONFIG_TOUCHSCREEN_DYNAPRO is not set
# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
# CONFIG_TOUCHSCREEN_EETI is not set
# CONFIG_TOUCHSCREEN_FUJITSU is not set
# CONFIG_TOUCHSCREEN_ILI210X is not set
# CONFIG_TOUCHSCREEN_GUNZE is not set
# CONFIG_TOUCHSCREEN_ELO is not set
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
# CONFIG_TOUCHSCREEN_WACOM_I2C is not set
# CONFIG_TOUCHSCREEN_MAX11801 is not set
# CONFIG_TOUCHSCREEN_MCS5000 is not set
# CONFIG_TOUCHSCREEN_MMS114 is not set
# CONFIG_TOUCHSCREEN_MTOUCH is not set
# CONFIG_TOUCHSCREEN_INEXIO is not set
# CONFIG_TOUCHSCREEN_MK712 is not set
# CONFIG_TOUCHSCREEN_PENMOUNT is not set
# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
# CONFIG_TOUCHSCREEN_PIXCIR is not set
# CONFIG_TOUCHSCREEN_WM831X is not set
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
# CONFIG_TOUCHSCREEN_TSC2005 is not set
# CONFIG_TOUCHSCREEN_TSC2007 is not set
# CONFIG_TOUCHSCREEN_PCAP is not set
# CONFIG_TOUCHSCREEN_ST1232 is not set
# CONFIG_TOUCHSCREEN_STMPE is not set
# CONFIG_TOUCHSCREEN_TPS6507X is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_88PM860X_ONKEY is not set
# CONFIG_INPUT_AD714X is not set
# CONFIG_INPUT_BMA150 is not set
# CONFIG_INPUT_PCSPKR is not set
# CONFIG_INPUT_MAX8925_ONKEY is not set
# CONFIG_INPUT_MMA8450 is not set
# CONFIG_INPUT_MPU3050 is not set
# CONFIG_INPUT_APANEL is not set
# CONFIG_INPUT_GP2A is not set
# CONFIG_INPUT_GPIO_TILT_POLLED is not set
# CONFIG_INPUT_ATLAS_BTNS is not set
# CONFIG_INPUT_ATI_REMOTE2 is not set
# CONFIG_INPUT_KEYSPAN_REMOTE is not set
# CONFIG_INPUT_KXTJ9 is not set
# CONFIG_INPUT_POWERMATE is not set
# CONFIG_INPUT_YEALINK is not set
# CONFIG_INPUT_CM109 is not set
# CONFIG_INPUT_TWL6040_VIBRA is not set
CONFIG_INPUT_UINPUT=y
# CONFIG_INPUT_PCF8574 is not set
# CONFIG_INPUT_PWM_BEEPER is not set
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
# CONFIG_INPUT_DA9052_ONKEY is not set
# CONFIG_INPUT_DA9055_ONKEY is not set
# CONFIG_INPUT_WM831X_ON is not set
# CONFIG_INPUT_PCAP is not set
# CONFIG_INPUT_ADXL34X is not set
# CONFIG_INPUT_IMS_PCU is not set
# CONFIG_INPUT_CMA3000 is not set
# CONFIG_INPUT_XEN_KBDDEV_FRONTEND is not set
#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PARKBD is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=m
# CONFIG_SERIO_ALTERA_PS2 is not set
# CONFIG_SERIO_PS2MULT is not set
# CONFIG_SERIO_ARC_PS2 is not set
# CONFIG_GAMEPORT is not set
#
# Character devices
#
CONFIG_TTY=y
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_VT_CONSOLE_SLEEP=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
CONFIG_UNIX98_PTYS=y
CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=0
CONFIG_SERIAL_NONSTANDARD=y
# CONFIG_ROCKETPORT is not set
# CONFIG_CYCLADES is not set
# CONFIG_MOXA_INTELLIO is not set
# CONFIG_MOXA_SMARTIO is not set
# CONFIG_SYNCLINK is not set
# CONFIG_SYNCLINKMP is not set
# CONFIG_SYNCLINK_GT is not set
# CONFIG_NOZOMI is not set
# CONFIG_ISI is not set
# CONFIG_N_HDLC is not set
# CONFIG_N_GSM is not set
# CONFIG_TRACE_SINK is not set
# CONFIG_DEVKMEM is not set
#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
CONFIG_SERIAL_8250_PNP=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_SERIAL_8250_DMA=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_NR_UARTS=48
CONFIG_SERIAL_8250_RUNTIME_UARTS=32
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
CONFIG_SERIAL_8250_RSA=y
# CONFIG_SERIAL_8250_DW is not set
#
# Non-8250 serial port support
#
CONFIG_SERIAL_KGDB_NMI=y
# CONFIG_SERIAL_MAX3100 is not set
CONFIG_SERIAL_MAX310X=y
# CONFIG_SERIAL_MFD_HSU is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_CONSOLE_POLL=y
# CONFIG_SERIAL_JSM is not set
CONFIG_SERIAL_SCCNXP=y
CONFIG_SERIAL_SCCNXP_CONSOLE=y
# CONFIG_SERIAL_TIMBERDALE is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
# CONFIG_SERIAL_IFX6X60 is not set
# CONFIG_SERIAL_PCH_UART is not set
# CONFIG_SERIAL_ARC is not set
# CONFIG_SERIAL_RP2 is not set
# CONFIG_SERIAL_FSL_LPUART is not set
CONFIG_TTY_PRINTK=y
CONFIG_PRINTER=m
# CONFIG_LP_CONSOLE is not set
CONFIG_PPDEV=m
CONFIG_HVC_DRIVER=y
CONFIG_HVC_IRQ=y
CONFIG_HVC_XEN=y
CONFIG_HVC_XEN_FRONTEND=y
# CONFIG_VIRTIO_CONSOLE is not set
# CONFIG_IPMI_HANDLER is not set
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
# CONFIG_HW_RANDOM_INTEL is not set
# CONFIG_HW_RANDOM_AMD is not set
# CONFIG_HW_RANDOM_VIA is not set
# CONFIG_HW_RANDOM_VIRTIO is not set
# CONFIG_HW_RANDOM_TPM is not set
# CONFIG_NVRAM is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_MWAVE is not set
# CONFIG_RAW_DRIVER is not set
CONFIG_HPET=y
CONFIG_HPET_MMAP=y
# CONFIG_HANGCHECK_TIMER is not set
CONFIG_TCG_TPM=y
# CONFIG_TCG_TIS is not set
# CONFIG_TCG_TIS_I2C_INFINEON is not set
# CONFIG_TCG_NSC is not set
# CONFIG_TCG_ATMEL is not set
# CONFIG_TCG_INFINEON is not set
# CONFIG_TCG_ST33_I2C is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
CONFIG_I2C=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
# CONFIG_I2C_CHARDEV is not set
# CONFIG_I2C_MUX is not set
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_ALGOBIT=m
#
# I2C Hardware Bus support
#
#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_ISMT is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
#
# ACPI drivers
#
# CONFIG_I2C_SCMI is not set
#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_CBUS_GPIO is not set
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_EG20T is not set
# CONFIG_I2C_GPIO is not set
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PCA_PLATFORM is not set
# CONFIG_I2C_PXA_PCI is not set
# CONFIG_I2C_SIMTEC is not set
# CONFIG_I2C_XILINX is not set
#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_DIOLAN_U2C is not set
# CONFIG_I2C_PARPORT is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB is not set
#
# Other I2C/SMBus bus drivers
#
# CONFIG_I2C_STUB is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
CONFIG_SPI=y
# CONFIG_SPI_DEBUG is not set
CONFIG_SPI_MASTER=y
#
# SPI Master Controller Drivers
#
# CONFIG_SPI_ALTERA is not set
# CONFIG_SPI_BITBANG is not set
# CONFIG_SPI_BUTTERFLY is not set
# CONFIG_SPI_GPIO is not set
# CONFIG_SPI_LM70_LLP is not set
# CONFIG_SPI_OC_TINY is not set
# CONFIG_SPI_PXA2XX is not set
# CONFIG_SPI_PXA2XX_PCI is not set
# CONFIG_SPI_SC18IS602 is not set
# CONFIG_SPI_TOPCLIFF_PCH is not set
# CONFIG_SPI_XCOMM is not set
# CONFIG_SPI_XILINX is not set
# CONFIG_SPI_DESIGNWARE is not set
#
# SPI Protocol Masters
#
# CONFIG_SPI_SPIDEV is not set
# CONFIG_SPI_TLE62X0 is not set
# CONFIG_HSI is not set
#
# PPS support
#
# CONFIG_PPS is not set
#
# PPS generators support
#
#
# PTP clock support
#
# CONFIG_PTP_1588_CLOCK is not set
#
# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
#
# CONFIG_PTP_1588_CLOCK_PCH is not set
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
CONFIG_GPIO_DEVRES=y
CONFIG_GPIOLIB=y
CONFIG_GPIO_ACPI=y
# CONFIG_DEBUG_GPIO is not set
# CONFIG_GPIO_SYSFS is not set
# CONFIG_GPIO_DA9052 is not set
# CONFIG_GPIO_DA9055 is not set
#
# Memory mapped GPIO drivers:
#
# CONFIG_GPIO_GENERIC_PLATFORM is not set
# CONFIG_GPIO_IT8761E is not set
# CONFIG_GPIO_TS5500 is not set
# CONFIG_GPIO_SCH is not set
# CONFIG_GPIO_ICH is not set
# CONFIG_GPIO_VX855 is not set
# CONFIG_GPIO_LYNXPOINT is not set
#
# I2C GPIO expanders:
#
# CONFIG_GPIO_MAX7300 is not set
# CONFIG_GPIO_MAX732X is not set
# CONFIG_GPIO_PCA953X is not set
# CONFIG_GPIO_PCF857X is not set
CONFIG_GPIO_RC5T583=y
CONFIG_GPIO_SX150X=y
CONFIG_GPIO_STMPE=y
CONFIG_GPIO_TC3589X=y
# CONFIG_GPIO_TPS65912 is not set
# CONFIG_GPIO_TWL6040 is not set
# CONFIG_GPIO_WM831X is not set
# CONFIG_GPIO_WM8350 is not set
# CONFIG_GPIO_WM8994 is not set
# CONFIG_GPIO_ADP5520 is not set
# CONFIG_GPIO_ADP5588 is not set
#
# PCI GPIO expanders:
#
# CONFIG_GPIO_BT8XX is not set
# CONFIG_GPIO_AMD8111 is not set
CONFIG_GPIO_LANGWELL=y
# CONFIG_GPIO_PCH is not set
# CONFIG_GPIO_ML_IOH is not set
# CONFIG_GPIO_RDC321X is not set
#
# SPI GPIO expanders:
#
# CONFIG_GPIO_MAX7301 is not set
# CONFIG_GPIO_MCP23S08 is not set
# CONFIG_GPIO_MC33880 is not set
# CONFIG_GPIO_74X164 is not set
#
# AC97 GPIO expanders:
#
#
# MODULbus GPIO expanders:
#
# CONFIG_GPIO_PALMAS is not set
CONFIG_GPIO_TPS6586X=y
CONFIG_GPIO_TPS65910=y
#
# USB GPIO expanders:
#
# CONFIG_W1 is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_PDA_POWER is not set
# CONFIG_MAX8925_POWER is not set
# CONFIG_WM831X_BACKUP is not set
# CONFIG_WM831X_POWER is not set
# CONFIG_WM8350_POWER is not set
# CONFIG_TEST_POWER is not set
# CONFIG_BATTERY_88PM860X is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
# CONFIG_BATTERY_SBS is not set
# CONFIG_BATTERY_BQ27x00 is not set
# CONFIG_BATTERY_DA9030 is not set
# CONFIG_BATTERY_DA9052 is not set
# CONFIG_BATTERY_MAX17040 is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_GPIO is not set
CONFIG_CHARGER_MANAGER=y
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_SMB347 is not set
# CONFIG_CHARGER_TPS65090 is not set
# CONFIG_BATTERY_GOLDFISH is not set
# CONFIG_POWER_RESET is not set
CONFIG_POWER_AVS=y
CONFIG_HWMON=y
# CONFIG_HWMON_VID is not set
# CONFIG_HWMON_DEBUG_CHIP is not set
#
# Native drivers
#
# CONFIG_SENSORS_ABITUGURU is not set
# CONFIG_SENSORS_ABITUGURU3 is not set
# CONFIG_SENSORS_AD7314 is not set
# CONFIG_SENSORS_AD7414 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADCXX is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7310 is not set
# CONFIG_SENSORS_ADT7410 is not set
# CONFIG_SENSORS_ADT7411 is not set
# CONFIG_SENSORS_ADT7462 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_ADT7475 is not set
# CONFIG_SENSORS_ASC7621 is not set
# CONFIG_SENSORS_K8TEMP is not set
# CONFIG_SENSORS_K10TEMP is not set
# CONFIG_SENSORS_FAM15H_POWER is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS620 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_DA9052_ADC is not set
# CONFIG_SENSORS_DA9055 is not set
# CONFIG_SENSORS_I5K_AMB is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
# CONFIG_SENSORS_F75375S is not set
# CONFIG_SENSORS_FSCHMD is not set
# CONFIG_SENSORS_G760A is not set
# CONFIG_SENSORS_G762 is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_GPIO_FAN is not set
# CONFIG_SENSORS_HIH6130 is not set
CONFIG_SENSORS_CORETEMP=m
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_JC42 is not set
# CONFIG_SENSORS_LINEAGE is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM70 is not set
# CONFIG_SENSORS_LM73 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_LTC4151 is not set
# CONFIG_SENSORS_LTC4215 is not set
# CONFIG_SENSORS_LTC4245 is not set
# CONFIG_SENSORS_LTC4261 is not set
# CONFIG_SENSORS_LM95234 is not set
# CONFIG_SENSORS_LM95241 is not set
# CONFIG_SENSORS_LM95245 is not set
# CONFIG_SENSORS_MAX1111 is not set
# CONFIG_SENSORS_MAX16065 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX1668 is not set
# CONFIG_SENSORS_MAX197 is not set
# CONFIG_SENSORS_MAX6639 is not set
# CONFIG_SENSORS_MAX6642 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_MAX6697 is not set
# CONFIG_SENSORS_MCP3021 is not set
# CONFIG_SENSORS_NCT6775 is not set
# CONFIG_SENSORS_NTC_THERMISTOR is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_PMBUS is not set
# CONFIG_SENSORS_SHT15 is not set
# CONFIG_SENSORS_SHT21 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_SMM665 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_EMC1403 is not set
# CONFIG_SENSORS_EMC2103 is not set
# CONFIG_SENSORS_EMC6W201 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_SCH56XX_COMMON is not set
# CONFIG_SENSORS_SCH5627 is not set
# CONFIG_SENSORS_SCH5636 is not set
# CONFIG_SENSORS_ADS1015 is not set
# CONFIG_SENSORS_ADS7828 is not set
# CONFIG_SENSORS_ADS7871 is not set
# CONFIG_SENSORS_AMC6821 is not set
# CONFIG_SENSORS_INA209 is not set
# CONFIG_SENSORS_INA2XX is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_TMP102 is not set
# CONFIG_SENSORS_TMP401 is not set
# CONFIG_SENSORS_TMP421 is not set
# CONFIG_SENSORS_VIA_CPUTEMP is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83795 is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_WM831X is not set
# CONFIG_SENSORS_WM8350 is not set
# CONFIG_SENSORS_APPLESMC is not set
#
# ACPI drivers
#
# CONFIG_SENSORS_ACPI_POWER is not set
# CONFIG_SENSORS_ATK0110 is not set
CONFIG_THERMAL=y
CONFIG_THERMAL_HWMON=y
CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
# CONFIG_THERMAL_GOV_FAIR_SHARE is not set
CONFIG_THERMAL_GOV_STEP_WISE=y
CONFIG_THERMAL_GOV_USER_SPACE=y
CONFIG_CPU_THERMAL=y
# CONFIG_THERMAL_EMULATION is not set
# CONFIG_INTEL_POWERCLAMP is not set
CONFIG_X86_PKG_TEMP_THERMAL=m
#
# Texas Instruments thermal drivers
#
CONFIG_WATCHDOG=y
CONFIG_WATCHDOG_CORE=y
# CONFIG_WATCHDOG_NOWAYOUT is not set
#
# Watchdog Device Drivers
#
# CONFIG_SOFT_WATCHDOG is not set
# CONFIG_DA9052_WATCHDOG is not set
# CONFIG_DA9055_WATCHDOG is not set
# CONFIG_WM831X_WATCHDOG is not set
# CONFIG_WM8350_WATCHDOG is not set
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
# CONFIG_ALIM1535_WDT is not set
# CONFIG_ALIM7101_WDT is not set
# CONFIG_F71808E_WDT is not set
# CONFIG_SP5100_TCO is not set
# CONFIG_SC520_WDT is not set
# CONFIG_SBC_FITPC2_WATCHDOG is not set
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
# CONFIG_IBMASR is not set
# CONFIG_WAFER_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_IE6XX_WDT is not set
# CONFIG_ITCO_WDT is not set
# CONFIG_IT8712F_WDT is not set
# CONFIG_IT87_WDT is not set
# CONFIG_HP_WATCHDOG is not set
# CONFIG_SC1200_WDT is not set
# CONFIG_PC87413_WDT is not set
# CONFIG_NV_TCO is not set
# CONFIG_60XX_WDT is not set
# CONFIG_SBC8360_WDT is not set
# CONFIG_CPU5_WDT is not set
# CONFIG_SMSC_SCH311X_WDT is not set
# CONFIG_SMSC37B787_WDT is not set
# CONFIG_VIA_WDT is not set
# CONFIG_W83627HF_WDT is not set
# CONFIG_W83697HF_WDT is not set
# CONFIG_W83697UG_WDT is not set
# CONFIG_W83877F_WDT is not set
# CONFIG_W83977F_WDT is not set
# CONFIG_MACHZ_WDT is not set
# CONFIG_SBC_EPX_C3_WATCHDOG is not set
# CONFIG_XEN_WDT is not set
#
# PCI-based Watchdog Cards
#
# CONFIG_PCIPCWATCHDOG is not set
# CONFIG_WDTPCI is not set
#
# USB-based Watchdog Cards
#
# CONFIG_USBPCWATCHDOG is not set
CONFIG_SSB_POSSIBLE=y
#
# Sonics Silicon Backplane
#
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y
#
# Broadcom specific AMBA
#
# CONFIG_BCMA is not set
#
# Multifunction device drivers
#
CONFIG_MFD_CORE=y
# CONFIG_MFD_CS5535 is not set
# CONFIG_MFD_AS3711 is not set
CONFIG_PMIC_ADP5520=y
CONFIG_MFD_AAT2870_CORE=y
# CONFIG_MFD_CROS_EC is not set
CONFIG_PMIC_DA903X=y
CONFIG_PMIC_DA9052=y
CONFIG_MFD_DA9052_SPI=y
CONFIG_MFD_DA9052_I2C=y
CONFIG_MFD_DA9055=y
# CONFIG_MFD_MC13XXX_SPI is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_HTC_PASIC3 is not set
CONFIG_HTC_I2CPLD=y
CONFIG_LPC_ICH=m
# CONFIG_LPC_SCH is not set
# CONFIG_MFD_JANZ_CMODIO is not set
# CONFIG_MFD_88PM800 is not set
# CONFIG_MFD_88PM805 is not set
CONFIG_MFD_88PM860X=y
CONFIG_MFD_MAX77686=y
CONFIG_MFD_MAX77693=y
# CONFIG_MFD_MAX8907 is not set
CONFIG_MFD_MAX8925=y
CONFIG_MFD_MAX8997=y
CONFIG_MFD_MAX8998=y
CONFIG_EZX_PCAP=y
# CONFIG_MFD_VIPERBOARD is not set
# CONFIG_MFD_RETU is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_RTSX_PCI is not set
CONFIG_MFD_RC5T583=y
CONFIG_MFD_SEC_CORE=y
# CONFIG_MFD_SI476X_CORE is not set
# CONFIG_MFD_SM501 is not set
CONFIG_MFD_SMSC=y
CONFIG_ABX500_CORE=y
CONFIG_AB3100_CORE=y
# CONFIG_AB3100_OTP is not set
CONFIG_MFD_STMPE=y
#
# STMicroelectronics STMPE Interface Drivers
#
CONFIG_STMPE_I2C=y
CONFIG_STMPE_SPI=y
# CONFIG_MFD_SYSCON is not set
# CONFIG_MFD_TI_AM335X_TSCADC is not set
CONFIG_MFD_LP8788=y
CONFIG_MFD_PALMAS=y
# CONFIG_TPS6105X is not set
# CONFIG_TPS65010 is not set
# CONFIG_TPS6507X is not set
CONFIG_MFD_TPS65090=y
# CONFIG_MFD_TPS65217 is not set
CONFIG_MFD_TPS6586X=y
CONFIG_MFD_TPS65910=y
CONFIG_MFD_TPS65912=y
CONFIG_MFD_TPS65912_I2C=y
CONFIG_MFD_TPS65912_SPI=y
# CONFIG_MFD_TPS80031 is not set
# CONFIG_TWL4030_CORE is not set
CONFIG_TWL6040_CORE=y
# CONFIG_MFD_WL1273_CORE is not set
# CONFIG_MFD_LM3533 is not set
# CONFIG_MFD_TIMBERDALE is not set
CONFIG_MFD_TC3589X=y
# CONFIG_MFD_TMIO is not set
# CONFIG_MFD_VX855 is not set
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_ARIZONA_SPI is not set
CONFIG_MFD_WM8400=y
CONFIG_MFD_WM831X=y
CONFIG_MFD_WM831X_I2C=y
CONFIG_MFD_WM831X_SPI=y
CONFIG_MFD_WM8350=y
CONFIG_MFD_WM8350_I2C=y
CONFIG_MFD_WM8994=y
CONFIG_REGULATOR=y
# CONFIG_REGULATOR_DEBUG is not set
# CONFIG_REGULATOR_DUMMY is not set
# CONFIG_REGULATOR_FIXED_VOLTAGE is not set
# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
# CONFIG_REGULATOR_GPIO is not set
# CONFIG_REGULATOR_AD5398 is not set
# CONFIG_REGULATOR_AAT2870 is not set
# CONFIG_REGULATOR_DA903X is not set
# CONFIG_REGULATOR_DA9052 is not set
# CONFIG_REGULATOR_DA9055 is not set
# CONFIG_REGULATOR_FAN53555 is not set
# CONFIG_REGULATOR_ISL6271A is not set
CONFIG_REGULATOR_88PM8607=y
# CONFIG_REGULATOR_MAX1586 is not set
# CONFIG_REGULATOR_MAX8649 is not set
# CONFIG_REGULATOR_MAX8660 is not set
# CONFIG_REGULATOR_MAX8925 is not set
# CONFIG_REGULATOR_MAX8952 is not set
# CONFIG_REGULATOR_MAX8973 is not set
# CONFIG_REGULATOR_MAX8997 is not set
# CONFIG_REGULATOR_MAX8998 is not set
# CONFIG_REGULATOR_MAX77686 is not set
# CONFIG_REGULATOR_PCAP is not set
# CONFIG_REGULATOR_LP3971 is not set
# CONFIG_REGULATOR_LP3972 is not set
CONFIG_REGULATOR_LP872X=y
# CONFIG_REGULATOR_LP8755 is not set
CONFIG_REGULATOR_LP8788=y
# CONFIG_REGULATOR_RC5T583 is not set
# CONFIG_REGULATOR_S2MPS11 is not set
# CONFIG_REGULATOR_S5M8767 is not set
# CONFIG_REGULATOR_AB3100 is not set
# CONFIG_REGULATOR_PALMAS is not set
# CONFIG_REGULATOR_TPS51632 is not set
# CONFIG_REGULATOR_TPS62360 is not set
# CONFIG_REGULATOR_TPS65023 is not set
# CONFIG_REGULATOR_TPS6507X is not set
# CONFIG_REGULATOR_TPS65090 is not set
# CONFIG_REGULATOR_TPS6524X is not set
# CONFIG_REGULATOR_TPS6586X is not set
# CONFIG_REGULATOR_TPS65910 is not set
# CONFIG_REGULATOR_TPS65912 is not set
# CONFIG_REGULATOR_WM831X is not set
# CONFIG_REGULATOR_WM8350 is not set
# CONFIG_REGULATOR_WM8400 is not set
# CONFIG_REGULATOR_WM8994 is not set
CONFIG_MEDIA_SUPPORT=m
#
# Multimedia core support
#
CONFIG_MEDIA_CAMERA_SUPPORT=y
CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
CONFIG_MEDIA_RADIO_SUPPORT=y
CONFIG_MEDIA_RC_SUPPORT=y
# CONFIG_MEDIA_CONTROLLER is not set
CONFIG_VIDEO_DEV=m
CONFIG_VIDEO_V4L2=m
# CONFIG_VIDEO_ADV_DEBUG is not set
# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
CONFIG_VIDEOBUF2_CORE=m
CONFIG_VIDEOBUF2_MEMOPS=m
CONFIG_VIDEOBUF2_VMALLOC=m
# CONFIG_VIDEO_V4L2_INT_DEVICE is not set
CONFIG_DVB_CORE=m
CONFIG_DVB_NET=y
# CONFIG_TTPCI_EEPROM is not set
CONFIG_DVB_MAX_ADAPTERS=8
CONFIG_DVB_DYNAMIC_MINORS=y
#
# Media drivers
#
CONFIG_RC_CORE=m
# CONFIG_RC_MAP is not set
CONFIG_RC_DECODERS=y
# CONFIG_LIRC is not set
# CONFIG_IR_NEC_DECODER is not set
# CONFIG_IR_RC5_DECODER is not set
# CONFIG_IR_RC6_DECODER is not set
# CONFIG_IR_JVC_DECODER is not set
# CONFIG_IR_SONY_DECODER is not set
# CONFIG_IR_RC5_SZ_DECODER is not set
# CONFIG_IR_SANYO_DECODER is not set
# CONFIG_IR_MCE_KBD_DECODER is not set
CONFIG_RC_DEVICES=y
# CONFIG_RC_ATI_REMOTE is not set
# CONFIG_IR_ENE is not set
# CONFIG_IR_IMON is not set
# CONFIG_IR_MCEUSB is not set
# CONFIG_IR_ITE_CIR is not set
# CONFIG_IR_FINTEK is not set
# CONFIG_IR_NUVOTON is not set
# CONFIG_IR_REDRAT3 is not set
# CONFIG_IR_STREAMZAP is not set
# CONFIG_IR_WINBOND_CIR is not set
# CONFIG_IR_IGUANA is not set
# CONFIG_IR_TTUSBIR is not set
# CONFIG_RC_LOOPBACK is not set
# CONFIG_IR_GPIO_CIR is not set
CONFIG_MEDIA_USB_SUPPORT=y
#
# Webcam devices
#
CONFIG_USB_VIDEO_CLASS=m
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
# CONFIG_USB_GSPCA is not set
# CONFIG_USB_PWC is not set
# CONFIG_VIDEO_CPIA2 is not set
# CONFIG_USB_ZR364XX is not set
# CONFIG_USB_STKWEBCAM is not set
# CONFIG_USB_S2255 is not set
# CONFIG_USB_SN9C102 is not set
#
# Analog TV USB devices
#
# CONFIG_VIDEO_PVRUSB2 is not set
# CONFIG_VIDEO_HDPVR is not set
# CONFIG_VIDEO_TLG2300 is not set
# CONFIG_VIDEO_USBVISION is not set
# CONFIG_VIDEO_STK1160 is not set
#
# Analog/digital TV USB devices
#
# CONFIG_VIDEO_AU0828 is not set
# CONFIG_VIDEO_CX231XX is not set
# CONFIG_VIDEO_TM6000 is not set
#
# Digital TV USB devices
#
# CONFIG_DVB_USB is not set
# CONFIG_DVB_USB_V2 is not set
# CONFIG_DVB_TTUSB_BUDGET is not set
# CONFIG_DVB_TTUSB_DEC is not set
# CONFIG_SMS_USB_DRV is not set
# CONFIG_DVB_B2C2_FLEXCOP_USB is not set
#
# Webcam, TV (analog/digital) USB devices
#
# CONFIG_VIDEO_EM28XX is not set
CONFIG_MEDIA_PCI_SUPPORT=y
#
# Media capture support
#
#
# Media capture/analog TV support
#
# CONFIG_VIDEO_IVTV is not set
# CONFIG_VIDEO_ZORAN is not set
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
# CONFIG_VIDEO_HEXIUM_ORION is not set
# CONFIG_VIDEO_MXB is not set
#
# Media capture/analog/hybrid TV support
#
# CONFIG_VIDEO_CX18 is not set
# CONFIG_VIDEO_CX23885 is not set
# CONFIG_VIDEO_CX25821 is not set
# CONFIG_VIDEO_CX88 is not set
# CONFIG_VIDEO_BT848 is not set
# CONFIG_VIDEO_SAA7134 is not set
# CONFIG_VIDEO_SAA7164 is not set
#
# Media digital TV PCI Adapters
#
# CONFIG_DVB_AV7110 is not set
# CONFIG_DVB_BUDGET_CORE is not set
# CONFIG_DVB_B2C2_FLEXCOP_PCI is not set
# CONFIG_DVB_PLUTO2 is not set
# CONFIG_DVB_DM1105 is not set
# CONFIG_DVB_PT1 is not set
# CONFIG_MANTIS_CORE is not set
# CONFIG_DVB_NGENE is not set
# CONFIG_DVB_DDBRIDGE is not set
CONFIG_V4L_PLATFORM_DRIVERS=y
# CONFIG_VIDEO_CAFE_CCIC is not set
# CONFIG_VIDEO_TIMBERDALE is not set
# CONFIG_SOC_CAMERA is not set
CONFIG_V4L_MEM2MEM_DRIVERS=y
# CONFIG_VIDEO_MEM2MEM_DEINTERLACE is not set
# CONFIG_VIDEO_SH_VEU is not set
CONFIG_V4L_TEST_DRIVERS=y
# CONFIG_VIDEO_VIVI is not set
# CONFIG_VIDEO_MEM2MEM_TESTDEV is not set
#
# Supported MMC/SDIO adapters
#
# CONFIG_SMS_SDIO_DRV is not set
CONFIG_MEDIA_PARPORT_SUPPORT=y
# CONFIG_VIDEO_BWQCAM is not set
# CONFIG_VIDEO_CQCAM is not set
# CONFIG_VIDEO_W9966 is not set
CONFIG_RADIO_ADAPTERS=y
CONFIG_RADIO_SI470X=y
# CONFIG_USB_SI470X is not set
# CONFIG_I2C_SI470X is not set
# CONFIG_USB_MR800 is not set
# CONFIG_USB_DSBR is not set
# CONFIG_RADIO_MAXIRADIO is not set
# CONFIG_RADIO_SHARK is not set
# CONFIG_RADIO_SHARK2 is not set
# CONFIG_I2C_SI4713 is not set
# CONFIG_RADIO_SI4713 is not set
# CONFIG_USB_KEENE is not set
# CONFIG_USB_MA901 is not set
# CONFIG_RADIO_TEA5764 is not set
# CONFIG_RADIO_SAA7706H is not set
# CONFIG_RADIO_TEF6862 is not set
# CONFIG_RADIO_WL1273 is not set
#
# Texas Instruments WL128x FM driver (ST based)
#
# CONFIG_RADIO_WL128X is not set
# CONFIG_CYPRESS_FIRMWARE is not set
#
# Media ancillary drivers (tuners, sensors, i2c, frontends)
#
CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
CONFIG_MEDIA_ATTACH=y
CONFIG_VIDEO_IR_I2C=m
#
# Audio decoders, processors and mixers
#
#
# RDS decoders
#
#
# Video decoders
#
#
# Video and audio decoders
#
#
# Video encoders
#
#
# Camera sensor devices
#
#
# Flash devices
#
#
# Video improvement chips
#
#
# Miscelaneous helper chips
#
#
# Sensors used on soc_camera driver
#
CONFIG_MEDIA_TUNER=m
CONFIG_MEDIA_TUNER_SIMPLE=m
CONFIG_MEDIA_TUNER_TDA8290=m
CONFIG_MEDIA_TUNER_TDA827X=m
CONFIG_MEDIA_TUNER_TDA18271=m
CONFIG_MEDIA_TUNER_TDA9887=m
CONFIG_MEDIA_TUNER_TEA5761=m
CONFIG_MEDIA_TUNER_TEA5767=m
CONFIG_MEDIA_TUNER_MT20XX=m
CONFIG_MEDIA_TUNER_XC2028=m
CONFIG_MEDIA_TUNER_XC5000=m
CONFIG_MEDIA_TUNER_XC4000=m
CONFIG_MEDIA_TUNER_MC44S803=m
#
# Multistandard (satellite) frontends
#
#
# Multistandard (cable + terrestrial) frontends
#
#
# DVB-S (satellite) frontends
#
#
# DVB-T (terrestrial) frontends
#
#
# DVB-C (cable) frontends
#
#
# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
#
#
# ISDB-T (terrestrial) frontends
#
#
# Digital terrestrial only tuners/PLL
#
#
# SEC control devices for DVB-S
#
#
# Tools to develop new frontends
#
# CONFIG_DVB_DUMMY_FE is not set
#
# Graphics support
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=y
# CONFIG_AGP_SIS is not set
CONFIG_AGP_VIA=y
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
CONFIG_VGA_SWITCHEROO=y
CONFIG_DRM=m
CONFIG_DRM_KMS_HELPER=m
CONFIG_DRM_LOAD_EDID_FIRMWARE=y
#
# I2C encoder or helper chips
#
# CONFIG_DRM_I2C_CH7006 is not set
# CONFIG_DRM_I2C_SIL164 is not set
# CONFIG_DRM_I2C_NXP_TDA998X is not set
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_R128 is not set
# CONFIG_DRM_RADEON is not set
# CONFIG_DRM_NOUVEAU is not set
# CONFIG_DRM_I810 is not set
CONFIG_DRM_I915=m
CONFIG_DRM_I915_KMS=y
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set
# CONFIG_DRM_VIA is not set
# CONFIG_DRM_SAVAGE is not set
# CONFIG_DRM_VMWGFX is not set
# CONFIG_DRM_GMA500 is not set
# CONFIG_DRM_UDL is not set
# CONFIG_DRM_AST is not set
# CONFIG_DRM_MGAG200 is not set
# CONFIG_DRM_CIRRUS_QEMU is not set
# CONFIG_DRM_QXL is not set
# CONFIG_VGASTATE is not set
CONFIG_VIDEO_OUTPUT_CONTROL=m
CONFIG_HDMI=y
CONFIG_FB=y
CONFIG_FIRMWARE_EDID=y
# CONFIG_FB_DDC is not set
# CONFIG_FB_BOOT_VESA_SUPPORT is not set
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
# CONFIG_FB_SYS_FILLRECT is not set
# CONFIG_FB_SYS_COPYAREA is not set
# CONFIG_FB_SYS_IMAGEBLIT is not set
# CONFIG_FB_FOREIGN_ENDIAN is not set
# CONFIG_FB_SYS_FOPS is not set
# CONFIG_FB_SVGALIB is not set
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_BACKLIGHT is not set
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
CONFIG_FB_ASILIANT=y
CONFIG_FB_IMSTT=y
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_UVESA is not set
# CONFIG_FB_VESA is not set
CONFIG_FB_EFI=y
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_INTEL is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_VIA is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
CONFIG_FB_GEODE=y
# CONFIG_FB_GEODE_LX is not set
# CONFIG_FB_GEODE_GX is not set
# CONFIG_FB_GEODE_GX1 is not set
# CONFIG_FB_TMIO is not set
# CONFIG_FB_SMSCUFX is not set
# CONFIG_FB_UDL is not set
# CONFIG_FB_GOLDFISH is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_XEN_FBDEV_FRONTEND is not set
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
# CONFIG_FB_BROADSHEET is not set
# CONFIG_FB_AUO_K190X is not set
CONFIG_EXYNOS_VIDEO=y
CONFIG_BACKLIGHT_LCD_SUPPORT=y
# CONFIG_LCD_CLASS_DEVICE is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
# CONFIG_BACKLIGHT_GENERIC is not set
# CONFIG_BACKLIGHT_PWM is not set
# CONFIG_BACKLIGHT_DA903X is not set
# CONFIG_BACKLIGHT_DA9052 is not set
# CONFIG_BACKLIGHT_MAX8925 is not set
# CONFIG_BACKLIGHT_APPLE is not set
# CONFIG_BACKLIGHT_SAHARA is not set
# CONFIG_BACKLIGHT_WM831X is not set
# CONFIG_BACKLIGHT_ADP5520 is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
# CONFIG_BACKLIGHT_ADP8870 is not set
# CONFIG_BACKLIGHT_88PM860X is not set
# CONFIG_BACKLIGHT_AAT2870 is not set
# CONFIG_BACKLIGHT_LM3630 is not set
# CONFIG_BACKLIGHT_LM3639 is not set
# CONFIG_BACKLIGHT_LP855X is not set
# CONFIG_BACKLIGHT_LP8788 is not set
#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
# CONFIG_VGACON_SOFT_SCROLLBACK is not set
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_LOGO is not set
CONFIG_SOUND=m
# CONFIG_SOUND_OSS_CORE is not set
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_HWDEP=m
CONFIG_SND_RAWMIDI=m
CONFIG_SND_JACK=y
CONFIG_SND_SEQUENCER=m
# CONFIG_SND_SEQ_DUMMY is not set
# CONFIG_SND_MIXER_OSS is not set
# CONFIG_SND_PCM_OSS is not set
# CONFIG_SND_SEQUENCER_OSS is not set
# CONFIG_SND_HRTIMER is not set
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_MAX_CARDS=32
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set
CONFIG_SND_VMASTER=y
CONFIG_SND_KCTL_JACK=y
CONFIG_SND_DMA_SGBUF=y
CONFIG_SND_RAWMIDI_SEQ=m
# CONFIG_SND_OPL3_LIB_SEQ is not set
# CONFIG_SND_OPL4_LIB_SEQ is not set
# CONFIG_SND_SBAWE_SEQ is not set
# CONFIG_SND_EMU10K1_SEQ is not set
CONFIG_SND_DRIVERS=y
# CONFIG_SND_PCSP is not set
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_ALOOP is not set
CONFIG_SND_VIRMIDI=m
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_MTS64 is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set
# CONFIG_SND_PORTMAN2X4 is not set
CONFIG_SND_PCI=y
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ASIHPI is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AW2 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_OXYGEN is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS5530 is not set
# CONFIG_SND_CS5535AUDIO is not set
# CONFIG_SND_CTXFI is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
# CONFIG_SND_INDIGOIOX is not set
# CONFIG_SND_INDIGODJX is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
CONFIG_SND_HDA_INTEL=m
CONFIG_SND_HDA_PREALLOC_SIZE=64
CONFIG_SND_HDA_HWDEP=y
CONFIG_SND_HDA_RECONFIG=y
CONFIG_SND_HDA_INPUT_BEEP=y
CONFIG_SND_HDA_INPUT_BEEP_MODE=0
CONFIG_SND_HDA_INPUT_JACK=y
CONFIG_SND_HDA_PATCH_LOADER=y
CONFIG_SND_HDA_CODEC_REALTEK=y
CONFIG_SND_HDA_CODEC_ANALOG=y
CONFIG_SND_HDA_CODEC_SIGMATEL=y
CONFIG_SND_HDA_CODEC_VIA=y
CONFIG_SND_HDA_CODEC_HDMI=y
# CONFIG_SND_HDA_I915 is not set
CONFIG_SND_HDA_CODEC_CIRRUS=y
CONFIG_SND_HDA_CODEC_CONEXANT=y
CONFIG_SND_HDA_CODEC_CA0110=y
CONFIG_SND_HDA_CODEC_CA0132=y
# CONFIG_SND_HDA_CODEC_CA0132_DSP is not set
CONFIG_SND_HDA_CODEC_CMEDIA=y
CONFIG_SND_HDA_CODEC_SI3054=y
CONFIG_SND_HDA_GENERIC=y
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_LOLA is not set
# CONFIG_SND_LX6464ES is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VIRTUOSO is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set
CONFIG_SND_SPI=y
CONFIG_SND_USB=y
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_UA101 is not set
# CONFIG_SND_USB_USX2Y is not set
# CONFIG_SND_USB_CAIAQ is not set
# CONFIG_SND_USB_US122L is not set
# CONFIG_SND_USB_6FIRE is not set
# CONFIG_SND_SOC is not set
# CONFIG_SOUND_PRIME is not set
#
# HID support
#
CONFIG_HID=m
CONFIG_HIDRAW=y
# CONFIG_UHID is not set
CONFIG_HID_GENERIC=m
#
# Special HID drivers
#
# CONFIG_HID_A4TECH is not set
# CONFIG_HID_ACRUX is not set
# CONFIG_HID_APPLE is not set
# CONFIG_HID_APPLEIR is not set
# CONFIG_HID_AUREAL is not set
# CONFIG_HID_BELKIN is not set
# CONFIG_HID_CHERRY is not set
# CONFIG_HID_CHICONY is not set
# CONFIG_HID_PRODIKEYS is not set
# CONFIG_HID_CYPRESS is not set
# CONFIG_HID_DRAGONRISE is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELECOM is not set
# CONFIG_HID_ELO is not set
# CONFIG_HID_EZKEY is not set
# CONFIG_HID_HOLTEK is not set
# CONFIG_HID_HUION is not set
# CONFIG_HID_KEYTOUCH is not set
# CONFIG_HID_KYE is not set
# CONFIG_HID_UCLOGIC is not set
# CONFIG_HID_WALTOP is not set
# CONFIG_HID_GYRATION is not set
# CONFIG_HID_ICADE is not set
# CONFIG_HID_TWINHAN is not set
# CONFIG_HID_KENSINGTON is not set
# CONFIG_HID_LCPOWER is not set
# CONFIG_HID_LENOVO_TPKBD is not set
# CONFIG_HID_LOGITECH is not set
# CONFIG_HID_MAGICMOUSE is not set
# CONFIG_HID_MICROSOFT is not set
# CONFIG_HID_MONTEREY is not set
# CONFIG_HID_MULTITOUCH is not set
# CONFIG_HID_NTRIG is not set
# CONFIG_HID_ORTEK is not set
# CONFIG_HID_PANTHERLORD is not set
# CONFIG_HID_PETALYNX is not set
# CONFIG_HID_PICOLCD is not set
# CONFIG_HID_PRIMAX is not set
# CONFIG_HID_ROCCAT is not set
# CONFIG_HID_SAITEK is not set
# CONFIG_HID_SAMSUNG is not set
# CONFIG_HID_SONY is not set
# CONFIG_HID_SPEEDLINK is not set
# CONFIG_HID_STEELSERIES is not set
# CONFIG_HID_SUNPLUS is not set
# CONFIG_HID_GREENASIA is not set
# CONFIG_HID_SMARTJOYPLUS is not set
# CONFIG_HID_TIVO is not set
# CONFIG_HID_TOPSEED is not set
# CONFIG_HID_THINGM is not set
# CONFIG_HID_THRUSTMASTER is not set
# CONFIG_HID_WACOM is not set
# CONFIG_HID_WIIMOTE is not set
# CONFIG_HID_ZEROPLUS is not set
# CONFIG_HID_ZYDACRON is not set
# CONFIG_HID_SENSOR_HUB is not set
#
# USB HID support
#
CONFIG_USB_HID=m
CONFIG_HID_PID=y
CONFIG_USB_HIDDEV=y
#
# USB HID Boot Protocol drivers
#
# CONFIG_USB_KBD is not set
# CONFIG_USB_MOUSE is not set
#
# I2C HID support
#
# CONFIG_I2C_HID is not set
CONFIG_USB_SUPPORT=y
CONFIG_USB_COMMON=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=y
CONFIG_USB_DEBUG=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
#
# Miscellaneous USB options
#
CONFIG_USB_DEFAULT_PERSIST=y
CONFIG_USB_DYNAMIC_MINORS=y
# CONFIG_USB_OTG is not set
# CONFIG_USB_OTG_WHITELIST is not set
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
CONFIG_USB_MON=m
# CONFIG_USB_WUSB_CBAF is not set
#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_XHCI_HCD=y
# CONFIG_USB_XHCI_HCD_DEBUGGING is not set
CONFIG_USB_EHCI_HCD=y
CONFIG_USB_EHCI_ROOT_HUB_TT=y
CONFIG_USB_EHCI_TT_NEWSCHED=y
CONFIG_USB_EHCI_PCI=y
CONFIG_USB_EHCI_HCD_PLATFORM=y
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_ISP1760_HCD is not set
# CONFIG_USB_ISP1362_HCD is not set
# CONFIG_USB_FUSBH200_HCD is not set
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_OHCI_HCD_PCI=y
CONFIG_USB_OHCI_HCD_PLATFORM=y
# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set
# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=m
# CONFIG_USB_WDM is not set
# CONFIG_USB_TMC is not set
#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#
#
# also be needed; see USB_STORAGE Help for more info
#
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_REALTEK is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_STORAGE_ALAUDA is not set
# CONFIG_USB_STORAGE_ONETOUCH is not set
# CONFIG_USB_STORAGE_KARMA is not set
# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
# CONFIG_USB_STORAGE_ENE_UB6250 is not set
#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USB_DWC3 is not set
# CONFIG_USB_CHIPIDEA is not set
#
# USB port drivers
#
# CONFIG_USB_USS720 is not set
# CONFIG_USB_SERIAL is not set
#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_SEVSEG is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_FTDI_ELAN is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_ISIGHTFW is not set
# CONFIG_USB_YUREX is not set
# CONFIG_USB_EZUSB_FX2 is not set
# CONFIG_USB_HSIC_USB3503 is not set
# CONFIG_USB_PHY is not set
# CONFIG_USB_GADGET is not set
# CONFIG_UWB is not set
CONFIG_MMC=y
# CONFIG_MMC_DEBUG is not set
# CONFIG_MMC_UNSAFE_RESUME is not set
# CONFIG_MMC_CLKGATE is not set
#
# MMC/SD/SDIO Card Drivers
#
CONFIG_MMC_BLOCK=m
CONFIG_MMC_BLOCK_MINORS=8
CONFIG_MMC_BLOCK_BOUNCE=y
# CONFIG_SDIO_UART is not set
# CONFIG_MMC_TEST is not set
#
# MMC/SD/SDIO Host Controller Drivers
#
CONFIG_MMC_SDHCI=m
CONFIG_MMC_SDHCI_PCI=m
# CONFIG_MMC_RICOH_MMC is not set
# CONFIG_MMC_SDHCI_ACPI is not set
# CONFIG_MMC_SDHCI_PLTFM is not set
# CONFIG_MMC_WBSD is not set
# CONFIG_MMC_TIFM_SD is not set
# CONFIG_MMC_SPI is not set
# CONFIG_MMC_CB710 is not set
# CONFIG_MMC_VIA_SDMMC is not set
# CONFIG_MMC_VUB300 is not set
# CONFIG_MMC_USHC is not set
# CONFIG_MEMSTICK is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
#
# LED drivers
#
# CONFIG_LEDS_88PM860X is not set
# CONFIG_LEDS_LM3530 is not set
# CONFIG_LEDS_LM3642 is not set
# CONFIG_LEDS_PCA9532 is not set
# CONFIG_LEDS_GPIO is not set
# CONFIG_LEDS_LP3944 is not set
# CONFIG_LEDS_LP5521 is not set
# CONFIG_LEDS_LP5523 is not set
# CONFIG_LEDS_LP5562 is not set
# CONFIG_LEDS_LP8788 is not set
# CONFIG_LEDS_CLEVO_MAIL is not set
# CONFIG_LEDS_PCA955X is not set
# CONFIG_LEDS_PCA9633 is not set
# CONFIG_LEDS_WM831X_STATUS is not set
# CONFIG_LEDS_WM8350 is not set
# CONFIG_LEDS_DA903X is not set
# CONFIG_LEDS_DA9052 is not set
# CONFIG_LEDS_DAC124S085 is not set
# CONFIG_LEDS_PWM is not set
# CONFIG_LEDS_REGULATOR is not set
# CONFIG_LEDS_BD2802 is not set
# CONFIG_LEDS_INTEL_SS4200 is not set
# CONFIG_LEDS_LT3593 is not set
# CONFIG_LEDS_ADP5520 is not set
# CONFIG_LEDS_DELL_NETBOOKS is not set
# CONFIG_LEDS_TCA6507 is not set
# CONFIG_LEDS_MAX8997 is not set
# CONFIG_LEDS_LM355x is not set
# CONFIG_LEDS_OT200 is not set
# CONFIG_LEDS_BLINKM is not set
#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
# CONFIG_LEDS_TRIGGER_TIMER is not set
# CONFIG_LEDS_TRIGGER_ONESHOT is not set
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
CONFIG_LEDS_TRIGGER_CPU=y
# CONFIG_LEDS_TRIGGER_GPIO is not set
# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
#
# iptables trigger is under Netfilter config (LED target)
#
# CONFIG_LEDS_TRIGGER_TRANSIENT is not set
# CONFIG_LEDS_TRIGGER_CAMERA is not set
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
CONFIG_EDAC=y
CONFIG_EDAC_LEGACY_SYSFS=y
# CONFIG_EDAC_DEBUG is not set
# CONFIG_EDAC_DECODE_MCE is not set
# CONFIG_EDAC_MM_EDAC is not set
CONFIG_RTC_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_SYSTOHC=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
# CONFIG_RTC_DEBUG is not set
#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
# CONFIG_RTC_DRV_TEST is not set
#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_88PM860X is not set
# CONFIG_RTC_DRV_DS1307 is not set
# CONFIG_RTC_DRV_DS1374 is not set
# CONFIG_RTC_DRV_DS1672 is not set
# CONFIG_RTC_DRV_DS3232 is not set
# CONFIG_RTC_DRV_LP8788 is not set
# CONFIG_RTC_DRV_MAX6900 is not set
# CONFIG_RTC_DRV_MAX8925 is not set
# CONFIG_RTC_DRV_MAX8998 is not set
# CONFIG_RTC_DRV_MAX8997 is not set
# CONFIG_RTC_DRV_MAX77686 is not set
# CONFIG_RTC_DRV_RS5C372 is not set
# CONFIG_RTC_DRV_ISL1208 is not set
# CONFIG_RTC_DRV_ISL12022 is not set
# CONFIG_RTC_DRV_X1205 is not set
# CONFIG_RTC_DRV_PALMAS is not set
# CONFIG_RTC_DRV_PCF8523 is not set
# CONFIG_RTC_DRV_PCF8563 is not set
# CONFIG_RTC_DRV_PCF8583 is not set
# CONFIG_RTC_DRV_M41T80 is not set
# CONFIG_RTC_DRV_BQ32K is not set
# CONFIG_RTC_DRV_TPS6586X is not set
# CONFIG_RTC_DRV_TPS65910 is not set
# CONFIG_RTC_DRV_RC5T583 is not set
# CONFIG_RTC_DRV_S35390A is not set
# CONFIG_RTC_DRV_FM3130 is not set
# CONFIG_RTC_DRV_RX8581 is not set
# CONFIG_RTC_DRV_RX8025 is not set
# CONFIG_RTC_DRV_EM3027 is not set
# CONFIG_RTC_DRV_RV3029C2 is not set
#
# SPI RTC drivers
#
# CONFIG_RTC_DRV_M41T93 is not set
# CONFIG_RTC_DRV_M41T94 is not set
# CONFIG_RTC_DRV_DS1305 is not set
# CONFIG_RTC_DRV_DS1390 is not set
# CONFIG_RTC_DRV_MAX6902 is not set
# CONFIG_RTC_DRV_R9701 is not set
# CONFIG_RTC_DRV_RS5C348 is not set
# CONFIG_RTC_DRV_DS3234 is not set
# CONFIG_RTC_DRV_PCF2123 is not set
# CONFIG_RTC_DRV_RX4581 is not set
#
# Platform RTC drivers
#
CONFIG_RTC_DRV_CMOS=y
# CONFIG_RTC_DRV_DS1286 is not set
# CONFIG_RTC_DRV_DS1511 is not set
# CONFIG_RTC_DRV_DS1553 is not set
# CONFIG_RTC_DRV_DS1742 is not set
# CONFIG_RTC_DRV_DA9052 is not set
# CONFIG_RTC_DRV_DA9055 is not set
# CONFIG_RTC_DRV_STK17TA8 is not set
# CONFIG_RTC_DRV_M48T86 is not set
# CONFIG_RTC_DRV_M48T35 is not set
# CONFIG_RTC_DRV_M48T59 is not set
# CONFIG_RTC_DRV_MSM6242 is not set
# CONFIG_RTC_DRV_BQ4802 is not set
# CONFIG_RTC_DRV_RP5C01 is not set
# CONFIG_RTC_DRV_V3020 is not set
# CONFIG_RTC_DRV_DS2404 is not set
# CONFIG_RTC_DRV_WM831X is not set
# CONFIG_RTC_DRV_WM8350 is not set
# CONFIG_RTC_DRV_AB3100 is not set
#
# on-CPU RTC drivers
#
# CONFIG_RTC_DRV_PCAP is not set
#
# HID Sensor RTC drivers
#
# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
CONFIG_DMADEVICES=y
# CONFIG_DMADEVICES_DEBUG is not set
#
# DMA Devices
#
# CONFIG_INTEL_MID_DMAC is not set
# CONFIG_INTEL_IOATDMA is not set
# CONFIG_DW_DMAC_CORE is not set
# CONFIG_DW_DMAC is not set
# CONFIG_DW_DMAC_PCI is not set
# CONFIG_TIMB_DMA is not set
# CONFIG_PCH_DMA is not set
CONFIG_DMA_ENGINE=y
CONFIG_DMA_ACPI=y
#
# DMA Clients
#
CONFIG_NET_DMA=y
# CONFIG_ASYNC_TX_DMA is not set
# CONFIG_DMATEST is not set
CONFIG_AUXDISPLAY=y
# CONFIG_KS0108 is not set
# CONFIG_UIO is not set
# CONFIG_VFIO is not set
CONFIG_VIRT_DRIVERS=y
CONFIG_VIRTIO=y
#
# Virtio drivers
#
CONFIG_VIRTIO_PCI=y
# CONFIG_VIRTIO_BALLOON is not set
# CONFIG_VIRTIO_MMIO is not set
#
# Microsoft Hyper-V guest support
#
# CONFIG_HYPERV is not set
#
# Xen driver support
#
CONFIG_XEN_BALLOON=y
CONFIG_XEN_SELFBALLOONING=y
CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
CONFIG_XEN_SCRUB_PAGES=y
# CONFIG_XEN_DEV_EVTCHN is not set
CONFIG_XEN_BACKEND=y
# CONFIG_XENFS is not set
CONFIG_XEN_SYS_HYPERVISOR=y
CONFIG_XEN_XENBUS_FRONTEND=y
# CONFIG_XEN_GNTDEV is not set
# CONFIG_XEN_GRANT_DEV_ALLOC is not set
CONFIG_SWIOTLB_XEN=y
CONFIG_XEN_TMEM=m
# CONFIG_XEN_PCIDEV_BACKEND is not set
CONFIG_XEN_PRIVCMD=m
CONFIG_XEN_ACPI_PROCESSOR=y
CONFIG_XEN_MCE_LOG=y
CONFIG_XEN_HAVE_PVMMU=y
CONFIG_STAGING=y
# CONFIG_ET131X is not set
# CONFIG_SLICOSS is not set
# CONFIG_USBIP_CORE is not set
# CONFIG_W35UND is not set
# CONFIG_PRISM2_USB is not set
# CONFIG_ECHO is not set
# CONFIG_COMEDI is not set
# CONFIG_ASUS_OLED is not set
# CONFIG_PANEL is not set
# CONFIG_R8187SE is not set
# CONFIG_RTL8192U is not set
# CONFIG_RTLLIB is not set
# CONFIG_R8712U is not set
# CONFIG_RTS5139 is not set
# CONFIG_TRANZPORT is not set
# CONFIG_IDE_PHISON is not set
# CONFIG_LINE6_USB is not set
# CONFIG_VT6655 is not set
# CONFIG_VT6656 is not set
# CONFIG_DX_SEP is not set
CONFIG_ZSMALLOC=y
# CONFIG_ZRAM is not set
# CONFIG_FB_SM7XX is not set
# CONFIG_CRYSTALHD is not set
# CONFIG_FB_XGI is not set
# CONFIG_ACPI_QUICKSTART is not set
# CONFIG_USB_ENESTORAGE is not set
# CONFIG_BCM_WIMAX is not set
# CONFIG_FT1000 is not set
#
# Speakup console speech
#
# CONFIG_SPEAKUP is not set
# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set
# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
CONFIG_STAGING_MEDIA=y
# CONFIG_DVB_AS102 is not set
# CONFIG_DVB_CXD2099 is not set
# CONFIG_VIDEO_DT3155 is not set
# CONFIG_VIDEO_GO7007 is not set
# CONFIG_SOLO6X10 is not set
#
# Android
#
CONFIG_ANDROID=y
CONFIG_ANDROID_BINDER_IPC=y
CONFIG_ASHMEM=y
# CONFIG_ANDROID_LOGGER is not set
CONFIG_ANDROID_TIMED_OUTPUT=y
# CONFIG_ANDROID_TIMED_GPIO is not set
CONFIG_ANDROID_LOW_MEMORY_KILLER=y
CONFIG_ANDROID_INTF_ALARM_DEV=y
# CONFIG_SYNC is not set
# CONFIG_USB_WPAN_HCD is not set
# CONFIG_WIMAX_GDM72XX is not set
# CONFIG_CSR_WIFI is not set
CONFIG_NET_VENDOR_SILICOM=y
# CONFIG_SBYPASS is not set
# CONFIG_BPCTL is not set
# CONFIG_CED1401 is not set
# CONFIG_DGRP is not set
# CONFIG_ZCACHE is not set
# CONFIG_USB_DWC2 is not set
# CONFIG_USB_BTMTK is not set
CONFIG_X86_PLATFORM_DEVICES=y
# CONFIG_ACER_WMI is not set
# CONFIG_ACERHDF is not set
# CONFIG_ASUS_LAPTOP is not set
# CONFIG_CHROMEOS_LAPTOP is not set
# CONFIG_DELL_WMI is not set
# CONFIG_DELL_WMI_AIO is not set
# CONFIG_FUJITSU_LAPTOP is not set
# CONFIG_FUJITSU_TABLET is not set
# CONFIG_AMILO_RFKILL is not set
# CONFIG_HP_ACCEL is not set
# CONFIG_HP_WMI is not set
# CONFIG_MSI_LAPTOP is not set
# CONFIG_PANASONIC_LAPTOP is not set
# CONFIG_COMPAL_LAPTOP is not set
# CONFIG_SONY_LAPTOP is not set
# CONFIG_IDEAPAD_LAPTOP is not set
# CONFIG_THINKPAD_ACPI is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_INTEL_MENLOW is not set
# CONFIG_EEEPC_LAPTOP is not set
# CONFIG_ASUS_WMI is not set
CONFIG_ACPI_WMI=m
# CONFIG_MSI_WMI is not set
# CONFIG_TOPSTAR_LAPTOP is not set
# CONFIG_ACPI_TOSHIBA is not set
# CONFIG_TOSHIBA_BT_RFKILL is not set
# CONFIG_ACPI_CMPC is not set
# CONFIG_INTEL_IPS is not set
# CONFIG_IBM_RTL is not set
# CONFIG_XO15_EBOOK is not set
CONFIG_SAMSUNG_LAPTOP=m
# CONFIG_MXM_WMI is not set
# CONFIG_INTEL_OAKTRAIL is not set
# CONFIG_SAMSUNG_Q10 is not set
# CONFIG_APPLE_GMUX is not set
# CONFIG_PVPANIC is not set
#
# Hardware Spinlock drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_I8253_LOCK=y
CONFIG_CLKBLD_I8253=y
# CONFIG_MAILBOX is not set
CONFIG_IOMMU_API=y
CONFIG_IOMMU_SUPPORT=y
CONFIG_AMD_IOMMU=y
CONFIG_AMD_IOMMU_STATS=y
# CONFIG_AMD_IOMMU_V2 is not set
CONFIG_DMAR_TABLE=y
CONFIG_INTEL_IOMMU=y
# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
CONFIG_INTEL_IOMMU_FLOPPY_WA=y
CONFIG_IRQ_REMAP=y
#
# Remoteproc drivers
#
# CONFIG_STE_MODEM_RPROC is not set
#
# Rpmsg drivers
#
CONFIG_PM_DEVFREQ=y
#
# DEVFREQ Governors
#
CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y
CONFIG_DEVFREQ_GOV_PERFORMANCE=y
CONFIG_DEVFREQ_GOV_POWERSAVE=y
CONFIG_DEVFREQ_GOV_USERSPACE=y
#
# DEVFREQ Drivers
#
CONFIG_EXTCON=y
#
# Extcon Device Drivers
#
# CONFIG_EXTCON_GPIO is not set
# CONFIG_EXTCON_MAX77693 is not set
# CONFIG_EXTCON_MAX8997 is not set
# CONFIG_EXTCON_PALMAS is not set
CONFIG_MEMORY=y
# CONFIG_IIO is not set
# CONFIG_NTB is not set
# CONFIG_VME_BUS is not set
CONFIG_PWM=y
CONFIG_PWM_SYSFS=y
# CONFIG_IPACK_BUS is not set
# CONFIG_RESET_CONTROLLER is not set
# CONFIG_FMC is not set
#
# Firmware Drivers
#
CONFIG_EDD=y
CONFIG_EDD_OFF=y
CONFIG_FIRMWARE_MEMMAP=y
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
CONFIG_DMIID=y
# CONFIG_DMI_SYSFS is not set
CONFIG_ISCSI_IBFT_FIND=y
# CONFIG_ISCSI_IBFT is not set
# CONFIG_GOOGLE_FIRMWARE is not set
#
# EFI (Extensible Firmware Interface) Support
#
CONFIG_EFI_VARS=y
CONFIG_EFI_VARS_PSTORE=y
# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set
#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
# CONFIG_EXT2_FS is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_DEFAULTS_TO_ORDERED=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_EXT3_FS_SECURITY=y
CONFIG_EXT4_FS=y
CONFIG_EXT4_USE_FOR_EXT23=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
CONFIG_EXT4_DEBUG=y
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_JBD2=y
CONFIG_JBD2_DEBUG=y
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
CONFIG_XFS_FS=m
CONFIG_XFS_QUOTA=y
CONFIG_XFS_POSIX_ACL=y
CONFIG_XFS_RT=y
# CONFIG_XFS_WARN is not set
# CONFIG_XFS_DEBUG is not set
# CONFIG_GFS2_FS is not set
CONFIG_BTRFS_FS=m
CONFIG_BTRFS_FS_POSIX_ACL=y
# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
# CONFIG_BTRFS_DEBUG is not set
# CONFIG_NILFS2_FS is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
CONFIG_FILE_LOCKING=y
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_FANOTIFY=y
CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
CONFIG_QUOTA=y
CONFIG_QUOTA_NETLINK_INTERFACE=y
# CONFIG_PRINT_QUOTA_WARNING is not set
# CONFIG_QUOTA_DEBUG is not set
# CONFIG_QFMT_V1 is not set
# CONFIG_QFMT_V2 is not set
CONFIG_QUOTACTL=y
CONFIG_QUOTACTL_COMPAT=y
# CONFIG_AUTOFS4_FS is not set
CONFIG_FUSE_FS=y
# CONFIG_CUSE is not set
CONFIG_GENERIC_ACL=y
#
# Caches
#
# CONFIG_FSCACHE is not set
#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=m
CONFIG_JOLIET=y
# CONFIG_ZISOFS is not set
CONFIG_UDF_FS=m
CONFIG_UDF_NLS=y
#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
# CONFIG_MSDOS_FS is not set
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
# CONFIG_NTFS_FS is not set
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_VMCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_TMPFS_XATTR=y
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
# CONFIG_CONFIGFS_FS is not set
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
CONFIG_ECRYPT_FS=y
# CONFIG_ECRYPT_FS_MESSAGING is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_LOGFS is not set
# CONFIG_CRAMFS is not set
CONFIG_SQUASHFS=m
CONFIG_SQUASHFS_XATTR=y
CONFIG_SQUASHFS_ZLIB=y
CONFIG_SQUASHFS_LZO=y
CONFIG_SQUASHFS_XZ=y
# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
# CONFIG_SQUASHFS_EMBEDDED is not set
CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_PSTORE=y
# CONFIG_PSTORE_CONSOLE is not set
# CONFIG_PSTORE_FTRACE is not set
# CONFIG_PSTORE_RAM is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
# CONFIG_F2FS_FS is not set
# CONFIG_EFIVAR_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
# CONFIG_CEPH_FS is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
# CONFIG_NLS_ASCII is not set
CONFIG_NLS_ISO8859_1=m
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_MAC_ROMAN is not set
# CONFIG_NLS_MAC_CELTIC is not set
# CONFIG_NLS_MAC_CENTEURO is not set
# CONFIG_NLS_MAC_CROATIAN is not set
# CONFIG_NLS_MAC_CYRILLIC is not set
# CONFIG_NLS_MAC_GAELIC is not set
# CONFIG_NLS_MAC_GREEK is not set
# CONFIG_NLS_MAC_ICELAND is not set
# CONFIG_NLS_MAC_INUIT is not set
# CONFIG_NLS_MAC_ROMANIAN is not set
# CONFIG_NLS_MAC_TURKISH is not set
# CONFIG_NLS_UTF8 is not set
#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_PRINTK_TIME=y
CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
# CONFIG_ENABLE_WARN_DEPRECATED is not set
# CONFIG_ENABLE_MUST_CHECK is not set
CONFIG_FRAME_WARN=1024
CONFIG_MAGIC_SYSRQ=y
# CONFIG_STRIP_ASM_SYMS is not set
# CONFIG_READABLE_ASM is not set
CONFIG_UNUSED_SYMBOLS=y
CONFIG_DEBUG_FS=y
# CONFIG_HEADERS_CHECK is not set
# CONFIG_DEBUG_SECTION_MISMATCH is not set
CONFIG_DEBUG_KERNEL=y
# CONFIG_DEBUG_SHIRQ is not set
CONFIG_LOCKUP_DETECTOR=y
CONFIG_HARDLOCKUP_DETECTOR=y
# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
# CONFIG_PANIC_ON_OOPS is not set
CONFIG_PANIC_ON_OOPS_VALUE=0
CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
CONFIG_SCHED_DEBUG=y
CONFIG_SCHEDSTATS=y
CONFIG_TIMER_STATS=y
CONFIG_DEBUG_OBJECTS=y
# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
# CONFIG_DEBUG_OBJECTS_FREE is not set
# CONFIG_DEBUG_OBJECTS_TIMERS is not set
# CONFIG_DEBUG_OBJECTS_WORK is not set
CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
# CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER is not set
CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
CONFIG_DEBUG_SLAB=y
# CONFIG_DEBUG_SLAB_LEAK is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_DEBUG_KMEMLEAK is not set
# CONFIG_DEBUG_RT_MUTEXES is not set
# CONFIG_RT_MUTEX_TESTER is not set
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
# CONFIG_DEBUG_LOCK_ALLOC is not set
# CONFIG_PROVE_LOCKING is not set
# CONFIG_LOCK_STAT is not set
# CONFIG_DEBUG_ATOMIC_SLEEP is not set
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
# CONFIG_DEBUG_INFO is not set
# CONFIG_DEBUG_VM is not set
# CONFIG_DEBUG_VIRTUAL is not set
# CONFIG_DEBUG_WRITECOUNT is not set
CONFIG_DEBUG_MEMORY_INIT=y
# CONFIG_DEBUG_LIST is not set
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_DEBUG_SG is not set
# CONFIG_DEBUG_NOTIFIERS is not set
# CONFIG_DEBUG_CREDENTIALS is not set
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
CONFIG_BOOT_PRINTK_DELAY=y
#
# RCU Debugging
#
# CONFIG_SPARSE_RCU_POINTER is not set
# CONFIG_RCU_TORTURE_TEST is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=60
# CONFIG_RCU_CPU_STALL_INFO is not set
# CONFIG_RCU_TRACE is not set
# CONFIG_KPROBES_SANITY_TEST is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
# CONFIG_DEBUG_PER_CPU_MAPS is not set
# CONFIG_LKDTM is not set
# CONFIG_NOTIFIER_ERROR_INJECTION is not set
# CONFIG_FAULT_INJECTION is not set
CONFIG_LATENCYTOP=y
CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y
# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_TRACER_MAX_TRACE=y
CONFIG_TRACE_CLOCK=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
CONFIG_FUNCTION_TRACER=y
CONFIG_FUNCTION_GRAPH_TRACER=y
# CONFIG_IRQSOFF_TRACER is not set
CONFIG_SCHED_TRACER=y
CONFIG_FTRACE_SYSCALLS=y
CONFIG_TRACER_SNAPSHOT=y
# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
CONFIG_STACK_TRACER=y
CONFIG_BLK_DEV_IO_TRACE=y
CONFIG_KPROBE_EVENT=y
CONFIG_UPROBE_EVENT=y
CONFIG_PROBE_EVENTS=y
CONFIG_DYNAMIC_FTRACE=y
CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_FUNCTION_PROFILER=y
CONFIG_FTRACE_MCOUNT_RECORD=y
# CONFIG_FTRACE_STARTUP_TEST is not set
CONFIG_MMIOTRACE=y
# CONFIG_MMIOTRACE_TEST is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set
# CONFIG_RBTREE_TEST is not set
# CONFIG_INTERVAL_TREE_TEST is not set
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
# CONFIG_DYNAMIC_DEBUG is not set
# CONFIG_DMA_API_DEBUG is not set
# CONFIG_ATOMIC64_SELFTEST is not set
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
CONFIG_KGDB=y
CONFIG_KGDB_SERIAL_CONSOLE=y
# CONFIG_KGDB_TESTS is not set
CONFIG_KGDB_LOW_LEVEL_TRAP=y
CONFIG_KGDB_KDB=y
CONFIG_KDB_KEYBOARD=y
CONFIG_KDB_CONTINUE_CATASTROPHIC=0
CONFIG_HAVE_ARCH_KMEMCHECK=y
# CONFIG_TEST_STRING_HELPERS is not set
# CONFIG_TEST_KSTRTOX is not set
CONFIG_STRICT_DEVMEM=y
# CONFIG_X86_VERBOSE_BOOTUP is not set
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_DBGP=y
# CONFIG_DEBUG_STACKOVERFLOW is not set
# CONFIG_X86_PTDUMP is not set
CONFIG_DEBUG_RODATA=y
# CONFIG_DEBUG_RODATA_TEST is not set
CONFIG_DEBUG_SET_MODULE_RONX=y
# CONFIG_DEBUG_NX_TEST is not set
CONFIG_DOUBLEFAULT=y
# CONFIG_DEBUG_TLBFLUSH is not set
# CONFIG_IOMMU_DEBUG is not set
# CONFIG_IOMMU_STRESS is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
# CONFIG_X86_DECODER_SELFTEST is not set
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
# CONFIG_IO_DELAY_0X80 is not set
CONFIG_IO_DELAY_0XED=y
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=1
# CONFIG_DEBUG_BOOT_PARAMS is not set
# CONFIG_CPA_DEBUG is not set
CONFIG_OPTIMIZE_INLINING=y
# CONFIG_DEBUG_NMI_SELFTEST is not set
#
# Security options
#
CONFIG_KEYS=y
CONFIG_TRUSTED_KEYS=y
CONFIG_ENCRYPTED_KEYS=y
# CONFIG_KEYS_DEBUG_PROC_KEYS is not set
# CONFIG_SECURITY_DMESG_RESTRICT is not set
CONFIG_SECURITY=y
CONFIG_SECURITYFS=y
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_PATH=y
CONFIG_INTEL_TXT=y
CONFIG_LSM_MMAP_MIN_ADDR=0
CONFIG_SECURITY_SELINUX=y
CONFIG_SECURITY_SELINUX_BOOTPARAM=y
CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=0
CONFIG_SECURITY_SELINUX_DISABLE=y
CONFIG_SECURITY_SELINUX_DEVELOP=y
CONFIG_SECURITY_SELINUX_AVC_STATS=y
CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
CONFIG_SECURITY_SMACK=y
CONFIG_SECURITY_TOMOYO=y
CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048
CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024
# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set
CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init"
CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init"
CONFIG_SECURITY_APPARMOR=y
CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE=1
CONFIG_SECURITY_YAMA=y
CONFIG_SECURITY_YAMA_STACKED=y
CONFIG_INTEGRITY=y
CONFIG_INTEGRITY_SIGNATURE=y
# CONFIG_INTEGRITY_ASYMMETRIC_KEYS is not set
# CONFIG_IMA is not set
CONFIG_EVM=y
CONFIG_EVM_HMAC_VERSION=2
# CONFIG_DEFAULT_SECURITY_SELINUX is not set
# CONFIG_DEFAULT_SECURITY_SMACK is not set
# CONFIG_DEFAULT_SECURITY_TOMOYO is not set
CONFIG_DEFAULT_SECURITY_APPARMOR=y
# CONFIG_DEFAULT_SECURITY_YAMA is not set
# CONFIG_DEFAULT_SECURITY_DAC is not set
CONFIG_DEFAULT_SECURITY="apparmor"
CONFIG_XOR_BLOCKS=m
CONFIG_CRYPTO=y
#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_PCOMP2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
# CONFIG_CRYPTO_USER is not set
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
CONFIG_CRYPTO_GF128MUL=m
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_PCRYPT is not set
CONFIG_CRYPTO_WORKQUEUE=y
CONFIG_CRYPTO_CRYPTD=m
# CONFIG_CRYPTO_AUTHENC is not set
# CONFIG_CRYPTO_TEST is not set
CONFIG_CRYPTO_ABLK_HELPER_X86=m
CONFIG_CRYPTO_GLUE_HELPER_X86=m
#
# Authenticated Encryption with Associated Data
#
# CONFIG_CRYPTO_CCM is not set
# CONFIG_CRYPTO_GCM is not set
# CONFIG_CRYPTO_SEQIV is not set
#
# Block modes
#
CONFIG_CRYPTO_CBC=y
# CONFIG_CRYPTO_CTR is not set
# CONFIG_CRYPTO_CTS is not set
CONFIG_CRYPTO_ECB=y
CONFIG_CRYPTO_LRW=m
# CONFIG_CRYPTO_PCBC is not set
CONFIG_CRYPTO_XTS=m
#
# Hash modes
#
# CONFIG_CRYPTO_CMAC is not set
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_XCBC is not set
# CONFIG_CRYPTO_VMAC is not set
#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
CONFIG_CRYPTO_CRC32C_INTEL=y
# CONFIG_CRYPTO_CRC32 is not set
# CONFIG_CRYPTO_CRC32_PCLMUL is not set
CONFIG_CRYPTO_CRCT10DIF=y
# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set
# CONFIG_CRYPTO_GHASH is not set
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
# CONFIG_CRYPTO_MICHAEL_MIC is not set
# CONFIG_CRYPTO_RMD128 is not set
# CONFIG_CRYPTO_RMD160 is not set
# CONFIG_CRYPTO_RMD256 is not set
# CONFIG_CRYPTO_RMD320 is not set
CONFIG_CRYPTO_SHA1=y
# CONFIG_CRYPTO_SHA1_SSSE3 is not set
# CONFIG_CRYPTO_SHA256_SSSE3 is not set
# CONFIG_CRYPTO_SHA512_SSSE3 is not set
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=y
# CONFIG_CRYPTO_TGR192 is not set
# CONFIG_CRYPTO_WP512 is not set
CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m
#
# Ciphers
#
CONFIG_CRYPTO_AES=y
CONFIG_CRYPTO_AES_X86_64=m
CONFIG_CRYPTO_AES_NI_INTEL=m
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_ARC4=m
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA is not set
# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set
# CONFIG_CRYPTO_CAST5 is not set
# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAST6 is not set
# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set
# CONFIG_CRYPTO_DES is not set
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SALSA20 is not set
# CONFIG_CRYPTO_SALSA20_X86_64 is not set
# CONFIG_CRYPTO_SEED is not set
# CONFIG_CRYPTO_SERPENT is not set
# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set
# CONFIG_CRYPTO_TEA is not set
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_TWOFISH_X86_64 is not set
# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set
# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set
#
# Compression
#
# CONFIG_CRYPTO_DEFLATE is not set
# CONFIG_CRYPTO_ZLIB is not set
CONFIG_CRYPTO_LZO=y
# CONFIG_CRYPTO_LZ4 is not set
# CONFIG_CRYPTO_LZ4HC is not set
#
# Random Number Generation
#
# CONFIG_CRYPTO_ANSI_CPRNG is not set
# CONFIG_CRYPTO_USER_API_HASH is not set
# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
CONFIG_CRYPTO_HW=y
CONFIG_CRYPTO_DEV_PADLOCK=y
# CONFIG_CRYPTO_DEV_PADLOCK_AES is not set
# CONFIG_CRYPTO_DEV_PADLOCK_SHA is not set
CONFIG_ASYMMETRIC_KEY_TYPE=y
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
CONFIG_PUBLIC_KEY_ALGO_RSA=y
CONFIG_X509_CERTIFICATE_PARSER=y
CONFIG_HAVE_KVM=y
CONFIG_HAVE_KVM_IRQCHIP=y
CONFIG_HAVE_KVM_IRQ_ROUTING=y
CONFIG_HAVE_KVM_EVENTFD=y
CONFIG_KVM_APIC_ARCHITECTURE=y
CONFIG_KVM_MMIO=y
CONFIG_KVM_ASYNC_PF=y
CONFIG_HAVE_KVM_MSI=y
CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y
CONFIG_VIRTUALIZATION=y
CONFIG_KVM=m
CONFIG_KVM_INTEL=m
# CONFIG_KVM_AMD is not set
# CONFIG_KVM_MMU_AUDIT is not set
CONFIG_KVM_DEVICE_ASSIGNMENT=y
CONFIG_BINARY_PRINTF=y
#
# Library routines
#
CONFIG_RAID6_PQ=m
CONFIG_BITREVERSE=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_NET_UTILS=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_IO=y
CONFIG_PERCPU_RWSEM=y
# CONFIG_CRC_CCITT is not set
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=m
CONFIG_CRC32=y
# CONFIG_CRC32_SELFTEST is not set
CONFIG_CRC32_SLICEBY8=y
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
# CONFIG_CRC32_BIT is not set
# CONFIG_CRC7 is not set
CONFIG_LIBCRC32C=m
# CONFIG_CRC8 is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=m
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_XZ_DEC=y
CONFIG_XZ_DEC_X86=y
CONFIG_XZ_DEC_POWERPC=y
CONFIG_XZ_DEC_IA64=y
CONFIG_XZ_DEC_ARM=y
CONFIG_XZ_DEC_ARMTHUMB=y
CONFIG_XZ_DEC_SPARC=y
CONFIG_XZ_DEC_BCJ=y
# CONFIG_XZ_DEC_TEST is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_NLATTR=y
CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
CONFIG_AVERAGE=y
CONFIG_CLZ_TAB=y
# CONFIG_CORDIC is not set
CONFIG_DDR=y
CONFIG_MPILIB=y
CONFIG_SIGNATURE=y
CONFIG_OID_REGISTRY=y
CONFIG_UCS2_STRING=y
CONFIG_FONT_SUPPORT=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
[-- Attachment #7: fakeroot_DEBUG.txt --]
[-- Type: text/plain, Size: 1872 bytes --]
To debug fakeroot, one may try:
Start faked in xterm 1:
$ faked --foreground --debug
51452231:280
# First number here is the 'FAKEROOTKEY', second is the pid of
# faked. Both to be used later.
# Later, when programs go using faked, a _lot_ of debug output
# will be shown here.
Send signals to faked in xterm 2:
#Whenever you want to get info about the internal inode data
#faked is keeping, do:
kill -s USR1 280
And the 'real' program runs (at your choise) in another xterm [3], or gdb
In an xterm, do:
$ LD_PRELOAD=/usr/lib/libfakeroot/libfakeroot.so.0
$ FAKEROOTKEY=51452231 # number output by faked, xterm 1
$ export LD_PRELOAD FAKEROOTKEY
$ my-prog #start anything you like.
Or, if you want to run the programme in a gdb session:
To make specifying the paths easier, put libfakeroot.c, libfakeroot.so.0.0.1
and the binary you want to run in the same directory (libfakeroot.so.0.0.1
is put in ./.libs/libfakeroot.so.0.0.1 by libtool during compilation, copy
it out there).
Then, in gdb do:
$ gdb ./ls #as an example, I run 'ls'.
(gdb) set env LD_PRELOAD=/home/joost/maintain/vpathlib/libfakeroot-0.1/libfakeroot.so.0.0.1
(gdb) set env FAKEROOTKEY=51452231 #number from xterm 1.
# Or wherever you've got your libfakeroot.so.0.0.1
(gdb) break libfakeroot.c:181
Breakpoint 1 at 0x4000ecc8: file libfakeroot.c, line 181.
(gdb) run -al
Starting program: /home/joost/maintain/vpathlib/libfakeroot-0.1/ls -al
Temporarily disabling shared library breakpoints:
1
Breakpoint 1, __lxstat (ver=134556187, file_name=0x0, statbuf=0x80529c8)
at libfakeroot.c:208
208 struct stat *statbuf){
# OK, and there I've found a bug -- ver can only be '0' in the
# current libc6 (glibc2). Unfortunately, it didn't reproduce.
^ permalink raw reply related [flat|nested] 33+ messages in thread
* Re: linux-next: Tree for Jun 21 [ BROKEN ipc/ipc-msg ]
2013-06-25 16:10 ` Sedat Dilek
@ 2013-06-25 20:33 ` Davidlohr Bueso
2013-06-25 21:41 ` Sedat Dilek
0 siblings, 1 reply; 33+ messages in thread
From: Davidlohr Bueso @ 2013-06-25 20:33 UTC (permalink / raw)
To: sedat.dilek
Cc: linux-next, linux-kernel, Stephen Rothwell, Andrew Morton,
linux-mm, Andi Kleen, Rik van Riel, Manfred Spraul,
Jonathan Gonzalez
On Tue, 2013-06-25 at 18:10 +0200, Sedat Dilek wrote:
[...]
> I did some more testing with Linux-Testing-Project (release:
> ltp-full-20130503) and next-20130624 (Monday) which has still the
> issue, here.
>
> If I revert the mentioned two commits from my local
> revert-ipc-next20130624-5089fd1c6a6a-ab9efc2d0db5 GIT repo, everything
> is fine.
>
> I have tested the LTP ***IPC*** and ***SYSCALLS*** testcases.
>
> root# ./runltp -f ipc
>
> root# ./runltp -f syscalls
These are nice test cases!
So I was able to reproduce the issue with LTP and manually running
msgctl08. We seemed to be racing at find_msg(), so take to q_perm lock
before calling it. The following changes fixes the issue and passes all
'runltp -f syscall' tests, could you give it a try?
Thanks,
Davidlohr
diff --git a/ipc/msg.c b/ipc/msg.c
index a1cf70e..a1f7d84 100644
--- a/ipc/msg.c
+++ b/ipc/msg.c
@@ -895,6 +895,7 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
if (ipcperms(ns, &msq->q_perm, S_IRUGO))
goto out_unlock1;
+ ipc_lock_object(&msq->q_perm);
msg = find_msg(msq, &msgtyp, mode);
if (!IS_ERR(msg)) {
/*
@@ -903,7 +904,7 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
*/
if ((bufsz < msg->m_ts) && !(msgflg & MSG_NOERROR)) {
msg = ERR_PTR(-E2BIG);
- goto out_unlock1;
+ goto out_unlock0;
}
/*
* If we are copying, then do not unlink message and do
@@ -911,10 +912,9 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
*/
if (msgflg & MSG_COPY) {
msg = copy_msg(msg, copy);
- goto out_unlock1;
+ goto out_unlock0;
}
- ipc_lock_object(&msq->q_perm);
list_del(&msg->m_list);
msq->q_qnum--;
msq->q_rtime = get_seconds();
@@ -930,10 +930,9 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
/* No message waiting. Wait for a message */
if (msgflg & IPC_NOWAIT) {
msg = ERR_PTR(-ENOMSG);
- goto out_unlock1;
+ goto out_unlock0;
}
- ipc_lock_object(&msq->q_perm);
list_add_tail(&msr_d.r_list, &msq->q_receivers);
msr_d.r_tsk = current;
msr_d.r_msgtype = msgtyp;
Thanks,
Davidlohr
>
> IPC seems to be fine for both -1 (UNPATCHED) and -2 (with attached two
> REVERTED patches) kernel, but -1 hangs in the SYSCALLS/msgctl08 test.
>
> Previous msgctl07 is OK, but ***msgctl08*** produces this:
> ...
> <<<test_start>>>
> tag=msgctl07 stime=1372174934
> cmdline="msgctl07"
> contacts=""
> analysis=exit
> <<<test_output>>>
> msgctl07 1 TPASS : msgctl07 ran successfully!
> <<<execution_status>>>
> initiation_status="ok"
> duration=20 termination_type=exited termination_id=0 corefile=no
> cutime=1995 cstime=3
> <<<test_end>>>
> <<<test_start>>>
> tag=msgctl08 stime=1372174954
> cmdline="msgctl08"
> contacts=""
> analysis=exit
> <<<test_output>>>
> msgctl08 0 TWARN : Verify error in child 0, *buf = 28, val = 27, size = 8
> msgctl08 1 TFAIL : in child 0 read # = 73,key = 127
> msgctl08 0 TWARN : Verify error in child 3, *buf = ffffff8a, val
> = ffffff89, size = 52
> msgctl08 1 TFAIL : in child 3 read # = 157,key = 189
> msgctl08 0 TWARN : Verify error in child 2, *buf = ffffff87, val
> = ffffff86, size = 71
> msgctl08 1 TFAIL : in child 2 read # = 15954,key = 3e86
> msgctl08 0 TWARN : Verify error in child 12, *buf = ffffffa9,
> val = ffffffa8, size = 22
> msgctl08 1 TFAIL : in child 12 read # = 12904,key = 32a8
> msgctl08 0 TWARN : Verify error in child 13, *buf = 36, val =
> 35, size = 27
> msgctl08 1 TFAIL : in child 13 read # = 10442,key = 2935
> msgctl08 0 TWARN : Verify error in child 10, *buf = ffffff86,
> val = ffffff85, size = 63
> msgctl08 1 TFAIL : in child 10 read # = 19713,key = 4d85
> msgctl08 0 TWARN : Verify error in child 4, *buf = 4c, val = 4b, size = 83
> msgctl08 1 TFAIL : in child 4 read # = 23082,key = 5a4b
> msgctl08 0 TWARN : Verify error in child 15, *buf = 61, val =
> 60, size = 94
> msgctl08 1 TFAIL : in child 15 read # = 23554,key = 5c60
> msgctl08 0 TWARN : Verify error in child 11, *buf = 3b, val =
> 3a, size = 22
> msgctl08 1 TFAIL : in child 11 read # = 26468,key = 683a
> msgctl08 0 TWARN : Verify error in child 5, *buf = ffffffb5, val
> = ffffffb4, size = 41
> msgctl08 1 TFAIL : in child 5 read # = 31867,key = 7cb4
> msgctl08 0 TWARN : Verify error in child 1, *buf = 7d, val = 7c, size = 59
> msgctl08 1 TFAIL : in child 1 read # = 41063,key = a07c
> msgctl08 0 TWARN : Verify error in child 7, *buf = fffffff2, val
> = fffffff1, size = 83
> msgctl08 1 TFAIL : in child 7 read # = 38476,key = 96f1
> msgctl08 0 TWARN : Verify error in child 9, *buf = ffffff8b, val
> = ffffff8a, size = 40
> msgctl08 1 TFAIL : in child 9 read # = 90438,key = 1618a
> msgctl08 0 TWARN : Verify error in child 8, *buf = ffffffcd, val
> = ffffffcc, size = 38
> msgctl08 1 TFAIL : in child 8 read # = 88712,key = 15acc
> msgctl08 0 TWARN : Verify error in child 6, *buf = 6, val = 5, size = 1
> msgctl08 1 TFAIL : in child 6 read # = 83297,key = 14605
> ***** STOPPED *****
>
> See "ltp-full-20130503.git/testcases/kernel/syscalls/ipc/msgctl/msgctl08.c" [1].
>
> NOTE: Debian/Ubuntu users with dash as default shell require the patch from [2].
>
> - Sedat -
>
> P.S.: Unfortunately, fakeroot DEBUG doc file is outdated.
>
> [1] https://github.com/linux-test-project/ltp/blob/master/testcases/kernel/syscalls/ipc/msgctl/msgctl08.c
> [2] https://github.com/linux-test-project/ltp/commit/b88fa5b6ec5a29834a0e52df7b22b9bb47fe0379
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply related [flat|nested] 33+ messages in thread
* Re: linux-next: Tree for Jun 21 [ BROKEN ipc/ipc-msg ]
2013-06-25 20:33 ` Davidlohr Bueso
@ 2013-06-25 21:41 ` Sedat Dilek
2013-06-25 23:29 ` Davidlohr Bueso
0 siblings, 1 reply; 33+ messages in thread
From: Sedat Dilek @ 2013-06-25 21:41 UTC (permalink / raw)
To: Davidlohr Bueso
Cc: linux-next, linux-kernel, Stephen Rothwell, Andrew Morton,
linux-mm, Andi Kleen, Rik van Riel, Manfred Spraul,
Jonathan Gonzalez
[-- Attachment #1: Type: text/plain, Size: 7229 bytes --]
On Tue, Jun 25, 2013 at 10:33 PM, Davidlohr Bueso
<davidlohr.bueso@hp.com> wrote:
> On Tue, 2013-06-25 at 18:10 +0200, Sedat Dilek wrote:
> [...]
>
>> I did some more testing with Linux-Testing-Project (release:
>> ltp-full-20130503) and next-20130624 (Monday) which has still the
>> issue, here.
>>
>> If I revert the mentioned two commits from my local
>> revert-ipc-next20130624-5089fd1c6a6a-ab9efc2d0db5 GIT repo, everything
>> is fine.
>>
>> I have tested the LTP ***IPC*** and ***SYSCALLS*** testcases.
>>
>> root# ./runltp -f ipc
>>
>> root# ./runltp -f syscalls
>
> These are nice test cases!
>
> So I was able to reproduce the issue with LTP and manually running
> msgctl08. We seemed to be racing at find_msg(), so take to q_perm lock
> before calling it. The following changes fixes the issue and passes all
> 'runltp -f syscall' tests, could you give it a try?
>
Cool, that fixes the issues here.
Building with fakeroot & make deb-pkg is now OK, again.
The syscalls/msgctl08 test-case ran successfully!
<<<test_start>>>
tag=msgctl08 stime=1372195926
cmdline="msgctl08"
contacts=""
analysis=exit
<<<test_output>>>
msgctl08 1 TPASS : msgctl08 ran successfully!
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=317 cstime=729
<<<test_end>>>
( NOTE: I had to refresh your patch against next-20130624. )
Feel free to add a Reported-by/Tested-by!
Thanks!
- Sedat -
> Thanks,
> Davidlohr
>
> diff --git a/ipc/msg.c b/ipc/msg.c
> index a1cf70e..a1f7d84 100644
> --- a/ipc/msg.c
> +++ b/ipc/msg.c
> @@ -895,6 +895,7 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
> if (ipcperms(ns, &msq->q_perm, S_IRUGO))
> goto out_unlock1;
>
> + ipc_lock_object(&msq->q_perm);
> msg = find_msg(msq, &msgtyp, mode);
> if (!IS_ERR(msg)) {
> /*
> @@ -903,7 +904,7 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
> */
> if ((bufsz < msg->m_ts) && !(msgflg & MSG_NOERROR)) {
> msg = ERR_PTR(-E2BIG);
> - goto out_unlock1;
> + goto out_unlock0;
> }
> /*
> * If we are copying, then do not unlink message and do
> @@ -911,10 +912,9 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
> */
> if (msgflg & MSG_COPY) {
> msg = copy_msg(msg, copy);
> - goto out_unlock1;
> + goto out_unlock0;
> }
>
> - ipc_lock_object(&msq->q_perm);
> list_del(&msg->m_list);
> msq->q_qnum--;
> msq->q_rtime = get_seconds();
> @@ -930,10 +930,9 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
> /* No message waiting. Wait for a message */
> if (msgflg & IPC_NOWAIT) {
> msg = ERR_PTR(-ENOMSG);
> - goto out_unlock1;
> + goto out_unlock0;
> }
>
> - ipc_lock_object(&msq->q_perm);
> list_add_tail(&msr_d.r_list, &msq->q_receivers);
> msr_d.r_tsk = current;
> msr_d.r_msgtype = msgtyp;
>
>
> Thanks,
> Davidlohr
>>
>> IPC seems to be fine for both -1 (UNPATCHED) and -2 (with attached two
>> REVERTED patches) kernel, but -1 hangs in the SYSCALLS/msgctl08 test.
>>
>> Previous msgctl07 is OK, but ***msgctl08*** produces this:
>> ...
>> <<<test_start>>>
>> tag=msgctl07 stime=1372174934
>> cmdline="msgctl07"
>> contacts=""
>> analysis=exit
>> <<<test_output>>>
>> msgctl07 1 TPASS : msgctl07 ran successfully!
>> <<<execution_status>>>
>> initiation_status="ok"
>> duration=20 termination_type=exited termination_id=0 corefile=no
>> cutime=1995 cstime=3
>> <<<test_end>>>
>> <<<test_start>>>
>> tag=msgctl08 stime=1372174954
>> cmdline="msgctl08"
>> contacts=""
>> analysis=exit
>> <<<test_output>>>
>> msgctl08 0 TWARN : Verify error in child 0, *buf = 28, val = 27, size = 8
>> msgctl08 1 TFAIL : in child 0 read # = 73,key = 127
>> msgctl08 0 TWARN : Verify error in child 3, *buf = ffffff8a, val
>> = ffffff89, size = 52
>> msgctl08 1 TFAIL : in child 3 read # = 157,key = 189
>> msgctl08 0 TWARN : Verify error in child 2, *buf = ffffff87, val
>> = ffffff86, size = 71
>> msgctl08 1 TFAIL : in child 2 read # = 15954,key = 3e86
>> msgctl08 0 TWARN : Verify error in child 12, *buf = ffffffa9,
>> val = ffffffa8, size = 22
>> msgctl08 1 TFAIL : in child 12 read # = 12904,key = 32a8
>> msgctl08 0 TWARN : Verify error in child 13, *buf = 36, val =
>> 35, size = 27
>> msgctl08 1 TFAIL : in child 13 read # = 10442,key = 2935
>> msgctl08 0 TWARN : Verify error in child 10, *buf = ffffff86,
>> val = ffffff85, size = 63
>> msgctl08 1 TFAIL : in child 10 read # = 19713,key = 4d85
>> msgctl08 0 TWARN : Verify error in child 4, *buf = 4c, val = 4b, size = 83
>> msgctl08 1 TFAIL : in child 4 read # = 23082,key = 5a4b
>> msgctl08 0 TWARN : Verify error in child 15, *buf = 61, val =
>> 60, size = 94
>> msgctl08 1 TFAIL : in child 15 read # = 23554,key = 5c60
>> msgctl08 0 TWARN : Verify error in child 11, *buf = 3b, val =
>> 3a, size = 22
>> msgctl08 1 TFAIL : in child 11 read # = 26468,key = 683a
>> msgctl08 0 TWARN : Verify error in child 5, *buf = ffffffb5, val
>> = ffffffb4, size = 41
>> msgctl08 1 TFAIL : in child 5 read # = 31867,key = 7cb4
>> msgctl08 0 TWARN : Verify error in child 1, *buf = 7d, val = 7c, size = 59
>> msgctl08 1 TFAIL : in child 1 read # = 41063,key = a07c
>> msgctl08 0 TWARN : Verify error in child 7, *buf = fffffff2, val
>> = fffffff1, size = 83
>> msgctl08 1 TFAIL : in child 7 read # = 38476,key = 96f1
>> msgctl08 0 TWARN : Verify error in child 9, *buf = ffffff8b, val
>> = ffffff8a, size = 40
>> msgctl08 1 TFAIL : in child 9 read # = 90438,key = 1618a
>> msgctl08 0 TWARN : Verify error in child 8, *buf = ffffffcd, val
>> = ffffffcc, size = 38
>> msgctl08 1 TFAIL : in child 8 read # = 88712,key = 15acc
>> msgctl08 0 TWARN : Verify error in child 6, *buf = 6, val = 5, size = 1
>> msgctl08 1 TFAIL : in child 6 read # = 83297,key = 14605
>> ***** STOPPED *****
>>
>> See "ltp-full-20130503.git/testcases/kernel/syscalls/ipc/msgctl/msgctl08.c" [1].
>>
>> NOTE: Debian/Ubuntu users with dash as default shell require the patch from [2].
>>
>> - Sedat -
>>
>> P.S.: Unfortunately, fakeroot DEBUG doc file is outdated.
>>
>> [1] https://github.com/linux-test-project/ltp/blob/master/testcases/kernel/syscalls/ipc/msgctl/msgctl08.c
>> [2] https://github.com/linux-test-project/ltp/commit/b88fa5b6ec5a29834a0e52df7b22b9bb47fe0379
>
>
[-- Attachment #2: runltp-f-syscalls_3.10.0-rc7-next20130624-3-iniza-small_dash.txt --]
[-- Type: text/plain, Size: 760309 bytes --]
INFO: creating /opt/ltp/results directory
Checking for required user/group ids
'nobody' user id and group found.
'bin' user id and group found.
'daemon' user id and group found.
Users group found.
Sys group found.
Required users/groups exist.
If some fields are empty or look unusual you may have an old version.
Compare to the current minimal requirements in Documentation/Changes.
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04.2 LTS"
NAME="Ubuntu"
VERSION="12.04.2 LTS, Precise Pangolin"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu precise (12.04.2 LTS)"
VERSION_ID="12.04"
Linux fambox 3.10.0-rc7-next20130624-3-iniza-small #1 SMP Tue Jun 25 23:03:26 CEST 2013 x86_64 x86_64 x86_64 GNU/Linux
Gnu C gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Gnu make 3.81
util-linux linux 2.20.1
mount linux 2.20.1 (with libblkid and selinux support)
modutils 6
e2fsprogs 1.42
PPP 2.4.5
Linux C Library > libc.2.15
Dynamic linker (ldd) 2.15
Procps 3.2.8
Net-tools 1.60
iproute2 iproute2-ss121211
Kbd 1.15.2
Sh-utils 8.13
Modules Loaded parport_pc arc4 ppdev rfcomm bnep iwldvm snd_hda_codec_hdmi mac80211 snd_hda_codec_realtek snd_hda_intel snd_hda_codec uvcvideo snd_hwdep snd_pcm videobuf2_vmalloc joydev videobuf2_memops videobuf2_core snd_page_alloc videodev snd_seq_midi snd_seq_midi_event i915 iwlwifi snd_rawmidi snd_seq snd_timer snd_seq_device psmouse btusb cfg80211 i2c_algo_bit snd bluetooth drm_kms_helper soundcore serio_raw samsung_laptop drm lpc_ich wmi video mac_hid lp parport hid_generic usbhid hid usb_storage r8169 mii
free reports:
total used free shared buffers cached
Mem: 3945272 3817332 127940 0 1099044 1801456
-/+ buffers/cache: 916832 3028440
Swap: 262140 88 262052
/proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping : 7
microcode : 0x28
cpu MHz : 1936.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 3192.70
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping : 7
microcode : 0x28
cpu MHz : 1920.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 3192.70
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping : 7
microcode : 0x28
cpu MHz : 1952.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 3192.70
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping : 7
microcode : 0x28
cpu MHz : 2016.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 3192.70
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
10240+0 records in
10240+0 records out
10240000 bytes (10 MB) copied, 0.054355 s, 188 MB/s
mke2fs 1.42 (29-Nov-2011)
Discarding device blocks: 1024/10000\b\b\b\b\b\b\b\b\b\b\b \b\b\b\b\b\b\b\b\b\b\bdone
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
Stride=0 blocks, Stripe width=0 blocks
2512 inodes, 10000 blocks
500 blocks (5.00%) reserved for the super user
First data block=1
Maximum filesystem blocks=10485760
2 block groups
8192 blocks per group, 8192 fragments per group
1256 inodes per group
Superblock backups stored on blocks:
8193
Allocating group tables: 0/2\b\b\b1/2\b\b\b \b\b\bdone
Writing inode tables: 0/2\b\b\b1/2\b\b\b \b\b\bdone
Creating journal (1024 blocks): done
Writing superblocks and filesystem accounting information: 0/2\b\b\b1/2\b\b\b \b\b\bdone
COMMAND: /opt/ltp/bin/ltp-pan -e -S -a 24197 -n 24197 -p -f /tmp/ltp-LbqYZRF5cO/alltests -l /opt/ltp/results/LTP_RUN_ON-2013_Jun_25-23h_25m_10s.log -C /opt/ltp/output/LTP_RUN_ON-2013_Jun_25-23h_25m_10s.failed
-e LOG File: /opt/ltp/results/LTP_RUN_ON-2013_Jun_25-23h_25m_10s.log
-e FAILED COMMAND File: /opt/ltp/output/LTP_RUN_ON-2013_Jun_25-23h_25m_10s.failed
Running tests.......
<<<test_start>>>
tag=abort01 stime=1372195512
cmdline="ulimit -c 1024;abort01"
contacts=""
analysis=exit
<<<test_output>>>
abort01 1 TPASS : abort dumped core
abort01 2 TPASS : abort raised SIGIOT
abort01 1 TPASS : abort dumped core
abort01 2 TPASS : abort raised SIGIOT
abort01 3 TPASS : abort dumped core
abort01 4 TPASS : abort raised SIGIOT
abort01 1 TPASS : abort dumped core
abort01 2 TPASS : abort raised SIGIOT
abort01 3 TPASS : abort dumped core
abort01 4 TPASS : abort raised SIGIOT
abort01 5 TPASS : abort dumped core
abort01 6 TPASS : abort raised SIGIOT
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=accept01 stime=1372195513
cmdline="accept01"
contacts=""
analysis=exit
<<<test_output>>>
accept01 1 TPASS : bad file descriptor successful
accept01 2 TPASS : bad file descriptor successful
accept01 3 TPASS : invalid socket buffer successful
accept01 4 TPASS : invalid salen successful
accept01 5 TPASS : invalid salen successful
accept01 6 TPASS : no queued connections successful
accept01 7 TPASS : UDP accept successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=accept4_01 stime=1372195513
cmdline="accept4_01"
contacts=""
analysis=exit
<<<test_output>>>
accept04_01 1 TPASS : Test passed
accept04_01 2 TPASS : Test passed
accept04_01 3 TPASS : Test passed
accept04_01 4 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=access01 stime=1372195513
cmdline="access01"
contacts=""
analysis=exit
<<<test_output>>>
access01 1 TPASS : access(accessfile, F_OK) returned 0
access01 2 TPASS : access(accessfile, X_OK) returned 0
access01 3 TPASS : access(accessfile, W_OK) returned 0
access01 4 TPASS : access(accessfile, R_OK) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=access02 stime=1372195513
cmdline="access02"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=access03 stime=1372195513
cmdline="access03"
contacts=""
analysis=exit
<<<test_output>>>
access03 1 TPASS : access(0x7f3d0125e000, R_OK) failed as expected with EFAULT
access03 2 TPASS : access(0x7f3d0125e000, W_OK) failed as expected with EFAULT
access03 3 TPASS : access(0x7f3d0125e000, X_OK) failed as expected with EFAULT
access03 4 TPASS : access(0x7f3d0125e000, F_OK) failed as expected with EFAULT
access03 5 TPASS : access(0x1f1b001, R_OK) failed as expected with EFAULT
access03 6 TPASS : access(0x1f1b001, W_OK) failed as expected with EFAULT
access03 7 TPASS : access(0x1f1b001, X_OK) failed as expected with EFAULT
access03 8 TPASS : access(0x1f1b001, F_OK) failed as expected with EFAULT
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=access04 stime=1372195513
cmdline="access04"
contacts=""
analysis=exit
<<<test_output>>>
access04 1 TPASS : functionality of access(testdir/testfile, F_OK) ok
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=access05 stime=1372195513
cmdline="access05"
contacts=""
analysis=exit
<<<test_output>>>
access05 1 TPASS : access failed as expected: TEST_ERRNO=EACCES(13): Permission denied
access05 2 TPASS : access failed as expected: TEST_ERRNO=EACCES(13): Permission denied
access05 3 TPASS : access failed as expected: TEST_ERRNO=EACCES(13): Permission denied
access05 4 TPASS : access failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
access05 5 TPASS : access failed as expected: TEST_ERRNO=EFAULT(14): Bad address
access05 6 TPASS : access failed as expected: TEST_ERRNO=EFAULT(14): Bad address
access05 7 TPASS : access failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
access05 8 TPASS : access failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=acct01 stime=1372195513
cmdline="acct01"
contacts=""
analysis=exit
<<<test_output>>>
acct01 1 TPASS : Failed with EISDIR as expected
acct01 2 TPASS : Failed with EACCES as expected
acct01 3 TPASS : Failed with ENOENT as expected
acct01 4 TPASS : Failed with ENOTDIR as expected
acct01 5 TPASS : Failed with EPERM as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=acct02 stime=1372195513
cmdline="acct02"
contacts=""
analysis=exit
<<<test_output>>>
acct02 1 TPASS : Received expected error: EPERM
acct02 2 TPASS : Received expected error: EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=add_key01 stime=1372195513
cmdline="add_key01"
contacts=""
analysis=exit
<<<test_output>>>
add_key01 1 TPASS : add_key call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=add_key02 stime=1372195513
cmdline="add_key02"
contacts=""
analysis=exit
<<<test_output>>>
add_key02 0 TINFO : called add_key() with wrong args got EXPECTED errno: TEST_ERRNO=EINVAL(22): Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=adjtimex01 stime=1372195513
cmdline="adjtimex01"
contacts=""
analysis=exit
<<<test_output>>>
adjtimex01 1 TPASS : adjtimex() with mode 16447 returned 5
adjtimex01 2 TPASS : adjtimex() with mode 32769 returned 5
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=adjtimex02 stime=1372195513
cmdline="adjtimex02"
contacts=""
analysis=exit
<<<test_output>>>
adjtimex02 1 TPASS : Test Passed, adjtimex() returned -1: TEST_ERRNO=EFAULT(14): Bad address
adjtimex02 2 TPASS : Test Passed, adjtimex() returned -1: TEST_ERRNO=EINVAL(22): Invalid argument
adjtimex02 3 TPASS : Test Passed, adjtimex() returned -1: TEST_ERRNO=EINVAL(22): Invalid argument
adjtimex02 4 TCONF : this kernel normalizes buf.offset value if it is outside the acceptable range.
adjtimex02 5 TCONF : this kernel normalizes buf.offset value if it is outside the acceptable range.
adjtimex02 6 TPASS : Test Passed, adjtimex() returned -1: TEST_ERRNO=EPERM(1): Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm01 stime=1372195513
cmdline="alarm01"
contacts=""
analysis=exit
<<<test_output>>>
alarm01 1 TPASS : alarm(1) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm02 stime=1372195513
cmdline="alarm02"
contacts=""
analysis=exit
<<<test_output>>>
alarm02 1 TPASS : alarm(18446744073709551615) returned 0 as expected for value -1
alarm02 2 TPASS : alarm(18446744073709551615) returned 0 as expected for value ULONG_MAX
alarm02 3 TPASS : alarm(0) returned 0 as expected for value ULONG_MAX+1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=alarm03 stime=1372195513
cmdline="alarm03"
contacts=""
analysis=exit
<<<test_output>>>
24366: alarm(100), fork, alarm(0) child's alarm returned 0
alarm03 2 TPASS : alarm(100), fork, alarm(0) parent's alarm returned 100
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm05 stime=1372195513
cmdline="alarm05"
contacts=""
analysis=exit
<<<test_output>>>
alarm05 1 TPASS : Functionality of alarm(5) successful
<<<execution_status>>>
initiation_status="ok"
duration=8 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm06 stime=1372195521
cmdline="alarm06"
contacts=""
analysis=exit
<<<test_output>>>
alarm06 1 TPASS : Functionality of alarm(0) successful
<<<execution_status>>>
initiation_status="ok"
duration=15 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=alarm07 stime=1372195536
cmdline="alarm07"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=asyncio02 stime=1372195542
cmdline="asyncio02"
contacts=""
analysis=exit
<<<test_output>>>
asyncio02 1 TPASS : More than BUFSIZE bytes multiple synchronous writes to a file check out ok
asyncio02 2 TPASS : BUFSIZE bytes multiple synchronous writes to a file checks out ok
asyncio02 3 TPASS : Less than BUFSIZE bytes multiple synchronous writes to a file checks out ok
asyncio02 4 TPASS : More than BUFSIZE bytes multiple synchronous writes to a file check out ok
asyncio02 5 TPASS : BUFSIZE bytes multiple synchronous writes to a file checks out ok
asyncio02 6 TPASS : Less than BUFSIZE bytes multiple synchronous writes to a file checks out ok
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=bind01 stime=1372195542
cmdline="bind01"
contacts=""
analysis=exit
<<<test_output>>>
bind01 1 TPASS : invalid sockaddr successful
bind01 2 TPASS : invalid salen successful
bind01 3 TPASS : invalid socket successful
bind01 4 TPASS : INADDR_ANYPORT successful
bind01 5 TPASS : UNIX-domain of current directory successful
bind01 6 TPASS : non-local address successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=bind02 stime=1372195542
cmdline="bind02"
contacts=""
analysis=exit
<<<test_output>>>
bind02 0 TINFO : Defaulting to user nobody
bind02 0 TINFO : Socket will try to be bind by user: nobody, group: nogroup
bind02 1 TPASS : correct error
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=bdflush01 stime=1372195542
cmdline="bdflush01"
contacts=""
analysis=exit
<<<test_output>>>
bdflush01 2 TCONF : syscall __NR_bdflush not supported on your arch
bdflush01 3 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=brk01 stime=1372195542
cmdline="brk01"
contacts=""
analysis=exit
<<<test_output>>>
brk01 1 TPASS : brk(34417196) returned 0, new size verified by sbrk
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=capget01 stime=1372195542
cmdline="capget01"
contacts=""
analysis=exit
<<<test_output>>>
capget01 1 TPASS : capget() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=capget02 stime=1372195542
cmdline="capget02"
contacts=""
analysis=exit
<<<test_output>>>
capget02 1 TPASS : capget failed as expected: TEST_ERRNO=EFAULT(14): Bad address
capget02 2 TPASS : capget failed as expected: TEST_ERRNO=EFAULT(14): Bad address
capget02 3 TPASS : capget failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
capget02 4 TPASS : capget failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
capget02 5 TPASS : capget failed as expected: TEST_ERRNO=ESRCH(3): No such process
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=capset01 stime=1372195542
cmdline="capset01"
contacts=""
analysis=exit
<<<test_output>>>
capset01 1 TPASS : capset() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=capset02 stime=1372195542
cmdline="capset02"
contacts=""
analysis=exit
<<<test_output>>>
capset02 1 TPASS : capset() returned -1, errno: EFAULT
capset02 2 TPASS : capset() returned -1, errno: EFAULT
capset02 3 TPASS : capset() returned -1, errno: EINVAL
capset02 4 TPASS : capset() returned -1, errno: EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=cacheflush01 stime=1372195542
cmdline="cacheflush01"
contacts=""
analysis=exit
<<<test_output>>>
cacheflush01 1 TCONF : syscall __NR_cacheflush not supported on your arch
cacheflush01 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chdir01 stime=1372195542
cmdline="chdir01"
contacts=""
analysis=exit
<<<test_output>>>
chdir01 0 TINFO : Found file .
chdir01 0 TINFO : Found file chdirtest
chdir01 0 TINFO : Found file ..
chdir01 1 TPASS : failed as expected with ENOTDIR
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chdir01A stime=1372195542
cmdline="symlink01 -T chdir01"
contacts=""
analysis=exit
<<<test_output>>>
chdir01 1 TPASS : chdir(2) to object file location through symbolic link file is ok
chdir01 2 TPASS : chdir(2) to non-existent object file location through symbolic link file failed as expected
chdir01 3 TPASS : Nested symbolic link access condition caught. ELOOP is returned
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chdir02 stime=1372195542
cmdline="chdir02"
contacts=""
analysis=exit
<<<test_output>>>
chdir02 1 TPASS : chdir(/) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chdir03 stime=1372195542
cmdline="chdir03"
contacts=""
analysis=exit
<<<test_output>>>
got EACCES as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chdir04 stime=1372195542
cmdline="chdir04"
contacts=""
analysis=exit
<<<test_output>>>
chdir04 1 TPASS : failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chdir04 2 TPASS : failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
chdir04 3 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod01 stime=1372195542
cmdline="chmod01"
contacts=""
analysis=exit
<<<test_output>>>
chmod01 1 TPASS : Functionality of chmod(testfile, 0) successful
chmod01 2 TPASS : Functionality of chmod(testfile, 07) successful
chmod01 3 TPASS : Functionality of chmod(testfile, 070) successful
chmod01 4 TPASS : Functionality of chmod(testfile, 0700) successful
chmod01 5 TPASS : Functionality of chmod(testfile, 0777) successful
chmod01 6 TPASS : Functionality of chmod(testfile, 02777) successful
chmod01 7 TPASS : Functionality of chmod(testfile, 04777) successful
chmod01 8 TPASS : Functionality of chmod(testfile, 06777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod01A stime=1372195542
cmdline="symlink01 -T chmod01"
contacts=""
analysis=exit
<<<test_output>>>
chmod01 1 TPASS : chmod(2) of object file permissions through symbolic link file is ok
chmod01 2 TPASS : chmod(2) error when accessing non-existent object through symbolic link is caught
chmod01 3 TPASS : Nested symbolic link access condition caught. ELOOP is returned
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chmod02 stime=1372195542
cmdline="chmod02"
contacts=""
analysis=exit
<<<test_output>>>
chmod02 1 TPASS : chmod(tfile, 0) returned 0
chmod02 2 TPASS : chmod(tfile, 07) returned 0
chmod02 3 TPASS : chmod(tfile, 070) returned 0
chmod02 4 TPASS : chmod(tfile, 0700) returned 0
chmod02 5 TPASS : chmod(tfile, 0777) returned 0
chmod02 6 TPASS : chmod(tfile, 02777) returned 0
chmod02 7 TPASS : chmod(tfile, 04777) returned 0
chmod02 8 TPASS : chmod(tfile, 06777) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod03 stime=1372195542
cmdline="chmod03"
contacts=""
analysis=exit
<<<test_output>>>
chmod03 1 TPASS : Functionality of chmod(testfile, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod04 stime=1372195542
cmdline="chmod04"
contacts=""
analysis=exit
<<<test_output>>>
chmod04 1 TPASS : Functionality of chmod(testdir_4, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod05 stime=1372195542
cmdline="chmod05"
contacts=""
analysis=exit
<<<test_output>>>
chmod05 1 TPASS : Functionality of chmod(testdir, 043777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chmod06 stime=1372195542
cmdline="chmod06"
contacts=""
analysis=exit
<<<test_output>>>
chmod06 1 TPASS : chmod failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
chmod06 2 TPASS : chmod failed as expected: TEST_ERRNO=EACCES(13): Permission denied
chmod06 3 TPASS : chmod failed as expected: TEST_ERRNO=EFAULT(14): Bad address
chmod06 4 TPASS : chmod failed as expected: TEST_ERRNO=EFAULT(14): Bad address
chmod06 5 TPASS : chmod failed as expected: TEST_ERRNO=EFAULT(14): Bad address
chmod06 6 TPASS : chmod failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chmod06 7 TPASS : chmod failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
chmod06 8 TPASS : chmod failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chmod07 stime=1372195542
cmdline="chmod07"
contacts=""
analysis=exit
<<<test_output>>>
chmod07 1 TPASS : Functionality of chmod(testfile, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown01 stime=1372195542
cmdline="chown01"
contacts=""
analysis=exit
<<<test_output>>>
chown01 1 TPASS : chown(t_24398, 0,0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown01_16 stime=1372195542
cmdline="chown01_16"
contacts=""
analysis=exit
<<<test_output>>>
chown01 1 TPASS : chown(t_24399, 0,0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown02 stime=1372195542
cmdline="chown02"
contacts=""
analysis=exit
<<<test_output>>>
chown02 1 TPASS : chown(testfile1, ..) succeeded
chown02 2 TPASS : chown(testfile2, ..) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown02_16 stime=1372195542
cmdline="chown02_16"
contacts=""
analysis=exit
<<<test_output>>>
chown02 1 TPASS : chown(testfile1, ..) succeeded
chown02 2 TPASS : chown(testfile2, ..) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown03 stime=1372195542
cmdline="chown03"
contacts=""
analysis=exit
<<<test_output>>>
chown03 1 TPASS : chown(testfile, ..) was successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown03_16 stime=1372195542
cmdline="chown03_16"
contacts=""
analysis=exit
<<<test_output>>>
chown03 1 TPASS : chown(testfile, ..) was successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chown04 stime=1372195542
cmdline="chown04"
contacts=""
analysis=exit
<<<test_output>>>
chown04 1 TPASS : chown failed: TEST_ERRNO=EPERM(1): Operation not permitted
chown04 2 TPASS : chown failed: TEST_ERRNO=EACCES(13): Permission denied
chown04 3 TPASS : chown failed: TEST_ERRNO=EFAULT(14): Bad address
chown04 4 TPASS : chown failed: TEST_ERRNO=EFAULT(14): Bad address
chown04 5 TPASS : chown failed: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chown04 6 TPASS : chown failed: TEST_ERRNO=ENOENT(2): No such file or directory
chown04 7 TPASS : chown failed: TEST_ERRNO=ENOTDIR(20): Not a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown04_16 stime=1372195542
cmdline="chown04_16"
contacts=""
analysis=exit
<<<test_output>>>
chown04 1 TPASS : chown failed: TEST_ERRNO=EPERM(1): Operation not permitted
chown04 2 TPASS : chown failed: TEST_ERRNO=EACCES(13): Permission denied
chown04 3 TPASS : chown failed: TEST_ERRNO=EFAULT(14): Bad address
chown04 4 TPASS : chown failed: TEST_ERRNO=EFAULT(14): Bad address
chown04 5 TPASS : chown failed: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chown04 6 TPASS : chown failed: TEST_ERRNO=ENOENT(2): No such file or directory
chown04 7 TPASS : chown failed: TEST_ERRNO=ENOTDIR(20): Not a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown05 stime=1372195542
cmdline="chown05"
contacts=""
analysis=exit
<<<test_output>>>
chown05 1 TPASS : chown succeeded
chown05 2 TPASS : chown succeeded
chown05 3 TPASS : chown succeeded
chown05 4 TPASS : chown succeeded
chown05 5 TPASS : chown succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chown05_16 stime=1372195542
cmdline="chown05_16"
contacts=""
analysis=exit
<<<test_output>>>
chown05 1 TPASS : chown succeeded
chown05 2 TPASS : chown succeeded
chown05 3 TPASS : chown succeeded
chown05 4 TPASS : chown succeeded
chown05 5 TPASS : chown succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chroot01 stime=1372195542
cmdline="chroot01"
contacts=""
analysis=exit
<<<test_output>>>
chroot01 1 TPASS : chroot set errno to EPERM.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chroot02 stime=1372195542
cmdline="chroot02"
contacts=""
analysis=exit
<<<test_output>>>
chroot02 1 TPASS : chroot functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=chroot03 stime=1372195542
cmdline="chroot03"
contacts=""
analysis=exit
<<<test_output>>>
chroot03 1 TPASS : failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
chroot03 2 TPASS : failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
chroot03 3 TPASS : failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
chroot03 4 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=chroot04 stime=1372195542
cmdline="chroot04"
contacts=""
analysis=exit
<<<test_output>>>
chroot04 1 TPASS : got EACCESS as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clock_getres01 stime=1372195542
cmdline="clock_getres01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
clock_getres01 0 TINFO : (case00) START
clock_getres01 1 TPASS : (case00) END
clock_getres01 0 TINFO : (case01) START
clock_getres01 2 TPASS : (case01) END
clock_getres01 0 TINFO : (case02) START
clock_getres01 3 TPASS : (case02) END
clock_getres01 0 TINFO : (case03) START
clock_getres01 4 TPASS : (case03) END
clock_getres01 0 TINFO : (case04) START
clock_getres01 5 TPASS : (case04) END
clock_getres01 0 TINFO : (case05) START
clock_getres01 6 TPASS : (case05) END
clock_getres01 7 TPASS : clock_getres call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clock_nanosleep01 stime=1372195542
cmdline="clock_nanosleep01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=0 errno=0 (Success)
RESULT: return value(ret)=0 errno=0 (Success)
EXPECT: return value(ret)=0 errno=0 (Success)
RESULT: return value(ret)=0 errno=0 (Success)
EXPECT: return value(ret)=22 errno=0 (Success)
RESULT: return value(ret)=22 errno=0 (Success)
EXPECT: return value(ret)=22 errno=0 (Success)
RESULT: return value(ret)=22 errno=0 (Success)
EXPECT: return value(ret)=22 errno=0 (Success)
RESULT: return value(ret)=22 errno=0 (Success)
EXPECT: return value(ret)=4 errno=0 (Success)
RESULT: return value(ret)=4 errno=0 (Success)
clock_nanosleep01 0 TINFO : (case00) START
clock_nanosleep01 0 TINFO : check sleep time: (min:480) < 500 < (max:520) (msec)
clock_nanosleep01 0 TINFO : remain time: 0 4200395
clock_nanosleep01 0 TINFO : (case00) END => OK
clock_nanosleep01 0 TINFO : (case01) START
clock_nanosleep01 0 TINFO : check sleep time: (min:480) < 500 < (max:520) (msec)
clock_nanosleep01 0 TINFO : remain time: 0 4200395
clock_nanosleep01 0 TINFO : (case01) END => OK
clock_nanosleep01 0 TINFO : (case02) START
clock_nanosleep01 0 TINFO : remain time: 0 4200395
clock_nanosleep01 0 TINFO : (case02) END => OK
clock_nanosleep01 0 TINFO : (case03) START
clock_nanosleep01 0 TINFO : remain time: 0 4200395
clock_nanosleep01 0 TINFO : (case03) END => OK
clock_nanosleep01 0 TINFO : (case04) START
clock_nanosleep01 0 TINFO : remain time: 0 4200395
clock_nanosleep01 0 TINFO : (case04) END => OK
clock_nanosleep01 0 TINFO : (case05) START
clock_nanosleep01 0 TINFO : remain time: 9 499717032
clock_nanosleep01 0 TINFO : (case05) END => OK
clock_nanosleep01 1 TPASS : clock_nanosleep call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clock_nanosleep2_01 stime=1372195543
cmdline="clock_nanosleep2_01"
contacts=""
analysis=exit
<<<test_output>>>
clock_nanosleep2_01 0 TINFO : Iteration = 0
clock_nanosleep2_01 0 TINFO : Iteration = 1
clock_nanosleep2_01 0 TINFO : Iteration = 2
clock_nanosleep2_01 0 TINFO : Iteration = 3
clock_nanosleep2_01 0 TINFO : Iteration = 4
clock_nanosleep2_01 0 TINFO : Iteration = 5
clock_nanosleep2_01 0 TINFO : Iteration = 6
clock_nanosleep2_01 0 TINFO : Iteration = 7
clock_nanosleep2_01 0 TINFO : Iteration = 8
clock_nanosleep2_01 0 TINFO : Iteration = 9
clock_nanosleep2_01 0 TINFO : Iteration = 10
clock_nanosleep2_01 0 TINFO : Iteration = 11
clock_nanosleep2_01 0 TINFO : Iteration = 12
clock_nanosleep2_01 0 TINFO : Iteration = 13
clock_nanosleep2_01 0 TINFO : Iteration = 14
clock_nanosleep2_01 0 TINFO : Iteration = 15
clock_nanosleep2_01 0 TINFO : Iteration = 16
clock_nanosleep2_01 0 TINFO : Iteration = 17
clock_nanosleep2_01 0 TINFO : Iteration = 18
clock_nanosleep2_01 0 TINFO : Iteration = 19
clock_nanosleep2_01 0 TINFO : Iteration = 20
clock_nanosleep2_01 0 TINFO : Iteration = 21
clock_nanosleep2_01 0 TINFO : Iteration = 22
clock_nanosleep2_01 0 TINFO : Iteration = 23
clock_nanosleep2_01 0 TINFO : Iteration = 24
clock_nanosleep2_01 0 TINFO : Iteration = 25
clock_nanosleep2_01 0 TINFO : Iteration = 26
clock_nanosleep2_01 0 TINFO : Iteration = 27
clock_nanosleep2_01 0 TINFO : Iteration = 28
clock_nanosleep2_01 0 TINFO : Iteration = 29
clock_nanosleep2_01 0 TINFO : Iteration = 30
clock_nanosleep2_01 0 TINFO : Iteration = 31
clock_nanosleep2_01 0 TINFO : Iteration = 32
clock_nanosleep2_01 0 TINFO : Iteration = 33
clock_nanosleep2_01 0 TINFO : Iteration = 34
clock_nanosleep2_01 0 TINFO : Iteration = 35
clock_nanosleep2_01 0 TINFO : Iteration = 36
clock_nanosleep2_01 0 TINFO : Iteration = 37
clock_nanosleep2_01 0 TINFO : Iteration = 38
clock_nanosleep2_01 0 TINFO : Iteration = 39
clock_nanosleep2_01 0 TINFO : Iteration = 40
clock_nanosleep2_01 0 TINFO : Iteration = 41
clock_nanosleep2_01 0 TINFO : Iteration = 42
clock_nanosleep2_01 0 TINFO : Iteration = 43
clock_nanosleep2_01 0 TINFO : Iteration = 44
clock_nanosleep2_01 0 TINFO : Iteration = 45
clock_nanosleep2_01 0 TINFO : Iteration = 46
clock_nanosleep2_01 0 TINFO : Iteration = 47
clock_nanosleep2_01 0 TINFO : Iteration = 48
clock_nanosleep2_01 0 TINFO : Iteration = 49
clock_nanosleep2_01 0 TINFO : Iteration = 50
clock_nanosleep2_01 1 TPASS : clock_nanosleep2() passed
<<<execution_status>>>
initiation_status="ok"
duration=51 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=clone01 stime=1372195594
cmdline="clone01"
contacts=""
analysis=exit
<<<test_output>>>
clone01 1 TPASS : clone returned 24420
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone02 stime=1372195594
cmdline="clone02"
contacts=""
analysis=exit
<<<test_output>>>
clone02 1 TPASS : Test Passed
clone02 1 TPASS : Test Passed
clone02 2 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone03 stime=1372195594
cmdline="clone03"
contacts=""
analysis=exit
<<<test_output>>>
clone03 1 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone04 stime=1372195594
cmdline="clone04"
contacts=""
analysis=exit
<<<test_output>>>
clone04 1 TPASS : expected failure; Got EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone05 stime=1372195594
cmdline="clone05"
contacts=""
analysis=exit
<<<test_output>>>
clone05 1 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=clone06 stime=1372195594
cmdline="clone06"
contacts=""
analysis=exit
<<<test_output>>>
clone06 1 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=clone07 stime=1372195594
cmdline="clone07"
contacts=""
analysis=exit
<<<test_output>>>
clone07 1 TPASS : Use of return() in child did not cause SIGSEGV
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=close01 stime=1372195594
cmdline="close01"
contacts=""
analysis=exit
<<<test_output>>>
close01 1 TPASS : file appears closed
close01 2 TPASS : pipe appears closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=close02 stime=1372195594
cmdline="close02"
contacts=""
analysis=exit
<<<test_output>>>
close02 1 TPASS : call returned EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=close08 stime=1372195594
cmdline="close08"
contacts=""
analysis=exit
<<<test_output>>>
close08 1 TPASS : close(tfile_24435) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=confstr01 stime=1372195594
cmdline="confstr01"
contacts=""
analysis=exit
<<<test_output>>>
confstr01 1 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=connect01 stime=1372195594
cmdline="connect01"
contacts=""
analysis=exit
<<<test_output>>>
connect01 1 TPASS : bad file descriptor successful
connect01 2 TPASS : invalid socket buffer successful
connect01 3 TPASS : invalid salen successful
connect01 4 TPASS : invalid socket successful
connect01 5 TPASS : already connected successful
connect01 6 TPASS : connection refused successful
connect01 7 TPASS : invalid address family successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat01 stime=1372195594
cmdline="creat01"
contacts=""
analysis=exit
<<<test_output>>>
creat01 1 TPASS : file was created and written to successfully
creat01 2 TPASS : creat truncated existing file to 0 bytes
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=creat03 stime=1372195594
cmdline="creat03"
contacts=""
analysis=exit
<<<test_output>>>
creat03 0 TINFO : Created file has mode = 0100444
creat03 1 TPASS : save text bit cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat04 stime=1372195594
cmdline="creat04"
contacts=""
analysis=exit
<<<test_output>>>
creat04 1 TPASS : call failed with EACCES as expected
creat04 2 TPASS : call failed with EACCES as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat05 stime=1372195594
cmdline="creat05"
contacts=""
analysis=exit
<<<test_output>>>
creat05 0 TINFO : first file is #5
creat05 0 TINFO : could not creat file #1025
creat05 1 TPASS : call failed with expected error - EMFILE
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=5
<<<test_end>>>
<<<test_start>>>
tag=creat06 stime=1372195594
cmdline="creat06"
contacts=""
analysis=exit
<<<test_output>>>
creat06 1 TPASS : got expected failure: TEST_ERRNO=EISDIR(21): Is a directory
creat06 2 TPASS : got expected failure: TEST_ERRNO=ENAMETOOLONG(36): File name too long
creat06 3 TPASS : got expected failure: TEST_ERRNO=ENOENT(2): No such file or directory
creat06 4 TPASS : got expected failure: TEST_ERRNO=ENOTDIR(20): Not a directory
creat06 5 TPASS : got expected failure: TEST_ERRNO=EFAULT(14): Bad address
creat06 6 TPASS : got expected failure: TEST_ERRNO=EACCES(13): Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=creat07 stime=1372195594
cmdline="creat07"
contacts=""
analysis=exit
<<<test_output>>>
creat07 1 TPASS : creat received EXTBSY
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat08 stime=1372195594
cmdline="creat08"
contacts=""
analysis=exit
<<<test_output>>>
creat08 1 TPASS : Test passed in block0.
creat08 2 TPASS : Test passed in block1.
creat08 3 TPASS : Test passed in block2.
creat08 4 TPASS : Test passed in block3
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=creat09 stime=1372195595
cmdline="creat09"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup01 stime=1372195595
cmdline="dup01"
contacts=""
analysis=exit
<<<test_output>>>
dup01 1 TPASS : dup(dupfile) returned 6
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=dup02 stime=1372195595
cmdline="dup02"
contacts=""
analysis=exit
<<<test_output>>>
dup02 1 TPASS : dup failed as expected with EBADF
dup02 2 TPASS : dup failed as expected with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup03 stime=1372195595
cmdline="dup03"
contacts=""
analysis=exit
<<<test_output>>>
dup03 1 TPASS : dup failed as expected with EMFILE
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=dup04 stime=1372195595
cmdline="dup04"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup05 stime=1372195595
cmdline="dup05"
contacts=""
analysis=exit
<<<test_output>>>
dup05 1 TPASS : dup returned 6
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup06 stime=1372195595
cmdline="dup06"
contacts=""
analysis=exit
<<<test_output>>>
dup06 1 TPASS : Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup07 stime=1372195595
cmdline="dup07"
contacts=""
analysis=exit
<<<test_output>>>
dup07 1 TPASS : Passed in read mode.
dup07 2 TPASS : Passed in write mode.
dup07 3 TPASS : Passed in read/write mode.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup201 stime=1372195595
cmdline="dup201"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=dup202 stime=1372195595
cmdline="dup202"
contacts=""
analysis=exit
<<<test_output>>>
dup202 1 TPASS : fstat shows new and old modes are the same
dup202 2 TPASS : fstat shows new and old modes are the same
dup202 3 TPASS : fstat shows new and old modes are the same
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup203 stime=1372195595
cmdline="dup203"
contacts=""
analysis=exit
<<<test_output>>>
dup203 0 TINFO : Enter block 1
dup203 0 TINFO : Test duping over an open fd
dup203 1 TPASS : dup2 test 1 functionality is correct
dup203 0 TINFO : Exit block 1
dup203 0 TINFO : Enter block 2
dup203 0 TINFO : Test close on exec flag
dup203 2 TPASS : dup2 test 2 functionality is correct
dup203 0 TINFO : Exit block 2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup204 stime=1372195595
cmdline="dup204"
contacts=""
analysis=exit
<<<test_output>>>
dup204 1 TPASS : original and duped inodes are the same
dup204 2 TPASS : original and duped inodes are the same
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup205 stime=1372195595
cmdline="dup205"
contacts=""
analysis=exit
<<<test_output>>>
dup205 1 TPASS : Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=dup3_01 stime=1372195595
cmdline="dup3_01"
contacts=""
analysis=exit
<<<test_output>>>
dup3_01 1 TPASS : dup3(O_CLOEXEC) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=epoll_create1_01 stime=1372195595
cmdline="epoll_create1_01"
contacts=""
analysis=exit
<<<test_output>>>
epoll_create1_01 1 TPASS : epoll_create1(EPOLL_CLOEXEC) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=epoll01 stime=1372195595
cmdline="epoll-ltp"
contacts=""
analysis=exit
<<<test_output>>>
epoll01 0 TINFO : testing if epoll() system call works
epoll01 0 TINFO : gettimeofday() works
epoll01 0 TINFO : random number seeded with gettimeofday() [seed = 121118] works
epoll01 0 TINFO : Testing epoll_create
epoll01 1 TPASS : epoll_create with negative set size
epoll01 2 TPASS : epoll_create with large set size (size = 2147483647)
epoll01 3 TPASS : epoll_create with large set size (size = 2147483646)
epoll01 4 TPASS : epoll_create with large set size (size = 2147483645)
epoll01 5 TPASS : epoll_create with large set size (size = 2147483644)
epoll01 6 TPASS : epoll_create with large set size (size = 2147483643)
epoll01 7 TPASS : epoll_create with large set size (size = 2147483642)
epoll01 8 TPASS : epoll_create with large set size (size = 2147483641)
epoll01 9 TPASS : epoll_create with large set size (size = 2147483640)
epoll01 10 TPASS : epoll_create with large set size (size = 2147483639)
epoll01 11 TPASS : epoll_create with large set size (size = 2147483638)
epoll01 12 TPASS : epoll_create with large set size (size = 2147483637)
epoll01 13 TPASS : epoll_create with large set size (size = 2147483636)
epoll01 14 TPASS : epoll_create with large set size (size = 2147483635)
epoll01 15 TPASS : epoll_create with large set size (size = 2147483634)
epoll01 16 TPASS : epoll_create with large set size (size = 2147483633)
epoll01 17 TPASS : epoll_create with large set size (size = 2147483632)
epoll01 18 TPASS : epoll_create with random large set size (size = 455094117)
epoll01 19 TPASS : epoll_create with random large set size (size = 1891438769)
epoll01 20 TPASS : epoll_create with random large set size (size = 187684372)
epoll01 21 TPASS : epoll_create with random large set size (size = 712806069)
epoll01 22 TPASS : epoll_create with random large set size (size = 1448281113)
epoll01 23 TPASS : epoll_create with random large set size (size = 670266344)
epoll01 24 TPASS : epoll_create with random large set size (size = 1285953606)
epoll01 25 TPASS : epoll_create with random large set size (size = 496508503)
epoll01 26 TPASS : epoll_create with random large set size (size = 152339288)
epoll01 27 TPASS : epoll_create with random large set size (size = 1197005572)
epoll01 28 TPASS : epoll_create with random large set size (size = 1917780670)
epoll01 29 TPASS : epoll_create with random large set size (size = 1039225397)
epoll01 30 TPASS : epoll_create with random large set size (size = 1445707087)
epoll01 31 TPASS : epoll_create with random large set size (size = 256072775)
epoll01 32 TPASS : epoll_create with random large set size (size = 792637676)
epoll01 33 TPASS : epoll_create with random large set size (size = 2039122540)
epoll01 0 TINFO : Summary: Of 33 tests, epoll_create failed 0 (100% passed).
epoll01 0 TINFO : Testing epoll_ctl
epoll01 0 TINFO : Summary: Of 13824 tests, epoll_ctl failed 0 (100% passed).
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=54 cstime=219
<<<test_end>>>
<<<test_start>>>
tag=eventfd01 stime=1372195597
cmdline="eventfd01"
contacts=""
analysis=exit
<<<test_output>>>
eventfd01 1 TPASS : counter value matches required
eventfd01 2 TPASS : read failed with EAGAIN as expected
eventfd01 3 TPASS : counter value matches required
eventfd01 4 TPASS : write failed with EAGAIN as expected
eventfd01 5 TPASS : read failed with EINVAL as expected
eventfd01 6 TPASS : write failed with EINVAL as expected
eventfd01 7 TPASS : write failed with EINVAL as expected
eventfd01 8 TPASS : fd is set in readfds
eventfd01 9 TPASS : fd is not set in readfds
eventfd01 10 TPASS : fd is set in writefds
eventfd01 11 TPASS : fd is not set in writefds
eventfd01 1 TPASS : counter value matches required
eventfd01 2 TPASS : read failed with EAGAIN as expected
eventfd01 3 TPASS : counter value matches required
eventfd01 4 TPASS : write failed with EAGAIN as expected
eventfd01 5 TPASS : read failed with EINVAL as expected
eventfd01 6 TPASS : write failed with EINVAL as expected
eventfd01 7 TPASS : write failed with EINVAL as expected
eventfd01 8 TPASS : fd is set in readfds
eventfd01 9 TPASS : fd is not set in readfds
eventfd01 10 TPASS : fd is set in writefds
eventfd01 11 TPASS : fd is not set in writefds
eventfd01 12 TPASS : counter value write from child successful
eventfd01 13 TPASS : read fd set as expected
eventfd01 14 TPASS : POLLERR occurred as expected
eventfd01 15 TPASS : overflow occurred as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=eventfd2_01 stime=1372195597
cmdline="eventfd2_01"
contacts=""
analysis=exit
<<<test_output>>>
eventfd2_01 1 TPASS : eventfd2(EFD_CLOEXEC) Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=eventfd2_02 stime=1372195597
cmdline="eventfd2_02"
contacts=""
analysis=exit
<<<test_output>>>
eventfd2_02 1 TPASS : eventfd2(EFD_NONBLOCK) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=eventfd2_03 stime=1372195597
cmdline="eventfd2_03"
contacts=""
analysis=exit
<<<test_output>>>
[6114] posting 1 on 6
[6114] waiting on 5
[6114] wait completed on 5: count=1
[6114] posting 1 on 6
[6114] waiting on 5
[6114] wait completed on 5: count=1
[6114] posting 5 on 6
[6114] waiting 5 times on 5
[6114] wait completed on 5: count=1
[6114] wait completed on 5: count=1
[6114] wait completed on 5: count=1
[6114] wait completed on 5: count=1
[6114] wait completed on 5: count=1
[6113] posting 1 on 5
[6113] waiting on 6
[6113] wait completed on 6: count=1
[6113] posting 1 on 5
[6113] waiting on 6
[6113] wait completed on 6: count=1
[6113] posting 5 on 5
[6113] waiting 5 times on 6
[6113] wait completed on 6: count=1
[6113] wait completed on 6: count=1
[6113] wait completed on 6: count=1
[6113] wait completed on 6: count=1
[6113] wait completed on 6: count=1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execl01 stime=1372195597
cmdline="execl01"
contacts=""
analysis=exit
<<<test_output>>>
execl01 1 TPASS : execl - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execle01 stime=1372195597
cmdline="execle01"
contacts=""
analysis=exit
<<<test_output>>>
execle01 1 TPASS : execle - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=execlp01 stime=1372195597
cmdline="execlp01"
contacts=""
analysis=exit
<<<test_output>>>
execlp01 1 TPASS : execlp - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execv01 stime=1372195597
cmdline="execv01"
contacts=""
analysis=exit
<<<test_output>>>
execv01 1 TPASS : execv - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execve01 stime=1372195597
cmdline="execve01"
contacts=""
analysis=exit
<<<test_output>>>
execve01 1 TPASS : execve - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execve02 stime=1372195597
cmdline="execve02 -F $LTPROOT/testcases/bin/test3"
contacts=""
analysis=exit
<<<test_output>>>
execve failed with EACCES as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=execve03 stime=1372195597
cmdline="execve03"
contacts=""
analysis=exit
<<<test_output>>>
execve03 1 TPASS : execve failed as expected: TEST_ERRNO=ENAMETOOLONG(36): File name too long
execve03 2 TPASS : execve failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
execve03 3 TPASS : execve failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
execve03 4 TPASS : execve failed as expected: TEST_ERRNO=EFAULT(14): Bad address
execve03 5 TPASS : execve failed as expected: TEST_ERRNO=EACCES(13): Permission denied
execve03 6 TPASS : execve failed as expected: TEST_ERRNO=ENOEXEC(8): Exec format error
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execve04 stime=1372195597
cmdline="execve04 -F $LTPROOT/testcases/bin/test3"
contacts=""
analysis=exit
<<<test_output>>>
execve failed with ETXTBSY as expected
execve04 1 TPASS : execve failed as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=execve05 stime=1372195597
cmdline="execve05 20 $LTPROOT/testcases/bin/execve05 $LTPROOT/testcases/bin/execve05 4"
contacts=""
analysis=exit
<<<test_output>>>
execve05 1 TPASS : Test DONE, pid 6143, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 6144, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 6145, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 6146, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 6147, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 6148, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 6149, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
execve05 1 TPASS : Test DONE, pid 6150, -- /opt/ltp/testcases/bin/execve05 0 /opt/ltp/testcases/bin/execve05 /opt/ltp/testcases/bin/execve05
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=4 cstime=7
<<<test_end>>>
<<<test_start>>>
tag=execvp01 stime=1372195598
cmdline="execvp01"
contacts=""
analysis=exit
<<<test_output>>>
execvp01 1 TPASS : execvp - properly exec's a simple program..
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=exit01 stime=1372195598
cmdline="exit01"
contacts=""
analysis=exit
<<<test_output>>>
exit01 1 TPASS : exit() test PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=exit02 stime=1372195598
cmdline="exit02"
contacts=""
analysis=exit
<<<test_output>>>
exit02 1 TPASS : exit() test PASSED
<<<execution_status>>>
initiation_status="ok"
duration=3 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=exit_group01 stime=1372195601
cmdline="exit_group01"
contacts=""
analysis=exit
<<<test_output>>>
exit_group01 1 TPASS : exit_group succeeded
<<<execution_status>>>
initiation_status="ok"
duration=5 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=faccessat01 stime=1372195606
cmdline="faccessat01"
contacts=""
analysis=exit
<<<test_output>>>
faccessat01 1 TPASS : faccessat() returned the expected errno 0: Success
faccessat01 2 TPASS : faccessat() returned the expected errno 0: Success
faccessat01 3 TPASS : faccessat() returned the expected errno 20: Not a directory
faccessat01 4 TPASS : faccessat() returned the expected errno 9: Bad file descriptor
faccessat01 5 TPASS : faccessat() returned the expected errno 0: Success
faccessat01 6 TPASS : faccessat() returned the expected errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fallocate01 stime=1372195606
cmdline="fallocate01"
contacts=""
analysis=exit
<<<test_output>>>
fallocate01 1 TPASS : fallocate(5, 0, 49152, 4096) returned 0
fallocate01 2 TPASS : write operation on fallocated(5, 0, 49152, 4096) returned 1
fallocate01 3 TPASS : fallocate(6, 1, 49152, 4096) returned 0
fallocate01 4 TPASS : write operation on fallocated(6, 1, 49152, 4096) returned 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fallocate02 stime=1372195606
cmdline="fallocate02"
contacts=""
analysis=exit
<<<test_output>>>
fallocate02 1 TPASS : fallocate(tfile_read_6161:5, 1, 0, 4096) returned 9
fallocate02 2 TPASS : fallocate(tfile_write_6161:6, 1, -4096, 4096) returned 22
fallocate02 3 TPASS : fallocate(tfile_write_6161:6, 1, 4096, -4096) returned 22
fallocate02 4 TPASS : fallocate(tfile_write_6161:6, 1, 49152, 0) returned 22
fallocate02 5 TPASS : fallocate(tfile_write_6161:6, 1, 49152, -4096) returned 22
fallocate02 6 TPASS : fallocate(tfile_write_6161:6, 1, -98304, 4096) returned 22
fallocate02 7 TPASS : fallocate(tfile_write_6161:6, 1, 0, 4096) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fallocate03 stime=1372195606
cmdline="fallocate03"
contacts=""
analysis=exit
<<<test_output>>>
fallocate03 1 TPASS : fallocate(tfile_sparse_6162, 0, 8192, 4096) returned 0
fallocate03 2 TPASS : fallocate(tfile_sparse_6162, 0, 49152, 4096) returned 0
fallocate03 3 TPASS : fallocate(tfile_sparse_6162, 0, 69632, 4096) returned 0
fallocate03 4 TPASS : fallocate(tfile_sparse_6162, 0, 102400, 4096) returned 0
fallocate03 5 TPASS : fallocate(tfile_sparse_6162, 1, 8192, 4096) returned 0
fallocate03 6 TPASS : fallocate(tfile_sparse_6162, 1, 49152, 4096) returned 0
fallocate03 7 TPASS : fallocate(tfile_sparse_6162, 1, 77824, 4096) returned 0
fallocate03 8 TPASS : fallocate(tfile_sparse_6162, 1, 106496, 4096) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise01 stime=1372195606
cmdline=" posix_fadvise01"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise01 1 TPASS : call succeeded expectedly
posix_fadvise01 2 TPASS : call succeeded expectedly
posix_fadvise01 3 TPASS : call succeeded expectedly
posix_fadvise01 4 TPASS : call succeeded expectedly
posix_fadvise01 5 TPASS : call succeeded expectedly
posix_fadvise01 6 TPASS : call succeeded expectedly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise01_64 stime=1372195606
cmdline=" posix_fadvise01_64"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise01_64 1 TPASS : call succeeded expectedly
posix_fadvise01_64 2 TPASS : call succeeded expectedly
posix_fadvise01_64 3 TPASS : call succeeded expectedly
posix_fadvise01_64 4 TPASS : call succeeded expectedly
posix_fadvise01_64 5 TPASS : call succeeded expectedly
posix_fadvise01_64 6 TPASS : call succeeded expectedly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise02 stime=1372195606
cmdline=" posix_fadvise02"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise02 1 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02 2 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02 3 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02 4 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02 5 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02 6 TPASS : expected failure - returned value = 9 : Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise02_64 stime=1372195606
cmdline=" posix_fadvise02_64"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise02_64 1 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64 2 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64 3 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64 4 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64 5 TPASS : expected failure - returned value = 9 : Bad file descriptor
posix_fadvise02_64 6 TPASS : expected failure - returned value = 9 : Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise03 stime=1372195606
cmdline=" posix_fadvise03"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise03 1 TPASS : expected failure - returned value = 22, advise = 6 : Invalid argument
posix_fadvise03 2 TPASS : expected failure - returned value = 22, advise = 7 : Invalid argument
posix_fadvise03 3 TPASS : expected failure - returned value = 22, advise = 8 : Invalid argument
posix_fadvise03 4 TPASS : expected failure - returned value = 22, advise = 9 : Invalid argument
posix_fadvise03 5 TPASS : expected failure - returned value = 22, advise = 10 : Invalid argument
posix_fadvise03 6 TPASS : expected failure - returned value = 22, advise = 11 : Invalid argument
posix_fadvise03 7 TPASS : expected failure - returned value = 22, advise = 12 : Invalid argument
posix_fadvise03 8 TPASS : expected failure - returned value = 22, advise = 13 : Invalid argument
posix_fadvise03 9 TPASS : expected failure - returned value = 22, advise = 14 : Invalid argument
posix_fadvise03 10 TPASS : expected failure - returned value = 22, advise = 15 : Invalid argument
posix_fadvise03 11 TPASS : expected failure - returned value = 22, advise = 16 : Invalid argument
posix_fadvise03 12 TPASS : expected failure - returned value = 22, advise = 17 : Invalid argument
posix_fadvise03 13 TPASS : expected failure - returned value = 22, advise = 18 : Invalid argument
posix_fadvise03 14 TPASS : expected failure - returned value = 22, advise = 19 : Invalid argument
posix_fadvise03 15 TPASS : expected failure - returned value = 22, advise = 20 : Invalid argument
posix_fadvise03 16 TPASS : expected failure - returned value = 22, advise = 21 : Invalid argument
posix_fadvise03 17 TPASS : expected failure - returned value = 22, advise = 22 : Invalid argument
posix_fadvise03 18 TPASS : expected failure - returned value = 22, advise = 23 : Invalid argument
posix_fadvise03 19 TPASS : expected failure - returned value = 22, advise = 24 : Invalid argument
posix_fadvise03 20 TPASS : expected failure - returned value = 22, advise = 25 : Invalid argument
posix_fadvise03 21 TPASS : expected failure - returned value = 22, advise = 26 : Invalid argument
posix_fadvise03 22 TPASS : expected failure - returned value = 22, advise = 27 : Invalid argument
posix_fadvise03 23 TPASS : expected failure - returned value = 22, advise = 28 : Invalid argument
posix_fadvise03 24 TPASS : expected failure - returned value = 22, advise = 29 : Invalid argument
posix_fadvise03 25 TPASS : expected failure - returned value = 22, advise = 30 : Invalid argument
posix_fadvise03 26 TPASS : expected failure - returned value = 22, advise = 31 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise03_64 stime=1372195606
cmdline=" posix_fadvise03_64"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise03_64 1 TPASS : expected failure - returned value = 22, advise = 6 : Invalid argument
posix_fadvise03_64 2 TPASS : expected failure - returned value = 22, advise = 7 : Invalid argument
posix_fadvise03_64 3 TPASS : expected failure - returned value = 22, advise = 8 : Invalid argument
posix_fadvise03_64 4 TPASS : expected failure - returned value = 22, advise = 9 : Invalid argument
posix_fadvise03_64 5 TPASS : expected failure - returned value = 22, advise = 10 : Invalid argument
posix_fadvise03_64 6 TPASS : expected failure - returned value = 22, advise = 11 : Invalid argument
posix_fadvise03_64 7 TPASS : expected failure - returned value = 22, advise = 12 : Invalid argument
posix_fadvise03_64 8 TPASS : expected failure - returned value = 22, advise = 13 : Invalid argument
posix_fadvise03_64 9 TPASS : expected failure - returned value = 22, advise = 14 : Invalid argument
posix_fadvise03_64 10 TPASS : expected failure - returned value = 22, advise = 15 : Invalid argument
posix_fadvise03_64 11 TPASS : expected failure - returned value = 22, advise = 16 : Invalid argument
posix_fadvise03_64 12 TPASS : expected failure - returned value = 22, advise = 17 : Invalid argument
posix_fadvise03_64 13 TPASS : expected failure - returned value = 22, advise = 18 : Invalid argument
posix_fadvise03_64 14 TPASS : expected failure - returned value = 22, advise = 19 : Invalid argument
posix_fadvise03_64 15 TPASS : expected failure - returned value = 22, advise = 20 : Invalid argument
posix_fadvise03_64 16 TPASS : expected failure - returned value = 22, advise = 21 : Invalid argument
posix_fadvise03_64 17 TPASS : expected failure - returned value = 22, advise = 22 : Invalid argument
posix_fadvise03_64 18 TPASS : expected failure - returned value = 22, advise = 23 : Invalid argument
posix_fadvise03_64 19 TPASS : expected failure - returned value = 22, advise = 24 : Invalid argument
posix_fadvise03_64 20 TPASS : expected failure - returned value = 22, advise = 25 : Invalid argument
posix_fadvise03_64 21 TPASS : expected failure - returned value = 22, advise = 26 : Invalid argument
posix_fadvise03_64 22 TPASS : expected failure - returned value = 22, advise = 27 : Invalid argument
posix_fadvise03_64 23 TPASS : expected failure - returned value = 22, advise = 28 : Invalid argument
posix_fadvise03_64 24 TPASS : expected failure - returned value = 22, advise = 29 : Invalid argument
posix_fadvise03_64 25 TPASS : expected failure - returned value = 22, advise = 30 : Invalid argument
posix_fadvise03_64 26 TPASS : expected failure - returned value = 22, advise = 31 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise04 stime=1372195606
cmdline=" posix_fadvise04"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise04 1 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04 2 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04 3 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04 4 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04 5 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04 6 TPASS : expected failure - returned value = 29 : Illegal seek
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=posix_fadvise04_64 stime=1372195606
cmdline=" posix_fadvise04_64"
contacts=""
analysis=exit
<<<test_output>>>
posix_fadvise04_64 1 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64 2 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64 3 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64 4 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64 5 TPASS : expected failure - returned value = 29 : Illegal seek
posix_fadvise04_64 6 TPASS : expected failure - returned value = 29 : Illegal seek
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchdir01 stime=1372195606
cmdline="fchdir01"
contacts=""
analysis=exit
<<<test_output>>>
fchdir01 1 TPASS : fchdir call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchdir02 stime=1372195606
cmdline="fchdir02"
contacts=""
analysis=exit
<<<test_output>>>
fchdir02 1 TPASS : failed as expected with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchdir03 stime=1372195606
cmdline="fchdir03"
contacts=""
analysis=exit
<<<test_output>>>
Got EACCES as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod01 stime=1372195606
cmdline="fchmod01"
contacts=""
analysis=exit
<<<test_output>>>
fchmod01 1 TPASS : fchmod(tfile_6175, 0700) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fchmod02 stime=1372195606
cmdline="fchmod02"
contacts=""
analysis=exit
<<<test_output>>>
fchmod02 1 TPASS : Functionality of fchmod(5, 01777) Successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod03 stime=1372195606
cmdline="fchmod03"
contacts=""
analysis=exit
<<<test_output>>>
fchmod03 1 TPASS : Functionality of fchmod(5, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod04 stime=1372195606
cmdline="fchmod04"
contacts=""
analysis=exit
<<<test_output>>>
fchmod04 1 TPASS : Functionality of fchmod(5, 01777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod05 stime=1372195606
cmdline="fchmod05"
contacts=""
analysis=exit
<<<test_output>>>
fchmod05 1 TPASS : Functionality of fchmod(5, 041777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod06 stime=1372195606
cmdline="fchmod06"
contacts=""
analysis=exit
<<<test_output>>>
fchmod06 1 TPASS : fchmod failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
fchmod06 2 TPASS : fchmod failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchmod07 stime=1372195606
cmdline="fchmod07"
contacts=""
analysis=exit
<<<test_output>>>
fchmod07 1 TPASS : Functionality of fchmod(5, 0) successful
fchmod07 2 TPASS : Functionality of fchmod(5, 07) successful
fchmod07 3 TPASS : Functionality of fchmod(5, 070) successful
fchmod07 4 TPASS : Functionality of fchmod(5, 0700) successful
fchmod07 5 TPASS : Functionality of fchmod(5, 0777) successful
fchmod07 6 TPASS : Functionality of fchmod(5, 02777) successful
fchmod07 7 TPASS : Functionality of fchmod(5, 04777) successful
fchmod07 8 TPASS : Functionality of fchmod(5, 06777) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fchmodat01 stime=1372195606
cmdline="fchmodat01"
contacts=""
analysis=exit
<<<test_output>>>
fchmodat01 1 TPASS : fchmodat() returned the expected errno 0: Success
fchmodat01 2 TPASS : fchmodat() returned the expected errno 0: Success
fchmodat01 3 TPASS : fchmodat() returned the expected errno 20: Not a directory
fchmodat01 4 TPASS : fchmodat() returned the expected errno 9: Bad file descriptor
fchmodat01 5 TPASS : fchmodat() returned the expected errno 0: Success
fchmodat01 6 TPASS : fchmodat() returned the expected errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown01 stime=1372195606
cmdline="fchown01"
contacts=""
analysis=exit
<<<test_output>>>
fchown01 1 TPASS : fchown(fd, geteuid(), getegid()) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown01_16 stime=1372195606
cmdline="fchown01_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown01 1 TPASS : fchown(fd, geteuid(), getegid()) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown02 stime=1372195606
cmdline="fchown02"
contacts=""
analysis=exit
<<<test_output>>>
fchown02 1 TPASS : fchown() on testfile1 succeeds : Setuid/Setgid bits cleared
fchown02 2 TPASS : fchown() on testfile2 succeeds : Setgid bit not cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown02_16 stime=1372195606
cmdline="fchown02_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown02 1 TPASS : fchown() on testfile1 succeeds : Setuid/Setgid bits cleared
fchown02 2 TPASS : fchown() on testfile2 succeeds : Setgid bit not cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown03 stime=1372195606
cmdline="fchown03"
contacts=""
analysis=exit
<<<test_output>>>
fchown03 1 TPASS : fchown() on testfile succeeds: Setuid/gid bits cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fchown03_16 stime=1372195606
cmdline="fchown03_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown03 1 TPASS : fchown() on testfile succeeds: Setuid/gid bits cleared
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown04 stime=1372195606
cmdline="fchown04"
contacts=""
analysis=exit
<<<test_output>>>
fchown04 1 TPASS : fchown failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
fchown04 2 TPASS : fchown failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown04_16 stime=1372195606
cmdline="fchown04_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown04 1 TPASS : fchown failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
fchown04 2 TPASS : fchown failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown05 stime=1372195606
cmdline="fchown05"
contacts=""
analysis=exit
<<<test_output>>>
fchown05 1 TPASS : fchown() succeeds to Change Owner/Group ids of testfile
fchown05 2 TPASS : fchown() succeeds to Change Owner id only of testfile
fchown05 3 TPASS : fchown() succeeds to Change Owner id only of testfile
fchown05 4 TPASS : fchown() succeeds to Change Group id only of testfile
fchown05 5 TPASS : fchown() succeeds to Change Group id only of testfile
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchown05_16 stime=1372195606
cmdline="fchown05_16"
contacts=""
analysis=exit
<<<test_output>>>
fchown05 1 TPASS : fchown() succeeds to Change Owner/Group ids of testfile
fchown05 2 TPASS : fchown() succeeds to Change Owner id only of testfile
fchown05 3 TPASS : fchown() succeeds to Change Owner id only of testfile
fchown05 4 TPASS : fchown() succeeds to Change Group id only of testfile
fchown05 5 TPASS : fchown() succeeds to Change Group id only of testfile
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fchownat01 stime=1372195606
cmdline="fchownat01"
contacts=""
analysis=exit
<<<test_output>>>
fchownat01 1 TPASS : fchownat() returned the expected errno 0: Success
fchownat01 2 TPASS : fchownat() returned the expected errno 0: Success
fchownat01 3 TPASS : fchownat() returned the expected errno 20: Not a directory
fchownat01 4 TPASS : fchownat() returned the expected errno 9: Bad file descriptor
fchownat01 5 TPASS : fchownat() returned the expected errno 22: Invalid argument
fchownat01 6 TPASS : fchownat() returned the expected errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl01 stime=1372195606
cmdline="fcntl01"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl01_64 stime=1372195606
cmdline="fcntl01_64"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl02 stime=1372195606
cmdline="fcntl02"
contacts=""
analysis=exit
<<<test_output>>>
fcntl02 1 TPASS : fcntl(tfile_6196, F_DUPFD, 0) returned 6
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl02_64 stime=1372195606
cmdline="fcntl02_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl02 1 TPASS : fcntl(tfile_6197, F_DUPFD, 0) returned 6
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl03 stime=1372195606
cmdline="fcntl03"
contacts=""
analysis=exit
<<<test_output>>>
fcntl03 1 TPASS : fcntl(tfile_6198, F_GETFD, 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl03_64 stime=1372195606
cmdline="fcntl03_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl03 1 TPASS : fcntl(tfile_6199, F_GETFD, 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl04 stime=1372195606
cmdline="fcntl04"
contacts=""
analysis=exit
<<<test_output>>>
fcntl04 1 TPASS : fcntl returned 32770
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl04_64 stime=1372195606
cmdline="fcntl04_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl04 1 TPASS : fcntl returned 32770
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl05 stime=1372195606
cmdline="fcntl05"
contacts=""
analysis=exit
<<<test_output>>>
fcntl05 1 TPASS : fcntl returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl05_64 stime=1372195606
cmdline="fcntl05_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl05 1 TPASS : fcntl returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl06 stime=1372195606
cmdline="fcntl06"
contacts=""
analysis=exit
<<<test_output>>>
fcntl06 1 TCONF : system doesn't have LINUX_LOCK_FILE_REGION support
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl06_64 stime=1372195606
cmdline="fcntl06_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl06 1 TCONF : system doesn't have LINUX_LOCK_FILE_REGION support
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl07 stime=1372195606
cmdline="fcntl07"
contacts=""
analysis=exit
<<<test_output>>>
fcntl07 1 TPASS : regular file child exited 0, indicating that the file was closed
fcntl07 2 TPASS : write side of system pipe child exited 0, indicating that the file was closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl07_64 stime=1372195606
cmdline="fcntl07_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl07 1 TPASS : regular file child exited 0, indicating that the file was closed
fcntl07 2 TPASS : write side of system pipe child exited 0, indicating that the file was closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl07B stime=1372195606
cmdline="fcntl07B"
contacts=""
analysis=exit
<<<test_output>>>
fcntl07B 1 TPASS : named pipe child exited 0, indicating that the file was closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl07B_64 stime=1372195606
cmdline="fcntl07B_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl07B 1 TPASS : named pipe child exited 0, indicating that the file was closed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl08 stime=1372195606
cmdline="fcntl08"
contacts=""
analysis=exit
<<<test_output>>>
fcntl08 1 TPASS : fcntl returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl08_64 stime=1372195606
cmdline="fcntl08_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl08 1 TPASS : fcntl returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl09 stime=1372195606
cmdline="fcntl09"
contacts=""
analysis=exit
<<<test_output>>>
fcntl09 1 TPASS : fcntl(./file_6218, F_SETLK, &flocks) flocks.l_type = F_WRLCK returned 0
fcntl09 2 TPASS : fcntl(./file_6218, F_SETLK, &flocks) flocks.l_type = F_UNLCK returned 0
fcntl09 1 TPASS : fcntl(./file_6218, F_SETLK, &flocks) flocks.l_type = F_RDLCK returned 0
fcntl09 2 TPASS : fcntl(./file_6218, F_SETLK, &flocks) flocks.l_type = F_UNLCK returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl09_64 stime=1372195606
cmdline="fcntl09_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl09 1 TPASS : fcntl(./file_6219, F_SETLK, &flocks) flocks.l_type = F_WRLCK returned 0
fcntl09 2 TPASS : fcntl(./file_6219, F_SETLK, &flocks) flocks.l_type = F_UNLCK returned 0
fcntl09 1 TPASS : fcntl(./file_6219, F_SETLK, &flocks) flocks.l_type = F_RDLCK returned 0
fcntl09 2 TPASS : fcntl(./file_6219, F_SETLK, &flocks) flocks.l_type = F_UNLCK returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl10 stime=1372195606
cmdline="fcntl10"
contacts=""
analysis=exit
<<<test_output>>>
fcntl10 1 TPASS : fcntl(tfile_6220, F_SETLKW, &flocks) flocks.l_type = F_WRLCK returned 0
fcntl10 2 TPASS : fcntl(tfile_6220, F_SETLKW, &flocks) flocks.l_type = F_UNLCK returned 0
fcntl10 1 TPASS : fcntl(tfile_6220, F_SETLKW, &flocks) flocks.l_type = F_RDLCK returned 0
fcntl10 2 TPASS : fcntl(tfile_6220, F_SETLKW, &flocks) flocks.l_type = F_UNLCK returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl10_64 stime=1372195606
cmdline="fcntl10_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl10 1 TPASS : fcntl(tfile_6221, F_SETLKW, &flocks) flocks.l_type = F_WRLCK returned 0
fcntl10 2 TPASS : fcntl(tfile_6221, F_SETLKW, &flocks) flocks.l_type = F_UNLCK returned 0
fcntl10 1 TPASS : fcntl(tfile_6221, F_SETLKW, &flocks) flocks.l_type = F_RDLCK returned 0
fcntl10 2 TPASS : fcntl(tfile_6221, F_SETLKW, &flocks) flocks.l_type = F_UNLCK returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl11 stime=1372195606
cmdline="fcntl11"
contacts=""
analysis=exit
<<<test_output>>>
fcntl11 0 TINFO : Enter block 1
fcntl11 0 TINFO : Exit block 1
fcntl11 0 TINFO : Enter block 2
fcntl11 0 TINFO : Exit block 2
fcntl11 0 TINFO : Enter block 3
fcntl11 0 TINFO : Exit block 3
fcntl11 0 TINFO : Enter block 4
fcntl11 0 TINFO : Exit block 4
fcntl11 0 TINFO : Enter block 5
fcntl11 0 TINFO : Exit block 5
fcntl11 0 TINFO : Enter block 6
fcntl11 0 TINFO : Exit block 6
fcntl11 0 TINFO : Enter block 7
fcntl11 0 TINFO : Exit block 7
fcntl11 0 TINFO : Enter block 8
fcntl11 0 TINFO : Exit block 8
fcntl11 0 TINFO : Enter block 9
fcntl11 0 TINFO : Exit block 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl11_64 stime=1372195606
cmdline="fcntl11_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl11 0 TINFO : Enter block 1
fcntl11 0 TINFO : Exit block 1
fcntl11 0 TINFO : Enter block 2
fcntl11 0 TINFO : Exit block 2
fcntl11 0 TINFO : Enter block 3
fcntl11 0 TINFO : Exit block 3
fcntl11 0 TINFO : Enter block 4
fcntl11 0 TINFO : Exit block 4
fcntl11 0 TINFO : Enter block 5
fcntl11 0 TINFO : Exit block 5
fcntl11 0 TINFO : Enter block 6
fcntl11 0 TINFO : Exit block 6
fcntl11 0 TINFO : Enter block 7
fcntl11 0 TINFO : Exit block 7
fcntl11 0 TINFO : Enter block 8
fcntl11 0 TINFO : Exit block 8
fcntl11 0 TINFO : Enter block 9
fcntl11 0 TINFO : Exit block 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl12 stime=1372195606
cmdline="fcntl12"
contacts=""
analysis=exit
<<<test_output>>>
fcntl12 0 TINFO : Enter block 1
fcntl12 0 TINFO : Test for errno EMFILE
fcntl12 0 TINFO : Enter block 1
fcntl12 0 TINFO : Test for errno EMFILE
fcntl12 0 TINFO : block 1 PASSED
fcntl12 0 TINFO : Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=fcntl12_64 stime=1372195606
cmdline="fcntl12_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl12 0 TINFO : Enter block 1
fcntl12 0 TINFO : Test for errno EMFILE
fcntl12 0 TINFO : Enter block 1
fcntl12 0 TINFO : Test for errno EMFILE
fcntl12 0 TINFO : block 1 PASSED
fcntl12 0 TINFO : Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl13 stime=1372195606
cmdline="fcntl13"
contacts=""
analysis=exit
<<<test_output>>>
fcntl13 0 TINFO : Enter block 1
fcntl13 0 TINFO : Test for errno EINVAL
fcntl13 0 TINFO : block 1 PASSED
fcntl13 0 TINFO : Exit block 1
fcntl13 0 TINFO : Enter block 2
fcntl13 0 TINFO : Test for errno EFAULT
fcntl13 0 TINFO : block 2 PASSED
fcntl13 0 TINFO : Exit block 2
fcntl13 0 TINFO : Enter block 3
fcntl13 0 TINFO : Test for errno EINVAL
fcntl13 0 TINFO : block 3 PASSED
fcntl13 0 TINFO : Exit block 3
fcntl13 0 TINFO : Enter block 4
fcntl13 0 TINFO : Test for errno EBADF
fcntl13 0 TINFO : block 4 PASSED
fcntl13 0 TINFO : Exit block 4
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl13_64 stime=1372195606
cmdline="fcntl13_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl13 0 TINFO : Enter block 1
fcntl13 0 TINFO : Test for errno EINVAL
fcntl13 0 TINFO : block 1 PASSED
fcntl13 0 TINFO : Exit block 1
fcntl13 0 TINFO : Enter block 2
fcntl13 0 TINFO : Test for errno EFAULT
fcntl13 0 TINFO : block 2 PASSED
fcntl13 0 TINFO : Exit block 2
fcntl13 0 TINFO : Enter block 3
fcntl13 0 TINFO : Test for errno EINVAL
fcntl13 0 TINFO : block 3 PASSED
fcntl13 0 TINFO : Exit block 3
fcntl13 0 TINFO : Enter block 4
fcntl13 0 TINFO : Test for errno EBADF
fcntl13 0 TINFO : block 4 PASSED
fcntl13 0 TINFO : Exit block 4
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl14 stime=1372195606
cmdline="fcntl14"
contacts=""
analysis=exit
<<<test_output>>>
fcntl14 0 TINFO : Enter block 1: without mandatory locking
fcntl14 1 TPASS : testcase:1 PASSED
fcntl14 2 TPASS : testcase:2 PASSED
fcntl14 3 TPASS : testcase:3 PASSED
fcntl14 4 TPASS : testcase:4 PASSED
fcntl14 5 TPASS : testcase:5 PASSED
fcntl14 6 TPASS : testcase:6 PASSED
fcntl14 7 TPASS : testcase:7 PASSED
fcntl14 8 TPASS : testcase:8 PASSED
fcntl14 9 TPASS : testcase:9 PASSED
fcntl14 10 TPASS : testcase:10 PASSED
fcntl14 11 TPASS : testcase:11 PASSED
fcntl14 12 TPASS : testcase:12 PASSED
fcntl14 13 TPASS : testcase:13 PASSED
fcntl14 14 TPASS : testcase:14 PASSED
fcntl14 15 TPASS : testcase:15 PASSED
fcntl14 16 TPASS : testcase:16 PASSED
fcntl14 17 TPASS : testcase:17 PASSED
fcntl14 18 TPASS : testcase:18 PASSED
fcntl14 19 TPASS : testcase:19 PASSED
fcntl14 20 TPASS : testcase:20 PASSED
fcntl14 21 TPASS : testcase:21 PASSED
fcntl14 22 TPASS : testcase:22 PASSED
fcntl14 23 TPASS : testcase:23 PASSED
fcntl14 24 TPASS : testcase:24 PASSED
fcntl14 25 TPASS : testcase:25 PASSED
fcntl14 26 TPASS : testcase:26 PASSED
fcntl14 27 TPASS : testcase:27 PASSED
fcntl14 28 TPASS : testcase:28 PASSED
fcntl14 29 TPASS : testcase:29 PASSED
fcntl14 30 TPASS : testcase:30 PASSED
fcntl14 31 TPASS : testcase:31 PASSED
fcntl14 32 TPASS : testcase:32 PASSED
fcntl14 33 TPASS : testcase:33 PASSED
fcntl14 34 TPASS : testcase:34 PASSED
fcntl14 35 TPASS : testcase:35 PASSED
fcntl14 36 TPASS : testcase:36 PASSED
fcntl14 37 TPASS : Block 1, test 1 PASSED
fcntl14 38 TPASS : testcase:37 PASSED
fcntl14 39 TPASS : testcase:38 PASSED
fcntl14 40 TPASS : testcase:39 PASSED
fcntl14 41 TPASS : testcase:40 PASSED
fcntl14 42 TPASS : testcase:41 PASSED
fcntl14 43 TPASS : testcase:42 PASSED
fcntl14 44 TPASS : testcase:43 PASSED
fcntl14 45 TPASS : testcase:44 PASSED
fcntl14 46 TPASS : testcase:45 PASSED
fcntl14 47 TPASS : Block 1, test 2 PASSED
fcntl14 0 TINFO : Exit block 1
fcntl14 0 TINFO : Enter block 2: with mandatory locking
fcntl14 48 TPASS : testcase:1 PASSED
fcntl14 49 TPASS : testcase:2 PASSED
fcntl14 50 TPASS : testcase:3 PASSED
fcntl14 51 TPASS : testcase:4 PASSED
fcntl14 52 TPASS : testcase:5 PASSED
fcntl14 53 TPASS : testcase:6 PASSED
fcntl14 54 TPASS : testcase:7 PASSED
fcntl14 55 TPASS : testcase:8 PASSED
fcntl14 56 TPASS : testcase:9 PASSED
fcntl14 57 TPASS : testcase:10 PASSED
fcntl14 58 TPASS : testcase:11 PASSED
fcntl14 59 TPASS : testcase:12 PASSED
fcntl14 60 TPASS : testcase:13 PASSED
fcntl14 61 TPASS : testcase:14 PASSED
fcntl14 62 TPASS : testcase:15 PASSED
fcntl14 63 TPASS : testcase:16 PASSED
fcntl14 64 TPASS : testcase:17 PASSED
fcntl14 65 TPASS : testcase:18 PASSED
fcntl14 66 TPASS : testcase:19 PASSED
fcntl14 67 TPASS : testcase:20 PASSED
fcntl14 68 TPASS : testcase:21 PASSED
fcntl14 69 TPASS : testcase:22 PASSED
fcntl14 70 TPASS : testcase:23 PASSED
fcntl14 71 TPASS : testcase:24 PASSED
fcntl14 72 TPASS : testcase:25 PASSED
fcntl14 73 TPASS : testcase:26 PASSED
fcntl14 74 TPASS : testcase:27 PASSED
fcntl14 75 TPASS : testcase:28 PASSED
fcntl14 76 TPASS : testcase:29 PASSED
fcntl14 77 TPASS : testcase:30 PASSED
fcntl14 78 TPASS : testcase:31 PASSED
fcntl14 79 TPASS : testcase:32 PASSED
fcntl14 80 TPASS : testcase:33 PASSED
fcntl14 81 TPASS : testcase:34 PASSED
fcntl14 82 TPASS : testcase:35 PASSED
fcntl14 83 TPASS : testcase:36 PASSED
fcntl14 84 TPASS : Block 2, test 1 PASSED
fcntl14 85 TPASS : testcase:37 PASSED
fcntl14 86 TPASS : testcase:38 PASSED
fcntl14 87 TPASS : testcase:39 PASSED
fcntl14 88 TPASS : testcase:40 PASSED
fcntl14 89 TPASS : testcase:41 PASSED
fcntl14 90 TPASS : testcase:42 PASSED
fcntl14 91 TPASS : testcase:43 PASSED
fcntl14 92 TPASS : testcase:44 PASSED
fcntl14 93 TPASS : testcase:45 PASSED
fcntl14 94 TPASS : Block 2, test 2 PASSED
fcntl14 0 TINFO : Exit block 2
fcntl14 0 TINFO : Enter block 3
fcntl14 0 TINFO : Test with mandatory locking PASSED
fcntl14 0 TINFO : Exit block 3
fcntl14 0 TINFO : Enter block 4
fcntl14 93 TPASS : testcase:45 PASSED
fcntl14 94 TPASS : Block 2, test 2 PASSED
fcntl14 0 TINFO : Exit block 2
fcntl14 0 TINFO : Enter block 3
fcntl14 0 TINFO : Test with mandatory locking PASSED
fcntl14 0 TINFO : Exit block 3
fcntl14 0 TINFO : Enter block 4
fcntl14 93 TPASS : testcase:45 PASSED
fcntl14 94 TPASS : Block 2, test 2 PASSED
fcntl14 0 TINFO : Exit block 2
fcntl14 0 TINFO : Enter block 3
fcntl14 0 TINFO : Test with mandatory locking PASSED
fcntl14 0 TINFO : Exit block 3
fcntl14 0 TINFO : Enter block 4
fcntl14 0 TINFO : Test of locks on file PASSED
fcntl14 0 TINFO : Exit block 4
<<<execution_status>>>
initiation_status="ok"
duration=5 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=fcntl14_64 stime=1372195611
cmdline="fcntl14_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl14 0 TINFO : Enter block 1: without mandatory locking
fcntl14 1 TPASS : testcase:1 PASSED
fcntl14 2 TPASS : testcase:2 PASSED
fcntl14 3 TPASS : testcase:3 PASSED
fcntl14 4 TPASS : testcase:4 PASSED
fcntl14 5 TPASS : testcase:5 PASSED
fcntl14 6 TPASS : testcase:6 PASSED
fcntl14 7 TPASS : testcase:7 PASSED
fcntl14 8 TPASS : testcase:8 PASSED
fcntl14 9 TPASS : testcase:9 PASSED
fcntl14 10 TPASS : testcase:10 PASSED
fcntl14 11 TPASS : testcase:11 PASSED
fcntl14 12 TPASS : testcase:12 PASSED
fcntl14 13 TPASS : testcase:13 PASSED
fcntl14 14 TPASS : testcase:14 PASSED
fcntl14 15 TPASS : testcase:15 PASSED
fcntl14 16 TPASS : testcase:16 PASSED
fcntl14 17 TPASS : testcase:17 PASSED
fcntl14 18 TPASS : testcase:18 PASSED
fcntl14 19 TPASS : testcase:19 PASSED
fcntl14 20 TPASS : testcase:20 PASSED
fcntl14 21 TPASS : testcase:21 PASSED
fcntl14 22 TPASS : testcase:22 PASSED
fcntl14 23 TPASS : testcase:23 PASSED
fcntl14 24 TPASS : testcase:24 PASSED
fcntl14 25 TPASS : testcase:25 PASSED
fcntl14 26 TPASS : testcase:26 PASSED
fcntl14 27 TPASS : testcase:27 PASSED
fcntl14 28 TPASS : testcase:28 PASSED
fcntl14 29 TPASS : testcase:29 PASSED
fcntl14 30 TPASS : testcase:30 PASSED
fcntl14 31 TPASS : testcase:31 PASSED
fcntl14 32 TPASS : testcase:32 PASSED
fcntl14 33 TPASS : testcase:33 PASSED
fcntl14 34 TPASS : testcase:34 PASSED
fcntl14 35 TPASS : testcase:35 PASSED
fcntl14 36 TPASS : testcase:36 PASSED
fcntl14 37 TPASS : Block 1, test 1 PASSED
fcntl14 38 TPASS : testcase:37 PASSED
fcntl14 39 TPASS : testcase:38 PASSED
fcntl14 40 TPASS : testcase:39 PASSED
fcntl14 41 TPASS : testcase:40 PASSED
fcntl14 42 TPASS : testcase:41 PASSED
fcntl14 43 TPASS : testcase:42 PASSED
fcntl14 44 TPASS : testcase:43 PASSED
fcntl14 45 TPASS : testcase:44 PASSED
fcntl14 46 TPASS : testcase:45 PASSED
fcntl14 47 TPASS : Block 1, test 2 PASSED
fcntl14 0 TINFO : Exit block 1
fcntl14 0 TINFO : Enter block 2: with mandatory locking
fcntl14 48 TPASS : testcase:1 PASSED
fcntl14 49 TPASS : testcase:2 PASSED
fcntl14 50 TPASS : testcase:3 PASSED
fcntl14 51 TPASS : testcase:4 PASSED
fcntl14 52 TPASS : testcase:5 PASSED
fcntl14 53 TPASS : testcase:6 PASSED
fcntl14 54 TPASS : testcase:7 PASSED
fcntl14 55 TPASS : testcase:8 PASSED
fcntl14 56 TPASS : testcase:9 PASSED
fcntl14 57 TPASS : testcase:10 PASSED
fcntl14 58 TPASS : testcase:11 PASSED
fcntl14 59 TPASS : testcase:12 PASSED
fcntl14 60 TPASS : testcase:13 PASSED
fcntl14 61 TPASS : testcase:14 PASSED
fcntl14 62 TPASS : testcase:15 PASSED
fcntl14 63 TPASS : testcase:16 PASSED
fcntl14 64 TPASS : testcase:17 PASSED
fcntl14 65 TPASS : testcase:18 PASSED
fcntl14 66 TPASS : testcase:19 PASSED
fcntl14 67 TPASS : testcase:20 PASSED
fcntl14 68 TPASS : testcase:21 PASSED
fcntl14 69 TPASS : testcase:22 PASSED
fcntl14 70 TPASS : testcase:23 PASSED
fcntl14 71 TPASS : testcase:24 PASSED
fcntl14 72 TPASS : testcase:25 PASSED
fcntl14 73 TPASS : testcase:26 PASSED
fcntl14 74 TPASS : testcase:27 PASSED
fcntl14 75 TPASS : testcase:28 PASSED
fcntl14 76 TPASS : testcase:29 PASSED
fcntl14 77 TPASS : testcase:30 PASSED
fcntl14 78 TPASS : testcase:31 PASSED
fcntl14 79 TPASS : testcase:32 PASSED
fcntl14 80 TPASS : testcase:33 PASSED
fcntl14 81 TPASS : testcase:34 PASSED
fcntl14 82 TPASS : testcase:35 PASSED
fcntl14 83 TPASS : testcase:36 PASSED
fcntl14 84 TPASS : Block 2, test 1 PASSED
fcntl14 85 TPASS : testcase:37 PASSED
fcntl14 86 TPASS : testcase:38 PASSED
fcntl14 87 TPASS : testcase:39 PASSED
fcntl14 88 TPASS : testcase:40 PASSED
fcntl14 89 TPASS : testcase:41 PASSED
fcntl14 90 TPASS : testcase:42 PASSED
fcntl14 91 TPASS : testcase:43 PASSED
fcntl14 92 TPASS : testcase:44 PASSED
fcntl14 93 TPASS : testcase:45 PASSED
fcntl14 94 TPASS : Block 2, test 2 PASSED
fcntl14 0 TINFO : Exit block 2
fcntl14 0 TINFO : Enter block 3
fcntl14 0 TINFO : Test with mandatory locking PASSED
fcntl14 0 TINFO : Exit block 3
fcntl14 0 TINFO : Enter block 4
fcntl14 93 TPASS : testcase:45 PASSED
fcntl14 94 TPASS : Block 2, test 2 PASSED
fcntl14 0 TINFO : Exit block 2
fcntl14 0 TINFO : Enter block 3
fcntl14 0 TINFO : Test with mandatory locking PASSED
fcntl14 0 TINFO : Exit block 3
fcntl14 0 TINFO : Enter block 4
fcntl14 93 TPASS : testcase:45 PASSED
fcntl14 94 TPASS : Block 2, test 2 PASSED
fcntl14 0 TINFO : Exit block 2
fcntl14 0 TINFO : Enter block 3
fcntl14 0 TINFO : Test with mandatory locking PASSED
fcntl14 0 TINFO : Exit block 3
fcntl14 0 TINFO : Enter block 4
fcntl14 0 TINFO : Test of locks on file PASSED
fcntl14 0 TINFO : Exit block 4
<<<execution_status>>>
initiation_status="ok"
duration=6 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=7
<<<test_end>>>
<<<test_start>>>
tag=fcntl15 stime=1372195617
cmdline="fcntl15"
contacts=""
analysis=exit
<<<test_output>>>
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Test 2: test with "open" PASSED
fcntl15 0 TINFO : Exiting block 2
fcntl15 0 TINFO : Entering block 3
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Test 2: test with "open" PASSED
fcntl15 0 TINFO : Exiting block 2
fcntl15 0 TINFO : Entering block 3
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Test 2: test with "open" PASSED
fcntl15 0 TINFO : Exiting block 2
fcntl15 0 TINFO : Entering block 3
fcntl15 0 TINFO : Test 3: test with "fork" PASSED
fcntl15 0 TINFO : Exiting block 3
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl15_64 stime=1372195627
cmdline="fcntl15_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Test 2: test with "open" PASSED
fcntl15 0 TINFO : Exiting block 2
fcntl15 0 TINFO : Entering block 3
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Test 2: test with "open" PASSED
fcntl15 0 TINFO : Exiting block 2
fcntl15 0 TINFO : Entering block 3
fcntl15 0 TINFO : Entering block 1
fcntl15 0 TINFO : Test 1: test with "dup" PASSED
fcntl15 0 TINFO : Exiting block 1
fcntl15 0 TINFO : Entering block 2
fcntl15 0 TINFO : Test 2: test with "open" PASSED
fcntl15 0 TINFO : Exiting block 2
fcntl15 0 TINFO : Entering block 3
fcntl15 0 TINFO : Test 3: test with "fork" PASSED
fcntl15 0 TINFO : Exiting block 3
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl16 stime=1372195637
cmdline="fcntl16"
contacts=""
analysis=exit
<<<test_output>>>
fcntl16 0 TINFO : Entering block 1
fcntl16 0 TINFO : Test case 1: without manadatory locking PASSED
fcntl16 0 TINFO : Exiting block 1
fcntl16 0 TINFO : Entering block 2
fcntl16 0 TINFO : Test case 2: with mandatory record locking PASSED
fcntl16 0 TINFO : Exiting block 2
fcntl16 0 TINFO : Entering block 3
fcntl16 0 TINFO : Test case 3: mandatory locking with NODELAY PASSED
fcntl16 0 TINFO : Exiting block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl16_64 stime=1372195637
cmdline="fcntl16_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl16 0 TINFO : Entering block 1
fcntl16 0 TINFO : Test case 1: without manadatory locking PASSED
fcntl16 0 TINFO : Exiting block 1
fcntl16 0 TINFO : Entering block 2
fcntl16 0 TINFO : Test case 2: with mandatory record locking PASSED
fcntl16 0 TINFO : Exiting block 2
fcntl16 0 TINFO : Entering block 3
fcntl16 0 TINFO : Test case 3: mandatory locking with NODELAY PASSED
fcntl16 0 TINFO : Exiting block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl17 stime=1372195637
cmdline="fcntl17"
contacts=""
analysis=exit
<<<test_output>>>
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : child 1 starting
fcntl17 0 TINFO : child 1 pid 6535 locked
fcntl17 0 TINFO : child 1 resuming
fcntl17 0 TINFO : child 1 unlocked
fcntl17 0 TINFO : child 1 exiting
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : child 3 starting
fcntl17 0 TINFO : child 3 pid 6537 locked
fcntl17 0 TINFO : child 3 resuming
fcntl17 0 TINFO : child 3 lockw err 35
fcntl17 0 TINFO : child 3 exiting
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : child 2 starting
fcntl17 0 TINFO : child 2 pid 6536 locked
fcntl17 0 TINFO : child 2 resuming
fcntl17 0 TINFO : child 2 lockw locked
fcntl17 0 TINFO : child 2 exiting
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : Exit preparation phase
fcntl17 0 TINFO : Enter block 1
fcntl17 0 TINFO : Block 1 PASSED
fcntl17 0 TINFO : Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl17_64 stime=1372195637
cmdline="fcntl17_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : child 1 starting
fcntl17 0 TINFO : child 1 pid 6539 locked
fcntl17 0 TINFO : child 1 resuming
fcntl17 0 TINFO : child 1 unlocked
fcntl17 0 TINFO : child 1 exiting
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : child 3 starting
fcntl17 0 TINFO : child 3 pid 6541 locked
fcntl17 0 TINFO : child 3 resuming
fcntl17 0 TINFO : child 3 lockw err 35
fcntl17 0 TINFO : child 3 exiting
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : child 2 starting
fcntl17 0 TINFO : child 2 pid 6540 locked
fcntl17 0 TINFO : child 2 resuming
fcntl17 0 TINFO : child 2 lockw locked
fcntl17 0 TINFO : child 2 exiting
fcntl17 0 TINFO : Enter preparation phase
fcntl17 0 TINFO : Exit preparation phase
fcntl17 0 TINFO : Enter block 1
fcntl17 0 TINFO : Block 1 PASSED
fcntl17 0 TINFO : Exit block 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl18 stime=1372195637
cmdline="fcntl18"
contacts=""
analysis=exit
<<<test_output>>>
fcntl18 0 TINFO : Enter block 1
fcntl18 1 TPASS : Test F_GETLK: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 1 PASSED
fcntl18 0 TINFO : Exit block 1
fcntl18 0 TINFO : Enter block 2
fcntl18 2 TPASS : Test F_GETLK64: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 2 PASSED
fcntl18 0 TINFO : Exit block 2
fcntl18 0 TINFO : Enter block 3
fcntl18 3 TPASS : Test for errno EINVAL PASSED
fcntl18 0 TINFO : Enter block 1
fcntl18 1 TPASS : Test F_GETLK: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 1 PASSED
fcntl18 0 TINFO : Exit block 1
fcntl18 0 TINFO : Enter block 2
fcntl18 2 TPASS : Test F_GETLK64: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 2 PASSED
fcntl18 0 TINFO : Exit block 2
fcntl18 0 TINFO : Enter block 3
fcntl18 0 TINFO : Block 3 PASSED
fcntl18 0 TINFO : Exit block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl18_64 stime=1372195637
cmdline="fcntl18_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl18 0 TINFO : Enter block 1
fcntl18 1 TPASS : Test F_GETLK: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 1 PASSED
fcntl18 0 TINFO : Exit block 1
fcntl18 0 TINFO : Enter block 2
fcntl18 2 TPASS : Test F_GETLK64: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 2 PASSED
fcntl18 0 TINFO : Exit block 2
fcntl18 0 TINFO : Enter block 3
fcntl18 3 TPASS : Test for errno EINVAL PASSED
fcntl18 0 TINFO : Enter block 1
fcntl18 1 TPASS : Test F_GETLK: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 1 PASSED
fcntl18 0 TINFO : Exit block 1
fcntl18 0 TINFO : Enter block 2
fcntl18 2 TPASS : Test F_GETLK64: for errno EFAULT PASSED
fcntl18 0 TINFO : Block 2 PASSED
fcntl18 0 TINFO : Exit block 2
fcntl18 0 TINFO : Enter block 3
fcntl18 0 TINFO : Block 3 PASSED
fcntl18 0 TINFO : Exit block 3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl19 stime=1372195637
cmdline="fcntl19"
contacts=""
analysis=exit
<<<test_output>>>
fcntl19 0 TINFO : Enter block 1
fcntl19 0 TINFO : Test block 1: PASSED
fcntl19 0 TINFO : Exit block 1
fcntl19 0 TINFO : Enter block 2
fcntl19 0 TINFO : Test block 2: PASSED
fcntl19 0 TINFO : Exit block 2
fcntl19 0 TINFO : Enter block 3
fcntl19 0 TINFO : Test block 3: PASSED
fcntl19 0 TINFO : Exit block 3
fcntl19 0 TINFO : Enter blcok 4
fcntl19 0 TINFO : Test block 4: PASSED
fcntl19 0 TINFO : Exit block 4
fcntl19 0 TINFO : Enter block 5
fcntl19 0 TINFO : Test block 5: PASSED
fcntl19 0 TINFO : Exit block 5
fcntl19 0 TINFO : Enter block 6
fcntl19 0 TINFO : Test block 6: PASSED
fcntl19 0 TINFO : Exit block 6
fcntl19 0 TINFO : Enter block 7
fcntl19 0 TINFO : Test block 7: PASSED
fcntl19 0 TINFO : Exit block 7
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl19_64 stime=1372195637
cmdline="fcntl19_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl19 0 TINFO : Enter block 1
fcntl19 0 TINFO : Test block 1: PASSED
fcntl19 0 TINFO : Exit block 1
fcntl19 0 TINFO : Enter block 2
fcntl19 0 TINFO : Test block 2: PASSED
fcntl19 0 TINFO : Exit block 2
fcntl19 0 TINFO : Enter block 3
fcntl19 0 TINFO : Test block 3: PASSED
fcntl19 0 TINFO : Exit block 3
fcntl19 0 TINFO : Enter blcok 4
fcntl19 0 TINFO : Test block 4: PASSED
fcntl19 0 TINFO : Exit block 4
fcntl19 0 TINFO : Enter block 5
fcntl19 0 TINFO : Test block 5: PASSED
fcntl19 0 TINFO : Exit block 5
fcntl19 0 TINFO : Enter block 6
fcntl19 0 TINFO : Test block 6: PASSED
fcntl19 0 TINFO : Exit block 6
fcntl19 0 TINFO : Enter block 7
fcntl19 0 TINFO : Test block 7: PASSED
fcntl19 0 TINFO : Exit block 7
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl20 stime=1372195637
cmdline="fcntl20"
contacts=""
analysis=exit
<<<test_output>>>
fcntl20 0 TINFO : Enter block 1
fcntl20 0 TINFO : Test block 1: PASSED
fcntl20 0 TINFO : Exit block 1
fcntl20 0 TINFO : Enter block 2
fcntl20 0 TINFO : Test block 2: PASSED
fcntl20 0 TINFO : Exit block 2
fcntl20 0 TINFO : Enter block 3
fcntl20 0 TINFO : Test block 3: PASSED
fcntl20 0 TINFO : Exit block 3
fcntl20 0 TINFO : Enter blcok 4
fcntl20 0 TINFO : Test block 4: PASSED
fcntl20 0 TINFO : Exit block 4
fcntl20 0 TINFO : Enter block 5
fcntl20 0 TINFO : Test block 5: PASSED
fcntl20 0 TINFO : Exit block 5
fcntl20 0 TINFO : Enter block 6
fcntl20 0 TINFO : Test block 6: PASSED
fcntl20 0 TINFO : Exit block 6
fcntl20 0 TINFO : Enter block 7
fcntl20 0 TINFO : Test block 7: PASSED
fcntl20 0 TINFO : Exit block 7
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl20_64 stime=1372195637
cmdline="fcntl20_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl20 0 TINFO : Enter block 1
fcntl20 0 TINFO : Test block 1: PASSED
fcntl20 0 TINFO : Exit block 1
fcntl20 0 TINFO : Enter block 2
fcntl20 0 TINFO : Test block 2: PASSED
fcntl20 0 TINFO : Exit block 2
fcntl20 0 TINFO : Enter block 3
fcntl20 0 TINFO : Test block 3: PASSED
fcntl20 0 TINFO : Exit block 3
fcntl20 0 TINFO : Enter blcok 4
fcntl20 0 TINFO : Test block 4: PASSED
fcntl20 0 TINFO : Exit block 4
fcntl20 0 TINFO : Enter block 5
fcntl20 0 TINFO : Test block 5: PASSED
fcntl20 0 TINFO : Exit block 5
fcntl20 0 TINFO : Enter block 6
fcntl20 0 TINFO : Test block 6: PASSED
fcntl20 0 TINFO : Exit block 6
fcntl20 0 TINFO : Enter block 7
fcntl20 0 TINFO : Test block 7: PASSED
fcntl20 0 TINFO : Exit block 7
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl21 stime=1372195637
cmdline="fcntl21"
contacts=""
analysis=exit
<<<test_output>>>
fcntl21 0 TINFO : Enter block 1
fcntl21 0 TINFO : Test block 1: PASSED
fcntl21 0 TINFO : Exit block 1
fcntl21 0 TINFO : Enter block 2
fcntl21 0 TINFO : Test block 2: PASSED
fcntl21 0 TINFO : Exit block 2
fcntl21 0 TINFO : Enter block 3
fcntl21 0 TINFO : Test block 3 : PASSED
fcntl21 0 TINFO : Exit block 3
fcntl21 0 TINFO : Enter block 4
fcntl21 0 TINFO : Test block 4: PASSED
fcntl21 0 TINFO : Exit block 4
fcntl21 0 TINFO : Enter block 5
fcntl21 0 TINFO : Test block 5: PASSED
fcntl21 0 TINFO : Exit block 5
fcntl21 0 TINFO : Enter block 6
fcntl21 0 TINFO : Test block 6 PASSED
fcntl21 0 TINFO : Exit block 6
fcntl21 0 TINFO : Enter block 7
fcntl21 0 TINFO : Test block 7: PASSED
fcntl21 0 TINFO : Exit block 7
fcntl21 0 TINFO : Enter block 8
fcntl21 0 TINFO : Test block 8: PASSED
fcntl21 0 TINFO : Exit block 8
fcntl21 0 TINFO : Enter block 9
fcntl21 0 TINFO : Test block 9: PASSED
fcntl21 0 TINFO : Exit block 9
fcntl21 0 TINFO : Enter block 10
fcntl21 0 TINFO : Test block 10: PASSED
fcntl21 0 TINFO : Exit block 10
fcntl21 0 TINFO : Enter block 11
fcntl21 0 TINFO : Test block 11: PASSED
fcntl21 0 TINFO : Exit block 11
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl21_64 stime=1372195637
cmdline="fcntl21_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl21 0 TINFO : Enter block 1
fcntl21 0 TINFO : Test block 1: PASSED
fcntl21 0 TINFO : Exit block 1
fcntl21 0 TINFO : Enter block 2
fcntl21 0 TINFO : Test block 2: PASSED
fcntl21 0 TINFO : Exit block 2
fcntl21 0 TINFO : Enter block 3
fcntl21 0 TINFO : Test block 3 : PASSED
fcntl21 0 TINFO : Exit block 3
fcntl21 0 TINFO : Enter block 4
fcntl21 0 TINFO : Test block 4: PASSED
fcntl21 0 TINFO : Exit block 4
fcntl21 0 TINFO : Enter block 5
fcntl21 0 TINFO : Test block 5: PASSED
fcntl21 0 TINFO : Exit block 5
fcntl21 0 TINFO : Enter block 6
fcntl21 0 TINFO : Test block 6 PASSED
fcntl21 0 TINFO : Exit block 6
fcntl21 0 TINFO : Enter block 7
fcntl21 0 TINFO : Test block 7: PASSED
fcntl21 0 TINFO : Exit block 7
fcntl21 0 TINFO : Enter block 8
fcntl21 0 TINFO : Test block 8: PASSED
fcntl21 0 TINFO : Exit block 8
fcntl21 0 TINFO : Enter block 9
fcntl21 0 TINFO : Test block 9: PASSED
fcntl21 0 TINFO : Exit block 9
fcntl21 0 TINFO : Enter block 10
fcntl21 0 TINFO : Test block 10: PASSED
fcntl21 0 TINFO : Exit block 10
fcntl21 0 TINFO : Enter block 11
fcntl21 0 TINFO : Test block 11: PASSED
fcntl21 0 TINFO : Exit block 11
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl22 stime=1372195637
cmdline="fcntl22"
contacts=""
analysis=exit
<<<test_output>>>
fcntl22 1 TPASS : fcntl() fails with expected error EAGAIN errno:11
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl22_64 stime=1372195637
cmdline="fcntl22_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl22 1 TPASS : fcntl() fails with expected error EAGAIN errno:11
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl23 stime=1372195637
cmdline="fcntl23"
contacts=""
analysis=exit
<<<test_output>>>
fcntl23 1 TPASS : fcntl(tfile_6562, F_SETLEASE, F_RDLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl23_64 stime=1372195637
cmdline="fcntl23_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl23 1 TPASS : fcntl(tfile_6563, F_SETLEASE, F_RDLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl24 stime=1372195637
cmdline="fcntl24"
contacts=""
analysis=exit
<<<test_output>>>
fcntl24 1 TPASS : fcntl(tfile_6564, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl24_64 stime=1372195637
cmdline="fcntl24_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl24 1 TPASS : fcntl(tfile_6565, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fcntl25 stime=1372195637
cmdline="fcntl25"
contacts=""
analysis=exit
<<<test_output>>>
fcntl25 1 TPASS : fcntl(tfile_6566, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl25_64 stime=1372195637
cmdline="fcntl25_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl25 1 TPASS : fcntl(tfile_6567, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl26 stime=1372195637
cmdline="fcntl26"
contacts=""
analysis=exit
<<<test_output>>>
fcntl26 1 TPASS : fcntl(tfile_6568, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl26_64 stime=1372195637
cmdline="fcntl26_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl26 1 TPASS : fcntl(tfile_6569, F_SETLEASE, F_WRLCK)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl27 stime=1372195637
cmdline="fcntl27"
contacts=""
analysis=exit
<<<test_output>>>
fcntl27 1 TPASS : fcntl(fd, F_SETLEASE, F_RDLCK) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl27_64 stime=1372195637
cmdline="fcntl27_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl27 1 TPASS : fcntl(fd, F_SETLEASE, F_RDLCK) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl28 stime=1372195637
cmdline="fcntl28"
contacts=""
analysis=exit
<<<test_output>>>
fcntl28 1 TPASS : fcntl(fd, F_SETLEASE, F_RDLCK) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fcntl28_64 stime=1372195637
cmdline="fcntl28_64"
contacts=""
analysis=exit
<<<test_output>>>
fcntl28 1 TPASS : fcntl(fd, F_SETLEASE, F_RDLCK) succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fdatasync01 stime=1372195637
cmdline="fdatasync01"
contacts=""
analysis=exit
<<<test_output>>>
fdatasync01 1 TPASS : fdatasync() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fdatasync02 stime=1372195637
cmdline="fdatasync02"
contacts=""
analysis=exit
<<<test_output>>>
fdatasync02 1 TPASS : Expected failure for invalid file descriptor, errno: 9
fdatasync02 2 TPASS : Expected failure for file descriptor to a special file, errno: 22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock01 stime=1372195637
cmdline="flock01"
contacts=""
analysis=exit
<<<test_output>>>
flock01 1 TPASS : flock() succeeded with Shared Lock, returned error number=0
flock01 2 TPASS : flock() succeeded with Unlock, returned error number=0
flock01 3 TPASS : flock() succeeded with Exclusive Lock, returned error number=0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock02 stime=1372195637
cmdline="flock02"
contacts=""
analysis=exit
<<<test_output>>>
flock02 1 TPASS : flock failed as expected with EBADF
flock02 2 TPASS : flock failed as expected with EINVAL
flock02 3 TPASS : flock failed as expected with EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock03 stime=1372195637
cmdline="flock03"
contacts=""
analysis=exit
<<<test_output>>>
CHILD: File locked by parent unlocked
CHILD: Locking after unlock passed
flock03 1 TPASS : Parent: Initial attempt to flock() passed
flock03 2 TPASS : flock03 Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock04 stime=1372195637
cmdline="flock04"
contacts=""
analysis=exit
<<<test_output>>>
flock04 1 TPASS : flock() PASSED in acquiring shared lock on Share Locked file
flock04 1 TPASS : flock() failed to acquire exclusive lock on existing share locked file as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=flock05 stime=1372195637
cmdline="flock05"
contacts=""
analysis=exit
<<<test_output>>>
flock05 1 TPASS : flock() failed to acquire shared lock on an alreadyexclusive locked file as expected
flock05 1 TPASS : flock() failed to acquire exclusive lock on existing exclusive locked file as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=flock06 stime=1372195637
cmdline="flock06"
contacts=""
analysis=exit
<<<test_output>>>
flock06 1 TPASS : First attempt to flock() passed
flock06 2 TPASS : Second attempt to flock() denied
flock06 3 TPASS : Unlocked fd1
flock06 4 TPASS : Third attempt to flock() succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fmtmsg01 stime=1372195637
cmdline="fmtmsg01"
contacts=""
analysis=exit
<<<test_output>>>
fmtms01 1 TPASS : Test passed
fmtms01 2 TPASS : Test passed
fmtms01 3 TPASS : Test passed
fmtms01 4 TPASS : Test passed
fmtms01 5 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork01 stime=1372195637
cmdline="fork01"
contacts=""
analysis=exit
<<<test_output>>>
fork01 1 TPASS : fork() returned 6589
fork01 2 TPASS : child pid and fork() return agree: 6589
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork02 stime=1372195637
cmdline="fork02"
contacts=""
analysis=exit
<<<test_output>>>
fork02 0 TINFO : Inside parent
fork02 0 TINFO : exit status of wait 0
fork02 1 TPASS : test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork03 stime=1372195637
cmdline="fork03"
contacts=""
analysis=exit
<<<test_output>>>
fork03 0 TINFO : process id in parent of child from fork : 6593
fork03 1 TPASS : test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork04 stime=1372195637
cmdline="fork04"
contacts=""
analysis=exit
<<<test_output>>>
fork04 1 TPASS : Env var TERM unchanged after fork(): xterm
fork04 2 TPASS : Env var NoTSetzWq unchanged after fork(): getenv() does not find variable set
fork04 3 TPASS : Env var TESTPROG unchanged after fork(): FRKTCS04
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork05 stime=1372195637
cmdline="fork05"
contacts=""
analysis=exit
<<<test_output>>>
fork05 0 TINFO : %fs test only for ix86
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork06 stime=1372195637
cmdline="fork06"
contacts=""
analysis=exit
<<<test_output>>>
fork06 0 TINFO : tries 1000
fork06 0 TINFO : successes 1000
fork06 0 TINFO : failures 0
fork06 0 TINFO : There were no children to wait for
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=2 cstime=15
<<<test_end>>>
<<<test_start>>>
tag=fork07 stime=1372195637
cmdline="fork07"
contacts=""
analysis=exit
<<<test_output>>>
fork07 0 TINFO : Forking 100 children
fork07 0 TINFO : Forked all 100 children, now collecting
fork07 0 TINFO : Collected all 100 children
fork07 1 TPASS : 100/100 children read correctly from an inheritted fd
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=fork08 stime=1372195638
cmdline="fork08"
contacts=""
analysis=exit
<<<test_output>>>
fork08 0 TINFO : parent forksval: 1
fork08 0 TINFO : second child got char: b
fork08 1 TPASS : Test passed in childnumber 2
fork08 0 TINFO : parent forksval: 1
fork08 0 TINFO : parent forksval: 2
fork08 0 TINFO : exit status of wait expected 0 got 0
fork08 1 TPASS : parent test PASSED
fork08 0 TINFO : exit status of wait expected 0 got 0
fork08 2 TPASS : parent test PASSED
fork08 0 TINFO : exit status of wait expected 0 got 0
fork08 3 TPASS : parent test PASSED
fork08 0 TINFO : Number of processes forked is 2
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork09 stime=1372195639
cmdline="fork09"
contacts=""
analysis=exit
<<<test_output>>>
fork09 0 TINFO : OPEN_MAX is 1024
fork09 0 TINFO : first file descriptor is 5
fork09 0 TINFO : Parent reporting 1023 files open
fork09 0 TINFO : Child opened new file #1023
fork09 0 TINFO : OPEN_MAX is 1024
fork09 0 TINFO : first file descriptor is 5
fork09 0 TINFO : Parent reporting 1023 files open
fork09 1 TPASS : test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=fork10 stime=1372195639
cmdline="fork10"
contacts=""
analysis=exit
<<<test_output>>>
fork10 0 TINFO : fork child A
fork10 1 TPASS : test 1 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fork11 stime=1372195639
cmdline="fork11"
contacts=""
analysis=exit
<<<test_output>>>
fork11 1 TPASS : fork test passed, 100 processes
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=fork13 stime=1372195639
cmdline="fork13 -i 1000000"
contacts=""
analysis=exit
<<<test_output>>>
fork13 1 TPASS : 1000000 pids forked, all passed
<<<execution_status>>>
initiation_status="ok"
duration=201 termination_type=exited termination_id=0 corefile=no
cutime=3568 cstime=16179
<<<test_end>>>
<<<test_start>>>
tag=fpathconf01 stime=1372195840
cmdline="fpathconf01"
contacts=""
analysis=exit
<<<test_output>>>
fpathconf01 1 TPASS : fpathconf(fd, _PC_MAX_CANON) returned 255
fpathconf01 2 TPASS : fpathconf(fd, _PC_MAX_INPUT) returned 255
fpathconf01 3 TPASS : fpathconf(fd, _PC_VDISABLE) returned 0
fpathconf01 4 TPASS : fpathconf(fd, _PC_LINK_MAX) returned 65000
fpathconf01 5 TPASS : fpathconf(fd, _PC_NAME_MAX) returned 255
fpathconf01 6 TPASS : fpathconf(fd, _PC_PATH_MAX) returned 4096
fpathconf01 7 TPASS : fpathconf(fd, _PC_PIPE_BUF) returned 4096
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat01 stime=1372195840
cmdline="fstat01"
contacts=""
analysis=exit
<<<test_output>>>
fstat01 1 TPASS : fstat returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat01_64 stime=1372195840
cmdline="fstat01_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat01 1 TPASS : fstat returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat02 stime=1372195840
cmdline="fstat02"
contacts=""
analysis=exit
<<<test_output>>>
fstat02 1 TPASS : functionality of fstat correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fstat02_64 stime=1372195840
cmdline="fstat02_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat02 1 TPASS : functionality of fstat correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat03 stime=1372195840
cmdline="fstat03"
contacts=""
analysis=exit
<<<test_output>>>
fstat03 1 TPASS : fstat() fails with expected error EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat03_64 stime=1372195840
cmdline="fstat03_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat03 1 TPASS : fstat() fails with expected error EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat04 stime=1372195840
cmdline="fstat04"
contacts=""
analysis=exit
<<<test_output>>>
fstat04 1 TPASS : fstat functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat04_64 stime=1372195840
cmdline="fstat04_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat04 1 TPASS : fstat functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstat05 stime=1372195840
cmdline="fstat05"
contacts=""
analysis=exit
<<<test_output>>>
fstat05 1 TPASS : fstat failed with EFAULT as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fstat05_64 stime=1372195840
cmdline="fstat05_64"
contacts=""
analysis=exit
<<<test_output>>>
fstat05 1 TPASS : fstat failed with EFAULT as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatat01 stime=1372195840
cmdline="fstatat01"
contacts=""
analysis=exit
<<<test_output>>>
fstatat01 1 TPASS : fstatat failed as expected: TEST_ERRNO=???(0): Success
fstatat01 2 TPASS : fstatat failed as expected: TEST_ERRNO=???(0): Success
fstatat01 3 TPASS : fstatat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
fstatat01 4 TPASS : fstatat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
fstatat01 5 TPASS : fstatat failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
fstatat01 6 TPASS : fstatat failed as expected: TEST_ERRNO=???(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatat01_64 stime=1372195840
cmdline="fstatat01_64"
contacts=""
analysis=exit
<<<test_output>>>
fstatat01 1 TPASS : fstatat failed as expected: TEST_ERRNO=???(0): Success
fstatat01 2 TPASS : fstatat failed as expected: TEST_ERRNO=???(0): Success
fstatat01 3 TPASS : fstatat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
fstatat01 4 TPASS : fstatat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
fstatat01 5 TPASS : fstatat failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
fstatat01 6 TPASS : fstatat failed as expected: TEST_ERRNO=???(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatfs01 stime=1372195840
cmdline="fstatfs01"
contacts=""
analysis=exit
<<<test_output>>>
fstatfs01 1 TPASS : fstatfs(5, &stats, sizeof(struct statfs), 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatfs01_64 stime=1372195840
cmdline="fstatfs01_64"
contacts=""
analysis=exit
<<<test_output>>>
fstatfs01 1 TPASS : fstatfs(5, &stats, sizeof(struct statfs), 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatfs02 stime=1372195840
cmdline="fstatfs02"
contacts=""
analysis=exit
<<<test_output>>>
fstatfs02 1 TPASS : expected failure - errno = 9 : Bad file descriptor
fstatfs02 2 TPASS : expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fstatfs02_64 stime=1372195840
cmdline="fstatfs02_64"
contacts=""
analysis=exit
<<<test_output>>>
fstatfs02 1 TPASS : expected failure - errno = 9 : Bad file descriptor
fstatfs02 2 TPASS : expected failure - errno = 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=fsync01 stime=1372195840
cmdline="fsync01"
contacts=""
analysis=exit
<<<test_output>>>
fsync01 1 TPASS : fsync returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=fsync02 stime=1372195840
cmdline="fsync02"
contacts=""
analysis=exit
<<<test_output>>>
fsync02 1 TPASS : fsync succeeded in an acceptable amount of time
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=6
<<<test_end>>>
<<<test_start>>>
tag=fsync03 stime=1372195842
cmdline="fsync03"
contacts=""
analysis=exit
<<<test_output>>>
fsync03 1 TPASS : expected failure - errno = 9 : Bad file descriptor
fsync03 2 TPASS : expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate01 stime=1372195842
cmdline="ftruncate01"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate01 1 TPASS : Functionality of ftruncate() on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate01_64 stime=1372195842
cmdline="ftruncate01_64"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate01_64 1 TPASS : Functionality of ftruncate() on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate02 stime=1372195842
cmdline="ftruncate02"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate02 1 TPASS : Functionality of ftruncate(2) on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate02_64 stime=1372195842
cmdline="ftruncate02_64"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate02_64 1 TPASS : Functionality of ftruncate(2) on testfile successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate03 stime=1372195842
cmdline="ftruncate03"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate03 1 TPASS : Test Passed
ftruncate03 2 TPASS : Test Passed
ftruncate03 3 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ftruncate03_64 stime=1372195842
cmdline="ftruncate03_64"
contacts=""
analysis=exit
<<<test_output>>>
ftruncate03_64 1 TPASS : Test Passed
ftruncate03_64 2 TPASS : Test Passed
ftruncate03_64 3 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=ftruncate04 stime=1372195842
cmdline="ftruncate04.sh"
contacts=""
analysis=exit
<<<test_output>>>
DEV: /dev/loop0
MOUNT_POINT: /
FLAG: rw,relatime,errors=remount-ro,data=ordered
ftruncate04 1 TPASS : Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=12
<<<test_end>>>
<<<test_start>>>
tag=ftruncate04_64 stime=1372195842
cmdline="ftruncate04.sh 64"
contacts=""
analysis=exit
<<<test_output>>>
DEV: /dev/loop0
MOUNT_POINT: /
FLAG: rw,relatime,errors=remount-ro,data=ordered
ftruncate04_64 1 TPASS : Test passed.
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=4
<<<test_end>>>
<<<test_start>>>
tag=futimesat01 stime=1372195843
cmdline="futimesat01"
contacts=""
analysis=exit
<<<test_output>>>
futimesat01 1 TPASS : futimesat() returned the expected errno 0: Success
futimesat01 2 TPASS : futimesat() returned the expected errno 0: Success
futimesat01 3 TPASS : futimesat() returned the expected errno 20: Not a directory
futimesat01 4 TPASS : futimesat() returned the expected errno 9: Bad file descriptor
futimesat01 5 TPASS : futimesat() returned the expected errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getcontext01 stime=1372195843
cmdline="getcontext01"
contacts=""
analysis=exit
<<<test_output>>>
getcontext01 1 TPASS : getcontext passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getcpu01 stime=1372195843
cmdline="getcpu01"
contacts=""
analysis=exit
<<<test_output>>>
getcpu01 1 TPASS : getcpu() returned proper cpuid:3, node id:0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getcwd01 stime=1372195843
cmdline="getcwd01"
contacts=""
analysis=exit
<<<test_output>>>
getcwd01 0 TINFO : Test for EFAULT
getcwd01 1 TPASS : Test case 1 PASSED
getcwd01 0 TINFO : Test for ENOMEM
getcwd01 2 TPASS : Test case 2 PASSED
getcwd01 0 TINFO : Test for EINVAL
getcwd01 3 TPASS : Test case 3 PASSED
getcwd01 0 TINFO : Test for ERANGE
getcwd01 4 TPASS : Test case 4 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getcwd02 stime=1372195843
cmdline="getcwd02"
contacts=""
analysis=exit
<<<test_output>>>
getcwd02 0 TINFO : Enter Block 1
getcwd02 0 TINFO : Exit Block 1
getcwd02 1 TPASS : Block 1 PASSED
getcwd02 0 TINFO : Enter Block 2
getcwd02 0 TINFO : Exit Block 2
getcwd02 2 TPASS : Block 2 PASSED
getcwd02 0 TINFO : Enter Block 3
getcwd02 0 TINFO : Exit Block 3
getcwd02 3 TPASS : Block 3 PASSED
getcwd02 0 TINFO : Enter Block 4
getcwd02 0 TINFO : Exit Block 4
getcwd02 4 TPASS : Block 4 PASSED
getcwd02 0 TINFO : Enter Block 5
getcwd02 0 TINFO : Exit Block 5
getcwd02 5 TPASS : Block 5 PASSED
getcwd02 0 TINFO : Enter Block 6
getcwd02 0 TINFO : Exit Block 6
getcwd02 6 TPASS : Block 6 PASSED
getcwd02 0 TINFO : Enter Block 7
getcwd02 0 TINFO : Exit Block 7
getcwd02 7 TPASS : Block 7 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getcwd03 stime=1372195843
cmdline="getcwd03"
contacts=""
analysis=exit
<<<test_output>>>
getcwd03 0 TINFO : getcwd(2) succeeded in returning correct path for dir1
getcwd03 0 TINFO : getcwd(2) succeeded in returning correct path for symbolic link dir2 -> dir1
getcwd03 1 TPASS : Test PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents01 stime=1372195843
cmdline="getdents01"
contacts=""
analysis=exit
<<<test_output>>>
getdents01 0 TINFO : Found 'symlink'
getdents01 0 TINFO : Found 'file'
getdents01 0 TINFO : Found '.'
getdents01 0 TINFO : Found 'dir'
getdents01 0 TINFO : Found '..'
getdents01 1 TPASS : All entires found
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents02 stime=1372195843
cmdline="getdents02"
contacts=""
analysis=exit
<<<test_output>>>
getdents02 1 TPASS : failed as expected with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getdents03 stime=1372195843
cmdline="getdents03"
contacts=""
analysis=exit
<<<test_output>>>
getdents03 1 TPASS : getdents failed with EINVAL as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents04 stime=1372195843
cmdline="getdents04"
contacts=""
analysis=exit
<<<test_output>>>
getdents04 1 TPASS : getdents failed as expected with ENOTDIR
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents01_64 stime=1372195843
cmdline="getdents01 -l"
contacts=""
analysis=exit
<<<test_output>>>
getdents01 0 TINFO : Found 'symlink'
getdents01 0 TINFO : Found 'file'
getdents01 0 TINFO : Found '.'
getdents01 0 TINFO : Found 'dir'
getdents01 0 TINFO : Found '..'
getdents01 1 TPASS : All entires found
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents02_64 stime=1372195843
cmdline="getdents02 -l"
contacts=""
analysis=exit
<<<test_output>>>
getdents02 1 TPASS : failed as expected with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents03_64 stime=1372195843
cmdline="getdents03 -l"
contacts=""
analysis=exit
<<<test_output>>>
getdents03 1 TPASS : getdents failed with EINVAL as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdents04_64 stime=1372195843
cmdline="getdents04 -l"
contacts=""
analysis=exit
<<<test_output>>>
getdents04 1 TPASS : getdents failed as expected with ENOTDIR
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdomainname01 stime=1372195843
cmdline="getdomainname01"
contacts=""
analysis=exit
<<<test_output>>>
getdomainname01 1 TPASS : getdomainname() returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getdtablesize01 stime=1372195843
cmdline="getdtablesize01"
contacts=""
analysis=exit
<<<test_output>>>
getdtablesize01 0 TINFO : Maximum number of files a process can have opened is 1024
getdtablesize01 0 TINFO : Checking with the value returned by getrlimit...RLIMIT_NOFILE
getdtablesize01 1 TPASS : got correct dtablesize, value is 1024
getdtablesize01 0 TINFO : Checking Max num of files that can be opened by a process.Should be: RLIMIT_NOFILE - 1
getdtablesize01 2 TPASS : 1023 = 1023
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=2
<<<test_end>>>
<<<test_start>>>
tag=getegid01 stime=1372195843
cmdline="getegid01"
contacts=""
analysis=exit
<<<test_output>>>
getegid01 1 TPASS : getegid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getegid01_16 stime=1372195843
cmdline="getegid01_16"
contacts=""
analysis=exit
<<<test_output>>>
getegid01_16 1 TPASS : getegid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getegid02 stime=1372195843
cmdline="getegid02"
contacts=""
analysis=exit
<<<test_output>>>
getegid02 1 TPASS : effective group id 0 is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getegid02_16 stime=1372195843
cmdline="getegid02_16"
contacts=""
analysis=exit
<<<test_output>>>
getegid02_16 1 TPASS : effective group id 0 is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=geteuid01 stime=1372195843
cmdline="geteuid01"
contacts=""
analysis=exit
<<<test_output>>>
geteuid01 1 TPASS : geteuid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=geteuid01_16 stime=1372195843
cmdline="geteuid01_16"
contacts=""
analysis=exit
<<<test_output>>>
geteuid01_16 1 TPASS : geteuid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgid01 stime=1372195843
cmdline="getgid01"
contacts=""
analysis=exit
<<<test_output>>>
getgid01 1 TPASS : getgid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgid01_16 stime=1372195843
cmdline="getgid01_16"
contacts=""
analysis=exit
<<<test_output>>>
getgid01_16 1 TPASS : getgid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgid03 stime=1372195843
cmdline="getgid03"
contacts=""
analysis=exit
<<<test_output>>>
getgid03 1 TPASS : group id 0 returned correctly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getgid03_16 stime=1372195843
cmdline="getgid03_16"
contacts=""
analysis=exit
<<<test_output>>>
getgid03_16 1 TPASS : group id 0 returned correctly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgroups01 stime=1372195843
cmdline="getgroups01"
contacts=""
analysis=exit
<<<test_output>>>
getgroups01 1 TPASS : getgroups failed as expected with EINVAL
getgroups01 2 TPASS : getgroups did not modify the gidset array
getgroups01 3 TCONF : getgroups returned 1; unable to test that using ngrps >=1 but less than number of grps
getgroups01 4 TPASS : getgroups(NGROUPS,gidset) returned 1 contains gid 0 (from getgid)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgroups01_16 stime=1372195843
cmdline="getgroups01_16"
contacts=""
analysis=exit
<<<test_output>>>
getgroups01 1 TPASS : getgroups failed as expected with EINVAL
getgroups01 2 TPASS : getgroups did not modify the gidset array
getgroups01 3 TCONF : getgroups returned 1; unable to test that using ngrps >=1 but less than number of grps
getgroups01 4 TPASS : getgroups(NGROUPS,gidset) returned 1 contains gid 0 (from getgid)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgroups03 stime=1372195843
cmdline="getgroups03"
contacts=""
analysis=exit
<<<test_output>>>
getgroups03 1 TPASS : getgroups functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getgroups03_16 stime=1372195843
cmdline="getgroups03_16"
contacts=""
analysis=exit
<<<test_output>>>
getgroups03 1 TPASS : getgroups functionality correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=gethostid01 stime=1372195843
cmdline="gethostid01"
contacts=""
analysis=exit
<<<test_output>>>
gethostid01 1 TPASS : Hostid command and gethostid both report hostid is 007f0101
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gethostname01 stime=1372195843
cmdline="gethostname01"
contacts=""
analysis=exit
<<<test_output>>>
gethostname01 1 TPASS : gethostname returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getitimer01 stime=1372195843
cmdline="getitimer01"
contacts=""
analysis=exit
<<<test_output>>>
getitimer01 1 TPASS : functionality is ok
getitimer01 2 TPASS : functionality is ok
getitimer01 3 TPASS : functionality is ok
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getitimer02 stime=1372195843
cmdline="getitimer02"
contacts=""
analysis=exit
<<<test_output>>>
getitimer02 1 TPASS : expected failure - errno = 14 - Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getitimer03 stime=1372195843
cmdline="getitimer03"
contacts=""
analysis=exit
<<<test_output>>>
getitimer03 1 TPASS : expected failure - errno = 22 - Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpagesize01 stime=1372195843
cmdline="getpagesize01"
contacts=""
analysis=exit
<<<test_output>>>
getpagesize01 0 TINFO : Page Size is 4096
getpagesize01 1 TPASS : getpagesize - Page size returned 4096
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpeername01 stime=1372195843
cmdline="getpeername01"
contacts=""
analysis=exit
<<<test_output>>>
getpeername01 1 TPASS : bad file descriptor successful
getpeername01 2 TPASS : bad file descriptor successful
getpeername01 3 TPASS : invalid salen successful
getpeername01 4 TPASS : invalid socket buffer successful
getpeername01 5 TPASS : invalid aligned salen successful
getpeername01 6 TPASS : invalid unaligned salen successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getpgid01 stime=1372195843
cmdline="getpgid01"
contacts=""
analysis=exit
<<<test_output>>>
getpgid01 0 TINFO : Enter block 1
getpgid01 1 TPASS : Test block 1: getpgid(0) PASSED
getpgid01 0 TINFO : Exit block 1
getpgid01 0 TINFO : Enter block 2
getpgid01 2 TPASS : Test block 2: getpgid(getpid()) PASSED
getpgid01 0 TINFO : Exit block 2
getpgid01 0 TINFO : Enter block 3
getpgid01 3 TPASS : Test block 3: getpgid(getppid()) PASSED
getpgid01 0 TINFO : Exit block 3
getpgid01 0 TINFO : Enter block 4
getpgid01 4 TPASS : Test block 4: getpgid(1) PASSED
getpgid01 0 TINFO : Exit block 4
getpgid01 0 TINFO : Enter block 5
getpgid01 5 TPASS : Test block 5: getpgid(1) PASSED
getpgid01 0 TINFO : Exit block 5
getpgid01 0 TINFO : getpgid01 PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpgid02 stime=1372195843
cmdline="getpgid02"
contacts=""
analysis=exit
<<<test_output>>>
getpgid02 1 TPASS : expected failure - errno = 3 : No such process
getpgid02 2 TPASS : expected failure - errno = 3 : No such process
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpgrp01 stime=1372195843
cmdline="getpgrp01"
contacts=""
analysis=exit
<<<test_output>>>
getpgrp01 1 TPASS : getpgrp returned 12208
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpid01 stime=1372195843
cmdline="getpid01"
contacts=""
analysis=exit
<<<test_output>>>
getpid01 1 TPASS : getpid returned 12209
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpid02 stime=1372195843
cmdline="getpid02"
contacts=""
analysis=exit
<<<test_output>>>
getpid02 1 TPASS : getpid functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getppid01 stime=1372195843
cmdline="getppid01"
contacts=""
analysis=exit
<<<test_output>>>
getppid01 1 TPASS : getppid returned 24331
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getppid02 stime=1372195843
cmdline="getppid02"
contacts=""
analysis=exit
<<<test_output>>>
return value and parent's pid value match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpriority01 stime=1372195843
cmdline="getpriority01"
contacts=""
analysis=exit
<<<test_output>>>
getpriority01 1 TPASS : getpriority(0, 0) returned 0 priority value
getpriority01 2 TPASS : getpriority(1, 0) returned 0 priority value
getpriority01 3 TPASS : getpriority(2, 0) returned -20 priority value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getpriority02 stime=1372195843
cmdline="getpriority02"
contacts=""
analysis=exit
<<<test_output>>>
getpriority02 1 TPASS : getpriority(2) fails, Invalid 'which' value specified, errno:22
getpriority02 2 TPASS : getpriority(2) fails, Invalid 'who' value specified, errno:3
getpriority02 3 TPASS : getpriority(2) fails, Invalid 'who' value specified, errno:3
getpriority02 4 TPASS : getpriority(2) fails, Invalid 'who' value specified, errno:3
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getresgid01 stime=1372195843
cmdline="getresgid01"
contacts=""
analysis=exit
<<<test_output>>>
getresgid01 1 TPASS : Functionality of getresgid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresgid02 stime=1372195843
cmdline="getresgid02"
contacts=""
analysis=exit
<<<test_output>>>
getresgid02 1 TPASS : Functionality of getresgid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresgid03 stime=1372195843
cmdline="getresgid03"
contacts=""
analysis=exit
<<<test_output>>>
getresgid03 1 TPASS : Functionality of getresgid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresuid01 stime=1372195843
cmdline="getresuid01"
contacts=""
analysis=exit
<<<test_output>>>
getresuid01 1 TPASS : Functionality of getresuid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresuid02 stime=1372195843
cmdline="getresuid02"
contacts=""
analysis=exit
<<<test_output>>>
getresuid02 1 TPASS : Functionality of getresuid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getresuid03 stime=1372195843
cmdline="getresuid03"
contacts=""
analysis=exit
<<<test_output>>>
getresuid03 1 TPASS : Functionality of getresuid() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrlimit01 stime=1372195843
cmdline="getrlimit01"
contacts=""
analysis=exit
<<<test_output>>>
getrlimit01 1 TPASS : getrlimit() returned 0; got RLIMIT_CPU values
getrlimit01 2 TPASS : getrlimit() returned 0; got RLIMIT_FSIZE values
getrlimit01 3 TPASS : getrlimit() returned 0; got RLIMIT_DATA values
getrlimit01 4 TPASS : getrlimit() returned 0; got RLIMIT_STACK values
getrlimit01 5 TPASS : getrlimit() returned 0; got RLIMIT_CORE values
getrlimit01 6 TPASS : getrlimit() returned 0; got RLIMIT_RSS values
getrlimit01 7 TPASS : getrlimit() returned 0; got RLIMIT_NPROC values
getrlimit01 8 TPASS : getrlimit() returned 0; got RLIMIT_NOFILE values
getrlimit01 9 TPASS : getrlimit() returned 0; got RLIMIT_MEMLOCK values
getrlimit01 10 TPASS : getrlimit() returned 0; got RLIMIT_AS values
getrlimit01 11 TPASS : getrlimit() returned 0; got RLIMIT_LOCKS values
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrlimit02 stime=1372195843
cmdline="getrlimit02"
contacts=""
analysis=exit
<<<test_output>>>
getrlimit02 1 TPASS : expected failure; got EFAULT
getrlimit02 2 TPASS : expected failure; got EINVAL
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=get_mempolicy01 stime=1372195843
cmdline="get_mempolicy01"
contacts=""
analysis=exit
<<<test_output>>>
get_mempolicy01 1 TCONF : System doesn't have required numa support
get_mempolicy01 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=get_robust_list01 stime=1372195843
cmdline="get_robust_list01"
contacts=""
analysis=exit
<<<test_output>>>
get_robust_list01 1 TPASS : get_robust_list failed as expected with EFAULT
get_robust_list01 2 TPASS : get_robust_list failed as expected with EFAULT
get_robust_list01 3 TPASS : get_robust_list failed as expected with ESRCH
get_robust_list01 4 TPASS : get_robust_list succeeded
get_robust_list01 5 TPASS : get_robust_list failed as expected with EPERM
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrusage01 stime=1372195843
cmdline="getrusage01"
contacts=""
analysis=exit
<<<test_output>>>
getrusage01 1 TPASS : getrusage passed
getrusage01 2 TPASS : getrusage passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrusage02 stime=1372195843
cmdline="getrusage02"
contacts=""
analysis=exit
<<<test_output>>>
getrusage02 1 TPASS : getrusage failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
getrusage02 2 TPASS : getrusage failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getrusage03 stime=1372195843
cmdline="getrusage03"
contacts=""
analysis=exit
<<<test_output>>>
getrusage03 0 TINFO : allocate 100MB
getrusage03 0 TINFO : Testcase #01: fork inherit
getrusage03 0 TINFO : initial.self = 103004
getrusage03 0 TINFO : child.self = 102532
getrusage03 0 TINFO : allocate 100MB
getrusage03 0 TINFO : Testcase #01: fork inherit
getrusage03 0 TINFO : initial.self = 103004
getrusage03 1 TPASS : initial.self ~= child.self
getrusage03 0 TINFO : Testcase #02: fork inherit(cont.)
getrusage03 0 TINFO : initial.children = 102708
getrusage03 2 TPASS : initial.children ~= 100MB
getrusage03 0 TINFO : child.children = 0
getrusage03 0 TINFO : allocate 100MB
getrusage03 0 TINFO : Testcase #01: fork inherit
getrusage03 0 TINFO : initial.self = 103004
getrusage03 1 TPASS : initial.self ~= child.self
getrusage03 0 TINFO : Testcase #02: fork inherit(cont.)
getrusage03 0 TINFO : initial.children = 102708
getrusage03 2 TPASS : initial.children ~= 100MB
getrusage03 3 TPASS : child.children == 0
getrusage03 0 TINFO : Testcase #03: fork + malloc
getrusage03 0 TINFO : initial.self = 103008
getrusage03 0 TINFO : child allocate +50MB
getrusage03 0 TINFO : child.self = 153856
getrusage03_child 0 TINFO : grandchild allocate 300MB
getrusage03_child 0 TINFO : grandchild allocate 300MB
getrusage03 0 TINFO : allocate 100MB
getrusage03 0 TINFO : Testcase #01: fork inherit
getrusage03 0 TINFO : initial.self = 103004
getrusage03 1 TPASS : initial.self ~= child.self
getrusage03 0 TINFO : Testcase #02: fork inherit(cont.)
getrusage03 0 TINFO : initial.children = 102708
getrusage03 2 TPASS : initial.children ~= 100MB
getrusage03 3 TPASS : child.children == 0
getrusage03 0 TINFO : Testcase #03: fork + malloc
getrusage03 0 TINFO : initial.self = 103008
getrusage03 4 TPASS : initial.self + 50MB ~= child.self
getrusage03 0 TINFO : Testcase #04: grandchild maxrss
getrusage03 0 TINFO : initial.children = 153932
getrusage03_child 0 TINFO : child allocate 400MB
getrusage03 0 TINFO : allocate 100MB
getrusage03 0 TINFO : Testcase #01: fork inherit
getrusage03 0 TINFO : initial.self = 103004
getrusage03 1 TPASS : initial.self ~= child.self
getrusage03 0 TINFO : Testcase #02: fork inherit(cont.)
getrusage03 0 TINFO : initial.children = 102708
getrusage03 2 TPASS : initial.children ~= 100MB
getrusage03 3 TPASS : child.children == 0
getrusage03 0 TINFO : Testcase #03: fork + malloc
getrusage03 0 TINFO : initial.self = 103008
getrusage03 4 TPASS : initial.self + 50MB ~= child.self
getrusage03 0 TINFO : Testcase #04: grandchild maxrss
getrusage03 0 TINFO : initial.children = 153932
getrusage03 0 TINFO : post_wait.children = 307472
getrusage03 5 TPASS : child.children ~= 300MB
getrusage03 0 TINFO : Testcase #05: zombie
getrusage03 0 TINFO : initial.children = 307472
getrusage03_child 0 TINFO : child allocate 500MB
getrusage03 0 TINFO : allocate 100MB
getrusage03 0 TINFO : Testcase #01: fork inherit
getrusage03 0 TINFO : initial.self = 103004
getrusage03 1 TPASS : initial.self ~= child.self
getrusage03 0 TINFO : Testcase #02: fork inherit(cont.)
getrusage03 0 TINFO : initial.children = 102708
getrusage03 2 TPASS : initial.children ~= 100MB
getrusage03 3 TPASS : child.children == 0
getrusage03 0 TINFO : Testcase #03: fork + malloc
getrusage03 0 TINFO : initial.self = 103008
getrusage03 4 TPASS : initial.self + 50MB ~= child.self
getrusage03 0 TINFO : Testcase #04: grandchild maxrss
getrusage03 0 TINFO : initial.children = 153932
getrusage03 0 TINFO : post_wait.children = 307472
getrusage03 5 TPASS : child.children ~= 300MB
getrusage03 0 TINFO : Testcase #05: zombie
getrusage03 0 TINFO : initial.children = 307472
getrusage03 0 TINFO : pre_wait.children = 307472
getrusage03 6 TPASS : initial.children ~= pre_wait.children
getrusage03 0 TINFO : post_wait.children = 410220
getrusage03 7 TPASS : post_wait.children ~= 400MB
getrusage03 0 TINFO : Testcase #06: SIG_IGN
getrusage03 0 TINFO : initial.children = 410220
getrusage03_child 0 TINFO : exec.self = 103028, exec.children = 410220
getrusage03_child 1 TPASS : initial.self ~= exec.self
getrusage03_child 2 TPASS : initial.children ~= exec.children
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=32 cstime=43
<<<test_end>>>
<<<test_start>>>
tag=getrusage04 stime=1372195845
cmdline="getrusage04"
contacts=""
analysis=exit
<<<test_output>>>
getrusage04 0 TINFO : Expected timers granularity is 4000 us
getrusage04 0 TINFO : Using 1 as multiply factor for max [us]time increment (1000+4000us)!
getrusage04 0 TINFO : utime: 450us; stime: 1275us
getrusage04 0 TINFO : utime: 453us; stime: 1275us
getrusage04 0 TINFO : utime: 454us; stime: 1276us
getrusage04 0 TINFO : utime: 456us; stime: 1276us
getrusage04 0 TINFO : utime: 457us; stime: 1277us
getrusage04 0 TINFO : utime: 458us; stime: 1277us
getrusage04 0 TINFO : utime: 460us; stime: 1277us
getrusage04 0 TINFO : utime: 461us; stime: 1278us
getrusage04 0 TINFO : utime: 463us; stime: 1278us
getrusage04 0 TINFO : utime: 464us; stime: 1278us
getrusage04 0 TINFO : utime: 466us; stime: 1279us
getrusage04 0 TINFO : utime: 467us; stime: 1279us
getrusage04 0 TINFO : utime: 468us; stime: 1279us
getrusage04 0 TINFO : utime: 470us; stime: 1280us
getrusage04 0 TINFO : utime: 471us; stime: 1280us
getrusage04 0 TINFO : utime: 473us; stime: 1281us
getrusage04 0 TINFO : utime: 474us; stime: 1281us
getrusage04 0 TINFO : utime: 475us; stime: 1281us
getrusage04 0 TINFO : utime: 477us; stime: 1282us
getrusage04 0 TINFO : utime: 478us; stime: 1282us
getrusage04 0 TINFO : utime: 480us; stime: 1282us
getrusage04 1 TPASS : Test Passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getsid01 stime=1372195845
cmdline="getsid01"
contacts=""
analysis=exit
<<<test_output>>>
getsid01 1 TPASS : session ID is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getsid02 stime=1372195845
cmdline="getsid02"
contacts=""
analysis=exit
<<<test_output>>>
getsid02 1 TPASS : expected failure - errno = 3 - No such process
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getsockname01 stime=1372195845
cmdline="getsockname01"
contacts=""
analysis=exit
<<<test_output>>>
getsockname01 1 TPASS : bad file descriptor successful
getsockname01 2 TPASS : bad file descriptor successful
getsockname01 3 TPASS : invalid socket buffer successful
getsockname01 4 TPASS : invalid aligned salen successful
getsockname01 5 TPASS : invalid unaligned salen successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getsockopt01 stime=1372195845
cmdline="getsockopt01"
contacts=""
analysis=exit
<<<test_output>>>
getsockopt01 1 TPASS : bad file descriptor successful
getsockopt01 2 TPASS : bad file descriptor successful
getsockopt01 3 TPASS : invalid option buffer successful
getsockopt01 4 TPASS : invalid optlen successful
getsockopt01 5 TPASS : invalid level successful
getsockopt01 6 TPASS : invalid option name successful
getsockopt01 7 TPASS : invalid option name (UDP) successful
getsockopt01 8 TPASS : invalid option name (IP) successful
getsockopt01 9 TPASS : invalid option name (TCP) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gettid01 stime=1372195845
cmdline="gettid01"
contacts=""
analysis=exit
<<<test_output>>>
gettid01 1 TPASS : gettid() returned 12249
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gettimeofday01 stime=1372195845
cmdline="gettimeofday01"
contacts=""
analysis=exit
<<<test_output>>>
gettimeofday01 1 TPASS : gettimeofday(2) set the errno EFAULT correctly
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=gettimeofday02 stime=1372195845
cmdline="gettimeofday02"
contacts=""
analysis=exit
<<<test_output>>>
gettimeofday02 0 TINFO : checking if gettimeofday is monotonous, takes 30s
gettimeofday02 1 TPASS : gettimeofday monotonous in 30 seconds
<<<execution_status>>>
initiation_status="ok"
duration=30 termination_type=exited termination_id=0 corefile=no
cutime=587 cstime=2410
<<<test_end>>>
<<<test_start>>>
tag=getuid01 stime=1372195875
cmdline="getuid01"
contacts=""
analysis=exit
<<<test_output>>>
getuid01 1 TPASS : getuid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid01_16 stime=1372195875
cmdline="getuid01_16"
contacts=""
analysis=exit
<<<test_output>>>
getuid01_16 1 TPASS : getuid returned 0
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid02 stime=1372195876
cmdline="getuid02"
contacts=""
analysis=exit
<<<test_output>>>
getuid02 1 TPASS : values from geteuid and getpwuid match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid02_16 stime=1372195876
cmdline="getuid02_16"
contacts=""
analysis=exit
<<<test_output>>>
getuid02_16 1 TPASS : values from geteuid and getpwuid match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid03 stime=1372195876
cmdline="getuid03"
contacts=""
analysis=exit
<<<test_output>>>
getuid03 1 TPASS : values from getuid and getpwuid match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getuid03_16 stime=1372195876
cmdline="getuid03_16"
contacts=""
analysis=exit
<<<test_output>>>
getuid03_16 1 TPASS : values from getuid and getpwuid match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getxattr01 stime=1372195876
cmdline="getxattr01"
contacts=""
analysis=exit
<<<test_output>>>
getxattr01 1 TPASS : expected behavior: TEST_ERRNO=???(61): No data available
getxattr01 2 TPASS : expected behavior: TEST_ERRNO=ERANGE(34): Numerical result out of range
getxattr01 3 TPASS : expected behavior: TEST_ERRNO=???(0): Success
getxattr01 4 TPASS : Got the right value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getxattr02 stime=1372195876
cmdline="getxattr02"
contacts=""
analysis=exit
<<<test_output>>>
getxattr02 1 TPASS : expected behavior: TEST_ERRNO=???(61): No data available
getxattr02 2 TPASS : expected behavior: TEST_ERRNO=???(61): No data available
getxattr02 3 TPASS : expected behavior: TEST_ERRNO=???(61): No data available
getxattr02 4 TPASS : expected behavior: TEST_ERRNO=???(61): No data available
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getxattr03 stime=1372195876
cmdline="getxattr03"
contacts=""
analysis=exit
<<<test_output>>>
getxattr03 1 TPASS : getxattr(2) returned correct value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ioctl01_02 stime=1372195876
cmdline=" test_ioctl"
contacts=""
analysis=exit
<<<test_output>>>
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty0
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty0
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty1
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty1
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty10
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty10
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty11
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty11
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty12
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty12
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty13
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty13
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty14
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty14
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty15
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty15
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty16
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty16
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty17
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty17
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty18
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty18
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty19
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty19
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty2
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty2
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty20
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty20
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty21
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty21
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty22
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty22
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty23
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty23
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty24
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty24
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty25
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty25
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty26
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty26
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty27
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty27
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty28
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty28
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty29
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty29
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty3
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty3
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty30
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty30
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty31
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty31
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty32
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty32
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty33
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty33
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty34
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty34
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty35
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty35
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty36
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty36
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty37
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty37
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty38
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty38
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty39
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty39
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty4
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty4
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty40
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty40
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty41
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty41
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty42
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty42
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty43
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty43
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty44
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty44
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty45
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty45
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty46
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty46
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty47
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty47
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty48
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty48
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty49
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty49
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty5
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty5
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty50
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty50
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty51
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty51
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty52
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty52
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty53
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty53
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty54
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty54
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty55
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty55
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty56
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty56
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty57
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty57
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty58
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty58
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty59
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty59
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty6
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty6
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty60
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty60
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty61
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty61
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty62
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty62
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty63
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty63
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty7
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty7
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty8
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty8
ioctl01_02 0 TINFO : Testing ioctl01 with /dev/tty9
ioctl01 1 TPASS : failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
ioctl01 2 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01 3 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 4 TPASS : failed as expected: TEST_ERRNO=ENOTTY(25): Inappropriate ioctl for device
ioctl01 5 TPASS : failed as expected: TEST_ERRNO=EFAULT(14): Bad address
ioctl01_02 1 TPASS : ioctl01 Passed with /dev/tty9
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty0
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty0
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty1
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty1
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty10
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty10
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty11
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty11
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty12
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty12
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty13
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty13
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty14
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty14
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty15
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty15
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty16
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty16
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty17
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty17
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty18
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty18
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty19
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty19
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty2
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty2
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty20
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty20
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty21
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty21
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty22
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty22
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty23
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty23
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty24
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty24
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty25
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty25
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty26
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty26
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty27
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty27
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty28
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty28
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty29
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty29
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty3
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty3
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty30
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty30
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty31
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty31
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty32
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty32
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty33
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty33
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty34
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty34
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty35
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty35
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty36
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty36
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty37
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty37
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty38
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty38
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty39
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty39
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty4
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty4
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty40
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty40
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty41
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty41
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty42
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty42
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty43
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty43
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty44
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty44
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty45
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty45
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty46
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty46
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty47
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty47
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty48
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty48
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty49
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty49
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty5
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty5
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty50
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty50
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty51
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty51
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty52
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty52
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty53
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty53
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty54
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty54
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty55
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty55
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty56
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty56
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty57
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty57
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty58
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty58
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty59
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty59
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty6
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty6
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty60
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty60
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty61
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty61
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty62
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty62
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty63
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty63
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty7
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty7
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty8
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty8
ioctl01_02 0 TINFO : Testing ioctl02 with /dev/tty9
ioctl02 0 TINFO : termio values are set as expected
ioctl02 1 TPASS : TCGETA/TCSETA tests SUCCEEDED
ioctl01_02 1 TPASS : ioctl02 Passed with /dev/tty9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=19 cstime=45
<<<test_end>>>
<<<test_start>>>
tag=ioctl03 stime=1372195876
cmdline=" ioctl03"
contacts=""
analysis=exit
<<<test_output>>>
ioctl03 0 TINFO : Available features are: 0x7103
ioctl03 0 TINFO : TUN 0x1
ioctl03 0 TINFO : TAP 0x2
ioctl03 0 TINFO : NO_PI 0x1000
ioctl03 0 TINFO : ONE_QUEUE 0x2000
ioctl03 0 TINFO : VNET_HDR 0x4000
ioctl03 0 TINFO : MULTI_QUEUE 0x100
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify_init1_01 stime=1372195876
cmdline="inotify_init1_01"
contacts=""
analysis=exit
<<<test_output>>>
inotify_init1_01 1 TPASS : inotify_init1(O_CLOEXEC) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify_init1_02 stime=1372195876
cmdline="inotify_init1_02"
contacts=""
analysis=exit
<<<test_output>>>
inotify_init1_02 1 TPASS : inotify_init1(IN_NONBLOCK) PASSED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify01 stime=1372195876
cmdline="inotify01"
contacts=""
analysis=exit
<<<test_output>>>
inotify01 1 TPASS : get event: wd=1 mask=4 cookie=0 len=0
inotify01 2 TPASS : get event: wd=1 mask=20 cookie=0 len=0
inotify01 3 TPASS : get event: wd=1 mask=1 cookie=0 len=0
inotify01 4 TPASS : get event: wd=1 mask=10 cookie=0 len=0
inotify01 5 TPASS : get event: wd=1 mask=20 cookie=0 len=0
inotify01 6 TPASS : get event: wd=1 mask=2 cookie=0 len=0
inotify01 7 TPASS : get event: wd=1 mask=8 cookie=0 len=0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=inotify02 stime=1372195876
cmdline="inotify02"
contacts=""
analysis=exit
<<<test_output>>>
inotify02 1 TPASS : get event: wd=1 mask=40000004 cookie=0 len=0 name="\x01"
inotify02 2 TPASS : get event: wd=1 mask=100 cookie=0 len=16 name="test_file1"
inotify02 3 TPASS : get event: wd=1 mask=20 cookie=0 len=16 name="test_file1"
inotify02 4 TPASS : get event: wd=1 mask=8 cookie=0 len=16 name="test_file1"
inotify02 5 TPASS : get event: wd=1 mask=40 cookie=5185 len=16 name="test_file1"
inotify02 6 TPASS : get event: wd=1 mask=80 cookie=5185 len=16 name="test_file2"
inotify02 7 TPASS : get event: wd=1 mask=800 cookie=0 len=0 name="\x01"
inotify02 8 TPASS : get event: wd=1 mask=200 cookie=0 len=16 name="test_file2"
inotify02 9 TPASS : get event: wd=1 mask=800 cookie=0 len=0 name=""
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify03 stime=1372195876
cmdline="inotify03 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
inotify03 0 TINFO : mount /dev/loop1 to mnt_12846 fstype=ext4
inotify03 0 TINFO : umount /dev/loop1
inotify03 1 TBROK : umount(2) Failed while unmounting errno = 16 : Device or resource busy
inotify03 2 TBROK : Remaining cases broken
inotify03 0 TWARN : umount(mnt_12846) failed: TEST_ERRNO=EBUSY(16): Device or resource busy
inotify03 0 TWARN : tst_rmdir: rmobj(/tmp/ltp-LbqYZRF5cO/inoeV99AP) failed: remove(/tmp/ltp-LbqYZRF5cO/inoeV99AP/mnt_12846) failed; errno=16: Device or resource busy
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=6 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=inotify04 stime=1372195876
cmdline="inotify04"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ioperm01 stime=1372195876
cmdline="ioperm01"
contacts=""
analysis=exit
<<<test_output>>>
ioperm01 1 TPASS : ioperm() passed for port address 1021, returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=ioperm02 stime=1372195876
cmdline="ioperm02"
contacts=""
analysis=exit
<<<test_output>>>
ioperm02 1 TPASS : Expected failure for Invalid I/O address, errno: 22
ioperm02 2 TPASS : Expected failure for Non super-user, errno: 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=iopl01 stime=1372195876
cmdline="iopl01"
contacts=""
analysis=exit
<<<test_output>>>
iopl01 1 TPASS : iopl() passed for level 0, returned 0
iopl01 2 TPASS : iopl() passed for level 1, returned 0
iopl01 3 TPASS : iopl() passed for level 2, returned 0
iopl01 4 TPASS : iopl() passed for level 3, returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=iopl02 stime=1372195876
cmdline="iopl02"
contacts=""
analysis=exit
<<<test_output>>>
iopl02 1 TPASS : Expected failure for Invalid privilege level, errno: 22
iopl02 2 TPASS : Expected failure for Non super-user, errno: 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_cancel01 stime=1372195876
cmdline="io_cancel01"
contacts=""
analysis=exit
<<<test_output>>>
io_cancel01 1 TPASS : expected failure - returned value = -14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_destroy01 stime=1372195876
cmdline="io_destroy01"
contacts=""
analysis=exit
<<<test_output>>>
io_destroy01 1 TPASS : expected failure - returned value = -22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_getevents01 stime=1372195876
cmdline="io_getevents01"
contacts=""
analysis=exit
<<<test_output>>>
io_getevents01 1 TPASS : expected failure - returned value = -22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_setup01 stime=1372195876
cmdline="io_setup01"
contacts=""
analysis=exit
<<<test_output>>>
io_setup01 1 TPASS : call succeeded expectedly
io_setup01 2 TPASS : expected failure - returned value = -22 : Invalid argument
io_setup01 3 TPASS : expected failure - returned value = -22 : Invalid argument
io_setup01 4 TPASS : expected failure - returned value = -14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=io_submit01 stime=1372195877
cmdline="io_submit01"
contacts=""
analysis=exit
<<<test_output>>>
io_submit01 1 TPASS : expected failure - returned value = -22 : Invalid argument
io_submit01 2 TPASS : expected failure - returned value = -22 : Invalid argument
io_submit01 3 TPASS : expected failure - returned value = -9 : Bad file descriptor
io_submit01 4 TPASS : expected failure - returned value = -14 : Bad address
io_submit01 5 TPASS : expected failure - returned value = -22 : Invalid argument
io_submit01 6 TPASS : expected failure - returned value = -9 : Bad file descriptor
io_submit01 7 TPASS : expected success - returned value = 0
io_submit01 8 TPASS : expected success - returned value = 1
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=keyctl01 stime=1372195877
cmdline="keyctl01"
contacts=""
analysis=exit
<<<test_output>>>
keyctl01 1 TCONF : keyctl syscall support not available on system
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=kill01 stime=1372195877
cmdline="kill01"
contacts=""
analysis=exit
<<<test_output>>>
kill01 1 TPASS : received expected signal 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill02 stime=1372195877
cmdline="kill02"
contacts=""
analysis=exit
<<<test_output>>>
kill02 1 TPASS : The signal was sent to all processes in the process group.
kill02 2 TPASS : The signal was not sent to selective processes that were not in the process group.
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill03 stime=1372195887
cmdline="kill03"
contacts=""
analysis=exit
<<<test_output>>>
kill03 1 TPASS : errno set to 22 : Invalid argument, as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill04 stime=1372195887
cmdline="kill04"
contacts=""
analysis=exit
<<<test_output>>>
kill04 1 TPASS : errno set to 3 : No such process, as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill05 stime=1372195887
cmdline="kill05"
contacts=""
analysis=exit
<<<test_output>>>
kill failed with EPERM
kill05 1 TPASS : received expected errno(EPERM)
<<<execution_status>>>
initiation_status="ok"
duration=2 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill06 stime=1372195889
cmdline="kill06"
contacts=""
analysis=exit
<<<test_output>>>
kill06 1 TPASS : received expected signal 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=kill07 stime=1372195889
cmdline="kill07"
contacts=""
analysis=exit
<<<test_output>>>
kill07 0 TINFO : received expected signal 9
kill07 1 TPASS : Did not catch signal as expected
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill08 stime=1372195890
cmdline="kill08"
contacts=""
analysis=exit
<<<test_output>>>
kill08 1 TPASS : received expected signal 9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill09 stime=1372195890
cmdline="kill09"
contacts=""
analysis=exit
<<<test_output>>>
kill09 1 TPASS : kill(12896, SIGKILL) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill10 stime=1372195890
cmdline="kill10"
contacts=""
analysis=exit
<<<test_output>>>
12898: All 10 children reported in
12899: All 10 children reported in
kill10 1 TPASS : All 2 pgrps received their signals
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=kill11 stime=1372195891
cmdline="ulimit -c 1024;kill11"
contacts=""
analysis=exit
<<<test_output>>>
kill11 1 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=kill12 stime=1372195892
cmdline="kill12"
contacts=""
analysis=exit
<<<test_output>>>
kill12 1 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=lchown01 stime=1372195892
cmdline="lchown01"
contacts=""
analysis=exit
<<<test_output>>>
lchown01 1 TPASS : lchown() succeeds to Change Owner/Group ids of slink_file
lchown01 2 TPASS : lchown() succeeds to Change Owner id only of slink_file
lchown01 3 TPASS : lchown() succeeds to Change Owner/Group ids of slink_file
lchown01 4 TPASS : lchown() succeeds to Change Group id only of slink_file
lchown01 5 TPASS : lchown() succeeds to Change Group/Group ids of slink_file
lchown01 6 TPASS : lchown() succeeds to Change none of slink_file
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lchown01_16 stime=1372195892
cmdline="lchown01_16"
contacts=""
analysis=exit
<<<test_output>>>
lchown01 1 TPASS : lchown() succeeds to Change Owner/Group ids of slink_file
lchown01 2 TPASS : lchown() succeeds to Change Owner id only of slink_file
lchown01 3 TPASS : lchown() succeeds to Change Owner/Group ids of slink_file
lchown01 4 TPASS : lchown() succeeds to Change Group id only of slink_file
lchown01 5 TPASS : lchown() succeeds to Change Group/Group ids of slink_file
lchown01 6 TPASS : lchown() succeeds to Change none of slink_file
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lchown02 stime=1372195892
cmdline=" lchown02"
contacts=""
analysis=exit
<<<test_output>>>
lchown02 1 TPASS : lchown(2) fails, Process is not owner/root, errno:1
lchown02 2 TPASS : lchown(2) fails, Search permission denied, errno:13
lchown02 3 TPASS : lchown(2) fails, Address beyond address space, errno:14
lchown02 4 TPASS : lchown(2) fails, Unaccessible address space, errno:14
lchown02 5 TPASS : lchown(2) fails, Pathname too long, errno:36
lchown02 6 TPASS : lchown(2) fails, Path contains regular file, errno:20
lchown02 7 TPASS : lchown(2) fails, Pathname is empty, errno:2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lchown02_16 stime=1372195892
cmdline="lchown02_16"
contacts=""
analysis=exit
<<<test_output>>>
lchown02 1 TPASS : lchown(2) fails, Process is not owner/root, errno:1
lchown02 2 TPASS : lchown(2) fails, Search permission denied, errno:13
lchown02 3 TPASS : lchown(2) fails, Address beyond address space, errno:14
lchown02 4 TPASS : lchown(2) fails, Unaccessible address space, errno:14
lchown02 5 TPASS : lchown(2) fails, Pathname too long, errno:36
lchown02 6 TPASS : lchown(2) fails, Path contains regular file, errno:20
lchown02 7 TPASS : lchown(2) fails, Pathname is empty, errno:2
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=link01 stime=1372195892
cmdline="symlink01 -T link01"
contacts=""
analysis=exit
<<<test_output>>>
link01 1 TPASS : link(2) to a symbolic link, which is pointing to an existing object file worked - file created and link count adjusted
link01 2 TPASS : link(2) to a symbolic link, which is pointing to a non-existing object file worked ok - file created and link count adjusted.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link02 stime=1372195892
cmdline="link02"
contacts=""
analysis=exit
<<<test_output>>>
link02 1 TPASS : link(tfile, lfile) returned 0 and link cnts match
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link03 stime=1372195892
cmdline="link03"
contacts=""
analysis=exit
<<<test_output>>>
link03 1 TPASS : link(lkfile_12966, lkfile_12966.[1-10]) ret 0 for 10 files, stat linkcounts match 10
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link04 stime=1372195892
cmdline="link04"
contacts=""
analysis=exit
<<<test_output>>>
link04 1 TPASS : link(<non-existent file>, <nefile>) Failed, errno=2
link04 2 TPASS : link(<path is empty string>, <nefile>) Failed, errno=2
link04 3 TPASS : link(<path contains a non-existent file>, <nefile>) Failed, errno=2
link04 4 TPASS : link(<path contains a regular file>, <nefile>) Failed, errno=20
link04 5 TPASS : link(<pathname too long>, <nefile>) Failed, errno=36
link04 6 TPASS : link(<address beyond address space>, <nefile>) Failed, errno=14
link04 7 TPASS : link(<negative address>, <nefile>) Failed, errno=14
link04 8 TPASS : link(<regfile>, <empty string>) Failed, errno=2
link04 9 TPASS : link(<regfile>, <path contains a non-existent file>) Failed, errno=2
link04 10 TPASS : link(<regfile>, <path contains a regular file>) Failed, errno=2
link04 11 TPASS : link(<regfile>, <pathname too long>) Failed, errno=36
link04 12 TPASS : link(<regfile>, <address beyond address space>) Failed, errno=14
link04 13 TPASS : link(<regfile>, <negative address>) Failed, errno=14
link04 14 TPASS : link(<regfile>, <regfile2>) Failed, errno=17
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=link05 stime=1372195892
cmdline="link05"
contacts=""
analysis=exit
<<<test_output>>>
link05 1 TPASS : link(lkfile_12968, lkfile_12968.[1-1000]) ret 0 for 1000 files, stat linkcounts match 1000
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=4
<<<test_end>>>
<<<test_start>>>
tag=link06 stime=1372195892
cmdline="link06"
contacts=""
analysis=exit
<<<test_output>>>
link06 1 TPASS : link() fails with expected error EACCES errno:13
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=link07 stime=1372195892
cmdline="link07"
contacts=""
analysis=exit
<<<test_output>>>
link07 1 TPASS : link() fails with expected error EACCES errno:13
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=linkat01 stime=1372195892
cmdline="linkat01"
contacts=""
analysis=exit
<<<test_output>>>
linkat01 1 TPASS : linkat is functionality correct
linkat01 2 TPASS : linkat succeeded as expected
linkat01 3 TPASS : linkat is functionality correct
linkat01 4 TPASS : linkat is functionality correct
linkat01 5 TPASS : linkat is functionality correct
linkat01 6 TPASS : linkat succeeded as expected
linkat01 7 TPASS : linkat is functionality correct
linkat01 8 TPASS : linkat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
linkat01 9 TPASS : linkat failed as expected: TEST_ERRNO=ENOTDIR(20): Not a directory
linkat01 10 TPASS : linkat succeeded as expected
linkat01 11 TPASS : linkat is functionality correct
linkat01 12 TPASS : linkat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
linkat01 13 TPASS : linkat failed as expected: TEST_ERRNO=EBADF(9): Bad file descriptor
linkat01 14 TPASS : linkat succeeded as expected
linkat01 15 TPASS : linkat is functionality correct
linkat01 16 TPASS : linkat failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
linkat01 17 TPASS : linkat failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
linkat01 18 TPASS : linkat succeeded as expected
linkat01 19 TPASS : linkat is functionality correct
linkat01 20 TPASS : linkat failed as expected: TEST_ERRNO=EXDEV(18): Invalid cross-device link
linkat01 21 TPASS : linkat failed as expected: TEST_ERRNO=EPERM(1): Operation not permitted
linkat01 22 TPASS : linkat failed as expected: TEST_ERRNO=EINVAL(22): Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=listen01 stime=1372195892
cmdline="listen01"
contacts=""
analysis=exit
<<<test_output>>>
listen01 1 TPASS : bad file descriptor successful
listen01 2 TPASS : not a socket successful
listen01 3 TPASS : UDP listen successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=llseek01 stime=1372195892
cmdline="llseek01"
contacts=""
analysis=exit
<<<test_output>>>
llseek01 1 TPASS : Functionality of llseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=llseek02 stime=1372195892
cmdline="llseek02"
contacts=""
analysis=exit
<<<test_output>>>
llseek02 1 TPASS : llseek() fails, 'whence' argument is not valid, errno:22
llseek02 2 TPASS : llseek() fails, 'fd' is not an open file descriptor, errno:9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek01 stime=1372195892
cmdline="lseek01"
contacts=""
analysis=exit
<<<test_output>>>
lseek01 1 TPASS : lseek(tfile_12975, 0, 0) returned 0
lseek01 2 TPASS : lseek(tfile_12975, 0, 1) returned 0
lseek01 3 TPASS : lseek(tfile_12975, 0, 2) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek02 stime=1372195892
cmdline="lseek02"
contacts=""
analysis=exit
<<<test_output>>>
lseek02 1 TPASS : lseek(-1, 1, SEEK_SET) Failed, errno=9 : Bad file descriptor
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek03 stime=1372195892
cmdline="lseek03"
contacts=""
analysis=exit
<<<test_output>>>
lseek03 1 TPASS : lseek(tfile_12977, 1, 5) Failed, errno=22 : Invalid argument
lseek03 2 TPASS : lseek(tfile_12977, 1, -1) Failed, errno=22 : Invalid argument
lseek03 3 TPASS : lseek(tfile_12977, 1, 7) Failed, errno=22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek04 stime=1372195892
cmdline="lseek04"
contacts=""
analysis=exit
<<<test_output>>>
lseek04 1 TPASS : lseek(fifofd, 1, SEEK_SET) Failed, errno=29 : Illegal seek
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek05 stime=1372195892
cmdline="lseek05"
contacts=""
analysis=exit
<<<test_output>>>
lseek05 1 TPASS : lseek(pipefd, 1, SEEK_SET) Failed, errno=29 : Illegal seek
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek06 stime=1372195892
cmdline="lseek06"
contacts=""
analysis=exit
<<<test_output>>>
lseek06 1 TPASS : Functionality of lseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=lseek07 stime=1372195892
cmdline="lseek07"
contacts=""
analysis=exit
<<<test_output>>>
lseek07 1 TPASS : Functionality of lseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek08 stime=1372195892
cmdline="lseek08"
contacts=""
analysis=exit
<<<test_output>>>
lseek08 1 TPASS : Functionality of lseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek09 stime=1372195892
cmdline="lseek09"
contacts=""
analysis=exit
<<<test_output>>>
lseek09 1 TPASS : Functionality of lseek() on tmp_file successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lseek10 stime=1372195892
cmdline="lseek10"
contacts=""
analysis=exit
<<<test_output>>>
lseek10 1 TPASS : lseek() fails, 'fd' associated with a pipe/fifo, errno:29
lseek10 2 TPASS : lseek() fails, 'whence' argument is not valid, errno:22
lseek10 3 TPASS : lseek() fails, 'fd' is not an open file descriptor, errno:9
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat01A stime=1372195892
cmdline="symlink01 -T lstat01"
contacts=""
analysis=exit
<<<test_output>>>
lstat01 1 TPASS : lstat(2) of symbolic link file which points to no object file is ok
lstat01 2 TPASS : lstat(2) of symbolic link file which points at an object file is ok
lstat01 3 TPASS : lstat(2) of object file returns object file inode information
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat01A_64 stime=1372195892
cmdline="symlink01 -T lstat01_64"
contacts=""
analysis=exit
<<<test_output>>>
lstat01_64 1 TPASS : lstat(2) of symbolic link file which points to no object file is ok
lstat01_64 2 TPASS : lstat(2) of symbolic link file which points at an object file is ok
lstat01_64 3 TPASS : lstat(2) of object file returns object file inode information
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat01 stime=1372195892
cmdline="lstat01"
contacts=""
analysis=exit
<<<test_output>>>
lstat01 1 TPASS : lstat(lnfile_12987, &statter) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=lstat01_64 stime=1372195892
cmdline="lstat01_64"
contacts=""
analysis=exit
<<<test_output>>>
lstat01 1 TPASS : lstat(lnfile_12988, &statter) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat02 stime=1372195892
cmdline="lstat02"
contacts=""
analysis=exit
<<<test_output>>>
lstat02 1 TPASS : lstat() fails, No Search permissions to process, errno:13
lstat02 2 TPASS : lstat() fails, Negative address, errno:14
lstat02 3 TPASS : lstat() fails, Address beyond address space, errno:14
lstat02 4 TPASS : lstat() fails, Pathname too long, errno:36
lstat02 5 TPASS : lstat() fails, Pathname is empty, errno:2
lstat02 6 TPASS : lstat() fails, Path contains regular file, errno:20
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat02_64 stime=1372195892
cmdline="lstat02_64"
contacts=""
analysis=exit
<<<test_output>>>
lstat02 1 TPASS : lstat() fails, No Search permissions to process, errno:13
lstat02 2 TPASS : lstat() fails, Negative address, errno:14
lstat02 3 TPASS : lstat() fails, Address beyond address space, errno:14
lstat02 4 TPASS : lstat() fails, Pathname too long, errno:36
lstat02 5 TPASS : lstat() fails, Pathname is empty, errno:2
lstat02 6 TPASS : lstat() fails, Path contains regular file, errno:20
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat03 stime=1372195892
cmdline="lstat03"
contacts=""
analysis=exit
<<<test_output>>>
lstat03 1 TPASS : Functionality of lstat(2) on 'sfile' Succcessful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=lstat03_64 stime=1372195892
cmdline="lstat03_64"
contacts=""
analysis=exit
<<<test_output>>>
lstat03 1 TPASS : Functionality of lstat(2) on 'sfile' Succcessful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mallopt01 stime=1372195892
cmdline="mallopt01"
contacts=""
analysis=exit
<<<test_output>>>
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mbind01 stime=1372195892
cmdline="mbind01"
contacts=""
analysis=exit
<<<test_output>>>
mbind01 1 TCONF : System doesn't have required numa support
mbind01 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=memset01 stime=1372195892
cmdline="memset01"
contacts=""
analysis=exit
<<<test_output>>>
memset01 1 TPASS : Test passed
memset01 2 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=memcmp01 stime=1372195892
cmdline="memcmp01"
contacts=""
analysis=exit
<<<test_output>>>
memcmp1 1 TPASS : Test passed
memcmp1 2 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=memcpy01 stime=1372195892
cmdline="memcpy01"
contacts=""
analysis=exit
<<<test_output>>>
memcpy1 1 TPASS : Test passed
memcpy1 2 TPASS : Test passed
memcpy1 3 TPASS : Test passed
memcpy1 4 TPASS : Test passed
memcpy1 5 TPASS : Test passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=migrate_pages01 stime=1372195892
cmdline="migrate_pages01"
contacts=""
analysis=exit
<<<test_output>>>
migrate_pages01 1 TCONF : System doesn't support __NR_migrate_pages or libnuma is not available
migrate_pages01 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=migrate_pages02 stime=1372195892
cmdline="migrate_pages02"
contacts=""
analysis=exit
<<<test_output>>>
migrate_pages02 1 TCONF : System doesn't support __NR_migrate_pages or libnuma is not available
migrate_pages02 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mlockall01 stime=1372195892
cmdline="mlockall01"
contacts=""
analysis=exit
<<<test_output>>>
mlockall01 1 TPASS : mlockall test passed for MCL_CURRENT
mlockall01 2 TPASS : mlockall test passed for MCL_FUTURE
mlockall01 3 TPASS : mlockall test passed for MCL_CURRENT|MCL_FUTURE
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mlockall02 stime=1372195892
cmdline="mlockall02"
contacts=""
analysis=exit
<<<test_output>>>
mlockall02 1 TPASS : expected failure - errno = 12 : Cannot allocate memory
mlockall02 2 TPASS : expected failure - errno = 1 : Operation not permitted
mlockall02 3 TPASS : expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mlockall03 stime=1372195892
cmdline="mlockall03"
contacts=""
analysis=exit
<<<test_output>>>
mlockall03 1 TPASS : expected failure - errno = 12 : Cannot allocate memory
mlockall03 2 TPASS : expected failure - errno = 1 : Operation not permitted
mlockall03 3 TPASS : expected failure - errno = 22 : Invalid argument
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir01 stime=1372195892
cmdline="mkdir01"
contacts=""
analysis=exit
<<<test_output>>>
mkdir01 1 TPASS : mkdir - path argument pointing below allocated address space failed as expected with errno 14 : Bad address
mkdir01 2 TPASS : mkdir - path argument pointing above allocated address space failed as expected with errno 14 : Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir02 stime=1372195892
cmdline="mkdir02"
contacts=""
analysis=exit
<<<test_output>>>
mkdir02 1 TPASS : Test to attempt to make a directory inherits group ID SUCCEEDED
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mkdir03 stime=1372195892
cmdline="mkdir03"
contacts=""
analysis=exit
<<<test_output>>>
mkdir03 1 TPASS : expected failure - errno = 14 : Bad address
mkdir03 2 TPASS : expected failure - errno = 36 : File name too long
mkdir03 3 TPASS : expected failure - errno = 17 : File exists
mkdir03 4 TPASS : expected failure - errno = 2 : No such file or directory
mkdir03 5 TPASS : expected failure - errno = 20 : Not a directory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir04 stime=1372195892
cmdline="mkdir04"
contacts=""
analysis=exit
<<<test_output>>>
mkdir04 1 TPASS : Test to attempt to creat a directory in a directory having no permissions SUCCEEDED in setting errno to EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir05 stime=1372195892
cmdline="mkdir05"
contacts=""
analysis=exit
<<<test_output>>>
mkdir05 1 TPASS : mkdir() functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir05A stime=1372195892
cmdline="symlink01 -T mkdir05"
contacts=""
analysis=exit
<<<test_output>>>
mkdir05 1 TPASS : mkdir(2) of object file through symbolic link file failed as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mkdir08 stime=1372195892
cmdline="mkdir08"
contacts=""
analysis=exit
<<<test_output>>>
mkdir08 1 TPASS : mkdir(./dir_13013) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mkdir09 stime=1372195892
cmdline="mkdir09"
contacts=""
analysis=exit
<<<test_output>>>
mkdir09 1 TPASS : PASS
<<<execution_status>>>
initiation_status="ok"
duration=10 termination_type=exited termination_id=0 corefile=no
cutime=80 cstime=1336
<<<test_end>>>
<<<test_start>>>
tag=mkdirat01 stime=1372195902
cmdline="mkdirat01"
contacts=""
analysis=exit
<<<test_output>>>
mkdirat01 1 TPASS : mkdirat() returned the expected errno 0: Success
mkdirat01 2 TPASS : mkdirat() returned the expected errno 0: Success
mkdirat01 3 TPASS : mkdirat() returned the expected errno 20: Not a directory
mkdirat01 4 TPASS : mkdirat() returned the expected errno 9: Bad file descriptor
mkdirat01 5 TPASS : mkdirat() returned the expected errno 0: Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod01 stime=1372195902
cmdline="mknod01"
contacts=""
analysis=exit
<<<test_output>>>
mknod01 1 TPASS : mknod(./tnode_13022, 0100777, 0) returned 0
mknod01 2 TPASS : mknod(./tnode_13022, 010777, 0) returned 0
mknod01 3 TPASS : mknod(./tnode_13022, 020777, 0) returned 0
mknod01 4 TPASS : mknod(./tnode_13022, 060777, 0) returned 0
mknod01 5 TPASS : mknod(./tnode_13022, 0104700, 0) returned 0
mknod01 6 TPASS : mknod(./tnode_13022, 0102700, 0) returned 0
mknod01 7 TPASS : mknod(./tnode_13022, 0106700, 0) returned 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod02 stime=1372195902
cmdline="mknod02"
contacts=""
analysis=exit
<<<test_output>>>
mknod02 1 TPASS : Functionality of mknod(tnode_13023, 012777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod03 stime=1372195902
cmdline="mknod03"
contacts=""
analysis=exit
<<<test_output>>>
mknod03 1 TPASS : Functionality of mknod(tnode_13024, 012777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod04 stime=1372195902
cmdline="mknod04"
contacts=""
analysis=exit
<<<test_output>>>
mknod04 1 TPASS : Functionality of mknod(tnode_13025, 010777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mknod05 stime=1372195902
cmdline="mknod05"
contacts=""
analysis=exit
<<<test_output>>>
mknod05 1 TPASS : Functionality of mknod(tnode_13026, 012777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod06 stime=1372195902
cmdline="mknod06"
contacts=""
analysis=exit
<<<test_output>>>
mknod06 1 TPASS : mknod() fails, Specified node already exists, errno:17
mknod06 2 TPASS : mknod() fails, Negative address, errno:14
mknod06 3 TPASS : mknod() fails, Address beyond address space, errno:14
mknod06 4 TPASS : mknod() fails, Non-existent file, errno:2
mknod06 5 TPASS : mknod() fails, Pathname is empty, errno:2
mknod06 6 TPASS : mknod() fails, Pathname too long, errno:36
mknod06 7 TPASS : mknod() fails, Path contains regular file, errno:20
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod07 stime=1372195902
cmdline="mknod07"
contacts=""
analysis=exit
<<<test_output>>>
mknod07 1 TPASS : mknod failed as expected: TEST_ERRNO=EACCES(13): Permission denied
mknod07 2 TPASS : mknod failed as expected: TEST_ERRNO=EACCES(13): Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod08 stime=1372195902
cmdline="mknod08"
contacts=""
analysis=exit
<<<test_output>>>
mknod08 1 TPASS : Functionality of mknod(tnode_13029, 010777, 0) successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mknod09 stime=1372195902
cmdline="mknod09"
contacts=""
analysis=exit
<<<test_output>>>
mknod09 1 TPASS : mknod() fails with expected error EINVAL errno:22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mknodat01 stime=1372195902
cmdline="cd $LTPROOT/testcases/bin && chown root mknodat01 && chmod 04755 mknodat01 && mknodat01"
contacts=""
analysis=exit
<<<test_output>>>
mknodat01 1 TPASS : mknodat() returned the expected errno: TEST_ERRNO=???(0): Success
mknodat01 2 TPASS : mknodat() returned the expected errno: TEST_ERRNO=???(0): Success
mknodat01 3 TPASS : mknodat() returned the expected errno: TEST_ERRNO=ENOTDIR(20): Not a directory
mknodat01 4 TPASS : mknodat() returned the expected errno: TEST_ERRNO=EBADF(9): Bad file descriptor
mknodat01 5 TPASS : mknodat() returned the expected errno: TEST_ERRNO=???(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mlock01 stime=1372195902
cmdline="mlock01"
contacts=""
analysis=exit
<<<test_output>>>
mlock01 1 TPASS : mlock passed
mlock01 2 TPASS : mlock passed
mlock01 3 TPASS : mlock passed
mlock01 4 TPASS : mlock passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mlock02 stime=1372195902
cmdline="mlock02"
contacts=""
analysis=exit
<<<test_output>>>
mlock02 1 TPASS : mlock failed as expected: TEST_ERRNO=ENOMEM(12): Cannot allocate memory
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mlock03 stime=1372195902
cmdline="mlock03 -i 20"
contacts=""
analysis=exit
<<<test_output>>>
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 180d000 to 182e000
mlock03 0 TINFO : mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : mlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : mlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : mlock from 7f4d320fc000 to 7f4d32100000
mlock03 0 TINFO : mlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : mlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : mlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : mlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 180d000 to 182e000
mlock03 0 TINFO : munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : munlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : munlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : munlock from 7f4d320fc000 to 7f4d320fd000
mlock03 0 TINFO : munlock from 7f4d320fd000 to 7f4d320fe000
mlock03 0 TINFO : munlock from 7f4d320fe000 to 7f4d32100000
mlock03 0 TINFO : munlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : munlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e398000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : munlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 180d000 to 182e000
mlock03 0 TINFO : mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : mlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : mlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : mlock from 7f4d320fc000 to 7f4d32100000
mlock03 0 TINFO : mlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : mlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : mlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : mlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 180d000 to 182e000
mlock03 0 TINFO : munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : munlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : munlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : munlock from 7f4d320fc000 to 7f4d320fd000
mlock03 0 TINFO : munlock from 7f4d320fd000 to 7f4d320fe000
mlock03 0 TINFO : munlock from 7f4d320fe000 to 7f4d32100000
mlock03 0 TINFO : munlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : munlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e398000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : munlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 180d000 to 182e000
mlock03 0 TINFO : mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : mlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : mlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : mlock from 7f4d320fc000 to 7f4d32100000
mlock03 0 TINFO : mlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : mlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : mlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : mlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 180d000 to 182e000
mlock03 0 TINFO : munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : munlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : munlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : munlock from 7f4d320fc000 to 7f4d320fd000
mlock03 0 TINFO : munlock from 7f4d320fd000 to 7f4d320fe000
mlock03 0 TINFO : munlock from 7f4d320fe000 to 7f4d32100000
mlock03 0 TINFO : munlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : munlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e398000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : munlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 180d000 to 182e000
mlock03 0 TINFO : mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : mlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : mlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : mlock from 7f4d320fc000 to 7f4d32100000
mlock03 0 TINFO : mlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : mlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : mlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : mlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 180d000 to 182e000
mlock03 0 TINFO : munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : munlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : munlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : munlock from 7f4d320fc000 to 7f4d320fd000
mlock03 0 TINFO : munlock from 7f4d320fd000 to 7f4d320fe000
mlock03 0 TINFO : munlock from 7f4d320fe000 to 7f4d32100000
mlock03 0 TINFO : munlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : munlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e398000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : munlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 180d000 to 182e000
mlock03 0 TINFO : mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : mlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : mlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : mlock from 7f4d320fc000 to 7f4d32100000
mlock03 0 TINFO : mlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : mlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : mlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : mlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 180d000 to 182e000
mlock03 0 TINFO : munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : munlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : munlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : munlock from 7f4d320fc000 to 7f4d320fd000
mlock03 0 TINFO : munlock from 7f4d320fd000 to 7f4d320fe000
mlock03 0 TINFO : munlock from 7f4d320fe000 to 7f4d32100000
mlock03 0 TINFO : munlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : munlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e398000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : munlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 180d000 to 182e000
mlock03 0 TINFO : mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : mlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : mlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : mlock from 7f4d320fc000 to 7f4d32100000
mlock03 0 TINFO : mlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : mlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : mlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : mlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 180d000 to 182e000
mlock03 0 TINFO : munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : munlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : munlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : munlock from 7f4d320fc000 to 7f4d320fd000
mlock03 0 TINFO : munlock from 7f4d320fd000 to 7f4d320fe000
mlock03 0 TINFO : munlock from 7f4d320fe000 to 7f4d32100000
mlock03 0 TINFO : munlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : munlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e398000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : munlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 180d000 to 182e000
mlock03 0 TINFO : mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : mlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : mlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : mlock from 7f4d320fc000 to 7f4d32100000
mlock03 0 TINFO : mlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : mlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : mlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : mlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 180d000 to 182e000
mlock03 0 TINFO : munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : munlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : munlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : munlock from 7f4d320fc000 to 7f4d320fd000
mlock03 0 TINFO : munlock from 7f4d320fd000 to 7f4d320fe000
mlock03 0 TINFO : munlock from 7f4d320fe000 to 7f4d32100000
mlock03 0 TINFO : munlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : munlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e398000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : munlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 180d000 to 182e000
mlock03 0 TINFO : mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : mlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : mlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : mlock from 7f4d320fc000 to 7f4d32100000
mlock03 0 TINFO : mlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : mlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : mlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : mlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 180d000 to 182e000
mlock03 0 TINFO : munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : munlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : munlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : munlock from 7f4d320fc000 to 7f4d320fd000
mlock03 0 TINFO : munlock from 7f4d320fd000 to 7f4d320fe000
mlock03 0 TINFO : munlock from 7f4d320fe000 to 7f4d32100000
mlock03 0 TINFO : munlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : munlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e398000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : munlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 180d000 to 182e000
mlock03 0 TINFO : mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : mlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : mlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : mlock from 7f4d320fc000 to 7f4d32100000
mlock03 0 TINFO : mlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : mlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : mlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : mlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 180d000 to 182e000
mlock03 0 TINFO : munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : munlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : munlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : munlock from 7f4d320fc000 to 7f4d320fd000
mlock03 0 TINFO : munlock from 7f4d320fd000 to 7f4d320fe000
mlock03 0 TINFO : munlock from 7f4d320fe000 to 7f4d32100000
mlock03 0 TINFO : munlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : munlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e398000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : munlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock from 400000 to 406000
mlock03 0 TINFO : mlock from 605000 to 606000
mlock03 0 TINFO : mlock from 606000 to 607000
mlock03 0 TINFO : mlock from 607000 to 60b000
mlock03 0 TINFO : mlock from 180d000 to 182e000
mlock03 0 TINFO : mlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : mlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : mlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : mlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : mlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : mlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : mlock from 7f4d320fc000 to 7f4d32100000
mlock03 0 TINFO : mlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : mlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : mlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : mlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : mlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : mlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : munlock from 400000 to 406000
mlock03 0 TINFO : munlock from 605000 to 606000
mlock03 0 TINFO : munlock from 606000 to 607000
mlock03 0 TINFO : munlock from 607000 to 60b000
mlock03 0 TINFO : munlock from 180d000 to 182e000
mlock03 0 TINFO : munlock from 7f4d31b1f000 to 7f4d31cd4000
mlock03 0 TINFO : munlock from 7f4d31cd4000 to 7f4d31ed3000
mlock03 0 TINFO : munlock from 7f4d31ed3000 to 7f4d31ed7000
mlock03 0 TINFO : munlock from 7f4d31ed7000 to 7f4d31ed9000
mlock03 0 TINFO : munlock from 7f4d31ed9000 to 7f4d31ede000
mlock03 0 TINFO : munlock from 7f4d31ede000 to 7f4d31f00000
mlock03 0 TINFO : munlock from 7f4d320e3000 to 7f4d320e6000
mlock03 0 TINFO : munlock from 7f4d320fc000 to 7f4d320fd000
mlock03 0 TINFO : munlock from 7f4d320fd000 to 7f4d320fe000
mlock03 0 TINFO : munlock from 7f4d320fe000 to 7f4d32100000
mlock03 0 TINFO : munlock from 7f4d32100000 to 7f4d32101000
mlock03 0 TINFO : munlock from 7f4d32101000 to 7f4d32103000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e398000
mlock03 0 TINFO : munlock from 7fff4e398000 to 7fff4e3b9000
mlock03 0 TINFO : munlock from 7fff4e3fe000 to 7fff4e400000
mlock03 0 TINFO : munlock failed: errno=ENOMEM(12): Cannot allocate memory
mlock03 0 TINFO : munlock from ffffffffff600000 to ffffffffff601000
mlock03 0 TINFO : starting stack size is 132
mlock03 0 TINFO : final stack size is 132
mlock03 1 TPASS : stack size is not decreased.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=5
<<<test_end>>>
<<<test_start>>>
tag=mlock04 stime=1372195902
cmdline="mlock04"
contacts=""
analysis=exit
<<<test_output>>>
mlock04 0 TINFO : locked 40960 bytes from 0x7f647d1a9000
mlock04 1 TPASS : test succeeded.
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=qmm01 stime=1372195902
cmdline="mmap001 -m 1"
contacts=""
analysis=exit
<<<test_output>>>
mmap001 0 TINFO : mmap()ing file of 1 pages or 4096 bytes
mmap001 1 TPASS : mmap() completed successfully.
mmap001 0 TINFO : touching mmaped memory
mmap001 2 TPASS : we're still here, mmaped area must be good
mmap001 3 TPASS : synchronizing mmapped page passed
mmap001 4 TPASS : munmapping testfile.13039 successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap01 stime=1372195902
cmdline="mmap01"
contacts=""
analysis=exit
<<<test_output>>>
mmap01 1 TPASS : Functionality of mmap() successful
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mmap02 stime=1372195903
cmdline="mmap02"
contacts=""
analysis=exit
<<<test_output>>>
mmap02 1 TPASS : Functionality of mmap() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap03 stime=1372195903
cmdline="mmap03"
contacts=""
analysis=exit
<<<test_output>>>
mmap03 1 TPASS : mmap() functionality is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap04 stime=1372195903
cmdline="mmap04"
contacts=""
analysis=exit
<<<test_output>>>
mmap04 1 TPASS : Functionality of mmap() successful
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap05 stime=1372195903
cmdline="mmap05"
contacts=""
analysis=exit
<<<test_output>>>
mmap05 1 TPASS : Got SIGSEGV as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap06 stime=1372195903
cmdline="mmap06"
contacts=""
analysis=exit
<<<test_output>>>
mmap06 1 TPASS : mmap failed with EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap07 stime=1372195903
cmdline="mmap07"
contacts=""
analysis=exit
<<<test_output>>>
mmap07 1 TPASS : mmap failed with EACCES
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mmap08 stime=1372195903
cmdline="mmap08"
contacts=""
analysis=exit
<<<test_output>>>
mmap08 1 TPASS : mmap failed with EBADF
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mmap09 stime=1372195903
cmdline="mmap09"
contacts=""
analysis=exit
<<<test_output>>>
mmap09 1 TPASS : ftruncate mmaped file to a smaller size
mmap09 2 TPASS : ftruncate mmaped file to a larger size
mmap09 3 TPASS : ftruncate mmaped file to 0 size
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=modify_ldt01 stime=1372195903
cmdline="modify_ldt01"
contacts=""
analysis=exit
<<<test_output>>>
modify_ldt01 1 TCONF : modify_ldt is available but not tested on the platform than __i386__
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=modify_ldt02 stime=1372195903
cmdline="modify_ldt02"
contacts=""
analysis=exit
<<<test_output>>>
modify_ldt02 1 TCONF : modify_ldt is available but not tested on the platform than __i386__
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mount01 stime=1372195903
cmdline="mount01 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
mount01 1 TPASS : mount(2) passed
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mount02 stime=1372195903
cmdline="mount02 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
mount02 1 TPASS : mount got expected failure: errno=ENODEV(19): No such device
mount02 2 TPASS : mount got expected failure: errno=ENOTBLK(15): Block device required
mount02 3 TPASS : mount got expected failure: errno=EBUSY(16): Device or resource busy
mount02 4 TBROK : umount of mnt_13054 failed: errno=EBUSY(16): Device or resource busy
mount02 5 TBROK : Remaining cases broken
mount02 0 TWARN : tst_rmdir: rmobj(/tmp/ltp-LbqYZRF5cO/mourcnRbE) failed: remove(/tmp/ltp-LbqYZRF5cO/mourcnRbE/mnt_13054) failed; errno=16: Device or resource busy
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=6 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mount03 stime=1372195903
cmdline="mount03 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
mount03 1 TBROK : stat for setuid_test failed
mount03 2 TBROK : Remaining cases broken
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=2 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mount04 stime=1372195903
cmdline="mount04 -D /dev/loop1 -T ext4"
contacts=""
analysis=exit
<<<test_output>>>
mount04 1 TPASS : mount(2) expected failure; Got errno - EPERM : User not Super User/root
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages01 stime=1372195903
cmdline="move_pages.sh 01"
contacts=""
analysis=exit
<<<test_output>>>
move_pages01 1 TCONF : NUMA support not provided
move_pages01 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages02 stime=1372195903
cmdline="move_pages.sh 02"
contacts=""
analysis=exit
<<<test_output>>>
move_pages02 1 TCONF : NUMA support not provided
move_pages02 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages03 stime=1372195903
cmdline="cd $LTPROOT/testcases/bin && chown root move_pages03 && chmod 04755 move_pages03 && move_pages.sh 03"
contacts=""
analysis=exit
<<<test_output>>>
move_pages03 1 TCONF : NUMA support not provided
move_pages03 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=move_pages04 stime=1372195903
cmdline="move_pages.sh 04"
contacts=""
analysis=exit
<<<test_output>>>
move_pages04 1 TCONF : NUMA support not provided
move_pages04 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages05 stime=1372195903
cmdline="move_pages.sh 05"
contacts=""
analysis=exit
<<<test_output>>>
move_pages05 1 TCONF : NUMA support not provided
move_pages05 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages06 stime=1372195903
cmdline="move_pages.sh 06"
contacts=""
analysis=exit
<<<test_output>>>
move_pages06 1 TCONF : NUMA support not provided
move_pages06 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages07 stime=1372195903
cmdline="move_pages.sh 07"
contacts=""
analysis=exit
<<<test_output>>>
move_pages07 1 TCONF : NUMA support not provided
move_pages07 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=move_pages08 stime=1372195903
cmdline="move_pages.sh 08"
contacts=""
analysis=exit
<<<test_output>>>
move_pages08 1 TCONF : move_pages: E2BIG was removed in commit 3140a227
move_pages08 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages09 stime=1372195904
cmdline="move_pages.sh 09"
contacts=""
analysis=exit
<<<test_output>>>
move_pages09 1 TCONF : NUMA support not provided
move_pages09 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages10 stime=1372195904
cmdline="move_pages.sh 10"
contacts=""
analysis=exit
<<<test_output>>>
move_pages10 1 TCONF : NUMA support not provided
move_pages10 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=move_pages11 stime=1372195904
cmdline="cd $LTPROOT/testcases/bin && chown root move_pages11 && chmod 04755 move_pages11 && move_pages.sh 11"
contacts=""
analysis=exit
<<<test_output>>>
move_pages11 1 TCONF : NUMA support not provided
move_pages11 2 TCONF : Remaining cases not appropriate for configuration
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mprotect01 stime=1372195904
cmdline="mprotect01"
contacts=""
analysis=exit
<<<test_output>>>
mprotect01 1 TPASS : expected failure - errno = 12 : Cannot allocate memory
mprotect01 2 TPASS : expected failure - errno = 22 : Invalid argument
mprotect01 3 TPASS : expected failure - errno = 13 : Permission denied
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mprotect02 stime=1372195904
cmdline="mprotect02"
contacts=""
analysis=exit
<<<test_output>>>
mprotect02 1 TPASS : got SIGSEGV as expected
mprotect02 1 TPASS : got SIGSEGV as expected
mprotect02 2 TPASS : didn't get SIGSEGV
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mprotect03 stime=1372195904
cmdline="mprotect03"
contacts=""
analysis=exit
<<<test_output>>>
mprotect03 0 TINFO : received signal: SIGSEGV
mprotect03 1 TPASS : SIGSEGV generated as expected
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mq_notify01 stime=1372195904
cmdline="mq_notify01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=16 (Device or resource busy)
RESULT: return value(ret)=-1 errno=16 (Device or resource busy)
mq_notify01 0 TINFO : (case00) START
mq_notify01 0 TINFO : (case00) END => OK
mq_notify01 0 TINFO : (case01) START
mq_notify01 0 TINFO : (case01) END => OK
mq_notify01 0 TINFO : (case02) START
mq_notify01 0 TINFO : (case02) END => OK
mq_notify01 0 TINFO : (case03) START
mq_notify01 0 TINFO : (case03) END => OK
mq_notify01 0 TINFO : (case04) START
mq_notify01 0 TINFO : (case04) END => OK
mq_notify01 0 TINFO : (case05) START
mq_notify01 0 TINFO : (case05) END => OK
mq_notify01 0 TINFO : (case06) START
mq_notify01 0 TINFO : (case06) END => OK
mq_notify01 1 TPASS : mq_notify call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mq_open01 stime=1372195904
cmdline="mq_open01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 5 errno=0 (Success)
mq_open01 0 TINFO : (case00) START
mq_open01 0 TINFO : mq_maxmsg E:20, R:20
mq_open01 0 TINFO : mq_msgsize E:16384, R:16384
mq_open01 0 TINFO : (case00) END => OK
mq_open01 1 TPASS : mq_open call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mq_timedreceive01 stime=1372195904
cmdline="mq_timedreceive01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=0 errno=0 (Success)
RESULT: return value(ret)=0 errno=0 (Success)
EXPECT: return value(ret)=1 errno=0 (Success)
RESULT: return value(ret)=1 errno=0 (Success)
EXPECT: return value(ret)=8192 errno=0 (Success)
RESULT: return value(ret)=8192 errno=0 (Success)
EXPECT: return value(ret)=1 errno=0 (Success)
RESULT: return value(ret)=1 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=90 (Message too long)
RESULT: return value(ret)=-1 errno=90 (Message too long)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=11 (Resource temporarily unavailable)
RESULT: return value(ret)=-1 errno=11 (Resource temporarily unavailable)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=110 (Connection timed out)
RESULT: return value(ret)=-1 errno=110 (Connection timed out)
EXPECT: return value(ret)=-1 errno=4 (Interrupted system call)
RESULT: return value(ret)=-1 errno=4 (Interrupted system call)
mq_timedreceive01 0 TINFO : (case00) START
mq_timedreceive01 0 TINFO : (case00) END => OK
mq_timedreceive01 0 TINFO : (case01) START
mq_timedreceive01 0 TINFO : (case01) END => OK
mq_timedreceive01 0 TINFO : (case02) START
mq_timedreceive01 0 TINFO : (case02) END => OK
mq_timedreceive01 0 TINFO : (case03) START
mq_timedreceive01 0 TINFO : (case03) END => OK
mq_timedreceive01 0 TINFO : (case04) START
mq_timedreceive01 0 TINFO : (case04) END => OK
mq_timedreceive01 0 TINFO : (case05) START
mq_timedreceive01 0 TINFO : (case05) END => OK
mq_timedreceive01 0 TINFO : (case06) START
mq_timedreceive01 0 TINFO : (case06) END => OK
mq_timedreceive01 0 TINFO : (case07) START
mq_timedreceive01 0 TINFO : (case07) END => OK
mq_timedreceive01 0 TINFO : (case08) START
mq_timedreceive01 0 TINFO : (case08) END => OK
mq_timedreceive01 0 TINFO : (case09) START
mq_timedreceive01 0 TINFO : (case09) END => OK
mq_timedreceive01 0 TINFO : (case10) START
mq_timedreceive01 0 TINFO : (case10) END => OK
mq_timedreceive01 0 TINFO : (case11) START
mq_timedreceive01 0 TINFO : (case11) END => OK
mq_timedreceive01 0 TINFO : (case12) START
mq_timedreceive01 0 TINFO : (case12) END => OK
mq_timedreceive01 0 TINFO : (case13) START
mq_timedreceive01 0 TINFO : (case13) END => OK
mq_timedreceive01 1 TPASS : mq_timedreceive call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mq_timedsend01 stime=1372195905
cmdline="mq_timedsend01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=90 (Message too long)
RESULT: return value(ret)=-1 errno=90 (Message too long)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=9 (Bad file descriptor)
RESULT: return value(ret)=-1 errno=9 (Bad file descriptor)
EXPECT: return value(ret)=-1 errno=11 (Resource temporarily unavailable)
RESULT: return value(ret)=-1 errno=11 (Resource temporarily unavailable)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=22 (Invalid argument)
RESULT: return value(ret)=-1 errno=22 (Invalid argument)
EXPECT: return value(ret)=-1 errno=110 (Connection timed out)
RESULT: return value(ret)=-1 errno=110 (Connection timed out)
EXPECT: return value(ret)=-1 errno=4 (Interrupted system call)
RESULT: return value(ret)=-1 errno=4 (Interrupted system call)
mq_timedsend01 0 TINFO : (case00) START
mq_timedsend01 0 TINFO : (case00) END => OK
mq_timedsend01 0 TINFO : (case01) START
mq_timedsend01 0 TINFO : (case01) END => OK
mq_timedsend01 0 TINFO : (case02) START
mq_timedsend01 0 TINFO : (case02) END => OK
mq_timedsend01 0 TINFO : (case03) START
mq_timedsend01 0 TINFO : (case03) END => OK
mq_timedsend01 0 TINFO : (case04) START
mq_timedsend01 0 TINFO : (case04) END => OK
mq_timedsend01 0 TINFO : (case05) START
mq_timedsend01 0 TINFO : (case05) END => OK
mq_timedsend01 0 TINFO : (case06) START
mq_timedsend01 0 TINFO : (case06) END => OK
mq_timedsend01 0 TINFO : (case07) START
mq_timedsend01 0 TINFO : (case07) END => OK
mq_timedsend01 0 TINFO : (case08) START
mq_timedsend01 0 TINFO : (case08) END => OK
mq_timedsend01 0 TINFO : (case09) START
mq_timedsend01 0 TINFO : (case09) END => OK
mq_timedsend01 0 TINFO : (case10) START
mq_timedsend01 0 TINFO : (case10) END => OK
mq_timedsend01 0 TINFO : (case11) START
mq_timedsend01 0 TINFO : (case11) END => OK
mq_timedsend01 0 TINFO : (case12) START
mq_timedsend01 0 TINFO : (case12) END => OK
mq_timedsend01 0 TINFO : (case13) START
mq_timedsend01 0 TINFO : (case13) END => OK
mq_timedsend01 0 TINFO : (case14) START
mq_timedsend01 0 TINFO : (case14) END => OK
mq_timedsend01 1 TPASS : mq_timedsend call succeeded
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mq_unlink01 stime=1372195906
cmdline="mq_unlink01"
contacts=""
analysis=exit
<<<test_output>>>
EXPECT: return value(ret)=(N >= 0) errno=0 (Success)
RESULT: return value(ret)= 0 errno=0 (Success)
EXPECT: return value(ret)=-1 errno=13 (Permission denied)
RESULT: return value(ret)=-1 errno=13 (Permission denied)
EXPECT: return value(ret)=-1 errno=2 (No such file or directory)
RESULT: return value(ret)=-1 errno=2 (No such file or directory)
EXPECT: return value(ret)=-1 errno=36 (File name too long)
RESULT: return value(ret)=-1 errno=36 (File name too long)
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mremap01 stime=1372195906
cmdline="mremap01"
contacts=""
analysis=exit
<<<test_output>>>
mremap01 1 TPASS : Functionality of mremap() is correct
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mremap02 stime=1372195906
cmdline="mremap02"
contacts=""
analysis=exit
<<<test_output>>>
mremap02 1 TPASS : mremap() Failed, 'invalid argument specified' - errno 22
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=mremap03 stime=1372195906
cmdline="mremap03"
contacts=""
analysis=exit
<<<test_output>>>
mremap03 1 TPASS : mremap() Fails, 'old region not mapped', errno 14
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mremap04 stime=1372195906
cmdline="mremap04"
contacts=""
analysis=exit
<<<test_output>>>
mremap04 1 TPASS : mremap() failed, 'MREMAP_MAYMOVE flag unset', errno 12
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=mremap05 stime=1372195906
cmdline="mremap05"
contacts=""
analysis=exit
<<<test_output>>>
mremap05 1 TPASS : MREMAP_FIXED requires MREMAP_MAYMOVE
mremap05 2 TPASS : new_addr has to be page aligned
mremap05 3 TPASS : old/new area must not overlap
mremap05 4 TPASS : mremap #1
mremap05 5 TPASS : mremap #1 value OK
mremap05 6 TPASS : mremap #2
mremap05 7 TPASS : mremap #2 value OK
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl01 stime=1372195906
cmdline="msgctl01"
contacts=""
analysis=exit
<<<test_output>>>
msgctl01 1 TPASS : qs_buf.msg_qbytes is a positive value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl02 stime=1372195906
cmdline="msgctl02"
contacts=""
analysis=exit
<<<test_output>>>
msgctl02 1 TPASS : qs_buf.msg_qbytes is the new value - 16383
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=msgctl03 stime=1372195906
cmdline="msgctl03"
contacts=""
analysis=exit
<<<test_output>>>
msgctl03 1 TPASS : The queue is gone
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id