From: Lv Zheng <lv.zheng@intel.com>
To: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
"Rafael J. Wysocki" <rjw@rjwysocki.net>,
Len Brown <len.brown@intel.com>
Cc: Lv Zheng <lv.zheng@intel.com>, Lv Zheng <zetalog@gmail.com>,
linux-kernel@vger.kernel.org, linux-acpi@vger.kernel.org
Subject: [PATCH v2 0/2] ACPI / debugger: Add kernel flushing support
Date: Tue, 19 Jul 2016 18:00:31 +0800 [thread overview]
Message-ID: <cover.1468922310.git.lv.zheng@intel.com> (raw)
In-Reply-To: <cover.1468464391.git.lv.zheng@intel.com>
AML debugger is implemented in the kernel as a character device located in
the debugfs. Currently, when its batch mode is used, the userspace tool
needs to flush the logs/prompts remained in the kernel output buffer, this
is implemented in an inefficient way in the userspace by polling the IO and
reading everything out.
This patch introduces a kernel space flushing support, so that userspace
can invoke ioctl() to put the driver into a state waiting for new commands,
all kernel space logs/prompts will be automatically discarded by ioctl().
Lv Zheng (2):
ACPI / debugger: Add kernel flushing support
tools/power/acpi/acpidbg: Use new flushing mechanism
drivers/acpi/acpi_dbg.c | 98 ++++++++++++++++++++++++++++--
include/linux/acpi-ioctls.h | 21 +++++++
tools/power/acpi/tools/acpidbg/acpidbg.c | 51 +++-------------
3 files changed, 122 insertions(+), 48 deletions(-)
create mode 100644 include/linux/acpi-ioctls.h
--
1.7.10
WARNING: multiple messages have this Message-ID (diff)
From: Lv Zheng <lv.zheng@intel.com>
To: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
"Rafael J. Wysocki" <rjw@rjwysocki.net>,
Len Brown <len.brown@intel.com>
Cc: Lv Zheng <lv.zheng@intel.com>, Lv Zheng <zetalog@gmail.com>,
<linux-kernel@vger.kernel.org>,
linux-acpi@vger.kernel.org
Subject: [PATCH v2 0/2] ACPI / debugger: Add kernel flushing support
Date: Tue, 19 Jul 2016 18:00:31 +0800 [thread overview]
Message-ID: <cover.1468922310.git.lv.zheng@intel.com> (raw)
In-Reply-To: <cover.1468464391.git.lv.zheng@intel.com>
AML debugger is implemented in the kernel as a character device located in
the debugfs. Currently, when its batch mode is used, the userspace tool
needs to flush the logs/prompts remained in the kernel output buffer, this
is implemented in an inefficient way in the userspace by polling the IO and
reading everything out.
This patch introduces a kernel space flushing support, so that userspace
can invoke ioctl() to put the driver into a state waiting for new commands,
all kernel space logs/prompts will be automatically discarded by ioctl().
Lv Zheng (2):
ACPI / debugger: Add kernel flushing support
tools/power/acpi/acpidbg: Use new flushing mechanism
drivers/acpi/acpi_dbg.c | 98 ++++++++++++++++++++++++++++--
include/linux/acpi-ioctls.h | 21 +++++++
tools/power/acpi/tools/acpidbg/acpidbg.c | 51 +++-------------
3 files changed, 122 insertions(+), 48 deletions(-)
create mode 100644 include/linux/acpi-ioctls.h
--
1.7.10
next prev parent reply other threads:[~2016-07-19 10:00 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-14 2:52 [PATCH 0/3] ACPI / debugger: Add kernel flushing support Lv Zheng
2016-07-14 2:52 ` Lv Zheng
2016-07-14 2:52 ` [PATCH 1/3] debugfs: Add .fsync() callback proxy support Lv Zheng
2016-07-14 2:52 ` Lv Zheng
2016-07-19 8:13 ` Zheng, Lv
2016-07-14 2:52 ` [PATCH 2/3] ACPI / debugger: Add kernel flushing support Lv Zheng
2016-07-14 2:52 ` Lv Zheng
2016-07-14 2:52 ` [PATCH 3/3] tools/power/acpi/acpidbg: Use new flushing mechanism Lv Zheng
2016-07-14 2:52 ` Lv Zheng
2016-07-19 10:00 ` Lv Zheng [this message]
2016-07-19 10:00 ` [PATCH v2 0/2] ACPI / debugger: Add kernel flushing support Lv Zheng
2016-07-19 10:00 ` [PATCH v2 1/2] " Lv Zheng
2016-07-19 10:00 ` Lv Zheng
2016-07-21 13:43 ` Rafael J. Wysocki
2016-07-22 0:34 ` Zheng, Lv
2016-07-19 10:00 ` [PATCH v2 2/2] tools/power/acpi/acpidbg: Use new flushing mechanism Lv Zheng
2016-07-19 10:00 ` Lv Zheng
2016-07-20 8:12 ` [PATCH] tools/power/acpi/tools/acpidbg: Add multi-commands support in batch mode Lv Zheng
2016-07-20 8:12 ` Lv Zheng
2016-07-21 13:45 ` Rafael J. Wysocki
2016-07-22 0:26 ` Zheng, Lv
2016-07-22 4:16 ` [PATCH v3 0/3] ACPI / debugger: Add kernel flushing support Lv Zheng
2016-07-22 4:16 ` Lv Zheng
2016-07-22 4:16 ` [PATCH v3 1/3] " Lv Zheng
2016-07-22 4:16 ` Lv Zheng
2016-07-22 4:17 ` [PATCH v3 2/3] tools/power/acpi/acpidbg: Use new flushing mechanism Lv Zheng
2016-07-22 4:17 ` Lv Zheng
2016-07-22 4:17 ` [PATCH v3 3/3] tools/power/acpi/acpidbg: Add multi-commands support in batch mode Lv Zheng
2016-07-22 4:17 ` Lv Zheng
2016-07-26 11:01 ` [PATCH v4 0/3] ACPI / debugger: Add kernel flushing support Lv Zheng
2016-07-26 11:01 ` Lv Zheng
2016-07-26 11:01 ` [PATCH v4 1/3] " Lv Zheng
2016-07-26 11:01 ` Lv Zheng
2016-08-17 0:25 ` Rafael J. Wysocki
2016-08-17 2:39 ` Zheng, Lv
2016-07-26 11:01 ` [PATCH v4 2/3] tools/power/acpi/acpidbg: Use new flushing mechanism Lv Zheng
2016-07-26 11:01 ` Lv Zheng
2016-08-17 0:29 ` Rafael J. Wysocki
2016-08-17 2:41 ` Zheng, Lv
2016-07-26 11:01 ` [PATCH v4 3/3] tools/power/acpi/acpidbg: Add multi-commands support in batch mode Lv Zheng
2016-07-26 11:01 ` Lv Zheng
2016-08-17 0:30 ` Rafael J. Wysocki
2016-08-17 4:31 ` Zheng, Lv
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1468922310.git.lv.zheng@intel.com \
--to=lv.zheng@intel.com \
--cc=len.brown@intel.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rafael.j.wysocki@intel.com \
--cc=rjw@rjwysocki.net \
--cc=zetalog@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.