From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54801) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z4PEN-0003Zy-Cu for qemu-devel@nongnu.org; Mon, 15 Jun 2015 03:54:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z4PEK-0003Fg-5T for qemu-devel@nongnu.org; Mon, 15 Jun 2015 03:54:55 -0400 Received: from mail-wi0-x22d.google.com ([2a00:1450:400c:c05::22d]:34794) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z4PEJ-0003Em-UG for qemu-devel@nongnu.org; Mon, 15 Jun 2015 03:54:52 -0400 Received: by wicnd19 with SMTP id nd19so16100302wic.1 for ; Mon, 15 Jun 2015 00:54:50 -0700 (PDT) From: hw.claudio@gmail.com Date: Mon, 15 Jun 2015 09:56:33 +0200 Message-Id: <1434354995-9839-1-git-send-email-hw.claudio@gmail.com> Subject: [Qemu-devel] [PATCH v7 0/2] monitor: add memory search commands s, sp List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Markus Armbruster Cc: Claudio Fontana , qemu-devel@nongnu.org, Luiz Capitulino , Gonglei , Paolo Bonzini From: Claudio Fontana Note: this series is rebased on Peter Crosthwaite's series: "[PATCH v2 0/2] monitor+disas: Remove uses of ENV_GET_CPU" http://lists.nongnu.org/archive/html/qemu-devel/2015-05/msg04736.html This is the latest iteration of the monitor memory search patch. The previous version of this series is: "[RFC v6 0/2] monitor: add memory search commands s, sp" http://lists.nongnu.org/archive/html/qemu-devel/2015-05/msg03415.html changes from v6: solved conflict with "monitor+disas: Remove uses of ENV_GET_CPU" changed mail subject-prefix from RFC to PATCH. changes from v5: dropped the import from gnulib and implemented a trivial replacement. changes from v4: made into a series of two patches. Introduced a memmem replacement function (import from gnulib) and detection code in configure. changes from v3: initialize pointer variable to NULL to finally get rid of spurious warning changes from v2: move code to try to address spurious warning changes from v1: make checkpatch happy by adding braces here and there. Claudio Fontana (2): util: add memmem replacement function monitor: add memory search commands s, sp configure | 15 ++++++ hmp-commands.hx | 28 +++++++++++ include/qemu/osdep.h | 4 ++ monitor.c | 140 +++++++++++++++++++++++++++++++++++++++++++++++++++ util/Makefile.objs | 1 + util/memmem.c | 63 +++++++++++++++++++++++ 6 files changed, 251 insertions(+) create mode 100644 util/memmem.c -- 1.8.5.3