From patchwork Wed Apr 19 11:01:46 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Hiler X-Patchwork-Id: 9687275 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id A2EE6602DC for ; Wed, 19 Apr 2017 11:02:23 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 942472838E for ; Wed, 19 Apr 2017 11:02:23 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 89319283F9; Wed, 19 Apr 2017 11:02:23 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 3ED722838E for ; Wed, 19 Apr 2017 11:02:23 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id D246F6E2B9; Wed, 19 Apr 2017 11:02:22 +0000 (UTC) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by gabe.freedesktop.org (Postfix) with ESMTPS id EF8086E2B4 for ; Wed, 19 Apr 2017 11:02:20 +0000 (UTC) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Apr 2017 04:02:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,221,1488873600"; d="scan'208";a="89670167" Received: from ahiler-desk.igk.intel.com ([172.28.171.131]) by orsmga005.jf.intel.com with ESMTP; 19 Apr 2017 04:02:20 -0700 From: Arkadiusz Hiler To: intel-gfx@lists.freedesktop.org Date: Wed, 19 Apr 2017 13:01:46 +0200 Message-Id: <20170419110155.6828-5-arkadiusz.hiler@intel.com> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20170419110155.6828-1-arkadiusz.hiler@intel.com> References: <20170419110155.6828-1-arkadiusz.hiler@intel.com> Organization: Intel Technology Poland sp. z o.o. - KRS 101882 - ul. Slowackiego 173, 80-298 Gdansk Subject: [Intel-gfx] [PATCH i-g-t 04/13] lib/igt_aux: Make procps optional X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Virus-Scanned: ClamAV using ClamSMTP Android does not have procps and it's not easy to compile it as a dependency. We can provide alternative, "naive" implementation that just shells out to external commands (i.e. pkill and lsof) in case we do not have the library. Signed-off-by: Arkadiusz Hiler --- configure.ac | 6 +++++- lib/igt_aux.c | 24 +++++++++++++++++++++--- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 12b0ab0..a5a92d5 100644 --- a/configure.ac +++ b/configure.ac @@ -123,7 +123,11 @@ AC_SUBST(ASSEMBLER_WARN_CFLAGS) PKG_CHECK_MODULES(DRM, [libdrm]) PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10]) PKG_CHECK_MODULES(KMOD, [libkmod]) -PKG_CHECK_MODULES(PROCPS, [libprocps]) +PKG_CHECK_MODULES(PROCPS, [libprocps], [procps=yes], [procps=no]) +AM_CONDITIONAL(HAVE_PROCPS, [test "x$procps" = xyes]) +if test x"$procps" = xyes; then + AC_DEFINE(HAVE_PROCPS,1,[Enable process managment without shelling out]) +fi PKG_CHECK_MODULES(VALGRIND, [valgrind], [have_valgrind=yes], [have_valgrind=no]) if test x$have_valgrind = xyes; then diff --git a/lib/igt_aux.c b/lib/igt_aux.c index 2ec6b78..4efb45b 100644 --- a/lib/igt_aux.c +++ b/lib/igt_aux.c @@ -50,9 +50,7 @@ #include #include #include - -#include - +#include #include "drmtest.h" #include "i915_drm.h" #include "intel_chipset.h" @@ -71,6 +69,10 @@ #include /* for dirname() */ #endif +#ifdef HAVE_PROCPS +#include +#endif + /** * SECTION:igt_aux * @short_description: Auxiliary libraries and support functions @@ -1295,6 +1297,7 @@ void igt_set_module_param_int(const char *name, int val) */ int igt_terminate_process(int sig, const char *comm) { +#ifdef HAVE_PROCPS PROCTAB *proc; proc_t *proc_info; int err = 0; @@ -1316,6 +1319,12 @@ int igt_terminate_process(int sig, const char *comm) closeproc(proc); return err; +#else +#warning "No procps, using naive implementation of igt_terminate_process" + char pkill_cmd[NAME_MAX]; + snprintf(pkill_cmd, sizeof(pkill_cmd), "pkill -x -%d %s", sig, comm); + return system(pkill_cmd); +#endif } struct pinfo { @@ -1324,6 +1333,7 @@ struct pinfo { const char *fn; }; +#ifdef HAVE_PROCPS static void __igt_show_stat(struct pinfo *info) { @@ -1499,6 +1509,7 @@ __igt_lsof(const char *dir) closeproc(proc); } +#endif /** * igt_lsof: Lists information about files opened by processes. @@ -1510,6 +1521,7 @@ __igt_lsof(const char *dir) void igt_lsof(const char *dpath) { +#ifdef HAVE_PROCPS struct stat st; size_t len = strlen(dpath); char *sanitized; @@ -1530,6 +1542,12 @@ igt_lsof(const char *dpath) __igt_lsof(sanitized); free(sanitized); +#else +#warning "No procps, using naive implementation of igt_lsof" + char lsof_cmd[NAME_MAX]; + snprintf(lsof_cmd, sizeof(lsof_cmd), "lsof +d %s", dpath); + system(lsof_cmd); +#endif } static struct igt_siglatency {