From patchwork Wed Oct 26 09:56:45 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Cabiddu, Giovanni" X-Patchwork-Id: 9396503 X-Patchwork-Delegate: herbert@gondor.apana.org.au 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 7858060231 for ; Wed, 26 Oct 2016 10:00:24 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3149829A91 for ; Wed, 26 Oct 2016 10:00:24 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 22C3729A94; Wed, 26 Oct 2016 10:00:24 +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=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2FC4429A91 for ; Wed, 26 Oct 2016 10:00:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754303AbcJZKAU (ORCPT ); Wed, 26 Oct 2016 06:00:20 -0400 Received: from mga09.intel.com ([134.134.136.24]:9426 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754139AbcJZKAT (ORCPT ); Wed, 26 Oct 2016 06:00:19 -0400 Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga102.jf.intel.com with ESMTP; 26 Oct 2016 03:00:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,550,1473145200"; d="scan'208";a="777873256" Received: from sie-lab-214-164.ir.intel.com (HELO SILVIXA00369791-F22-1) ([10.237.214.164]) by FMSMGA003.fm.intel.com with ESMTP; 26 Oct 2016 02:56:46 -0700 Date: Wed, 26 Oct 2016 10:56:45 +0100 From: Giovanni Cabiddu To: kbuild test robot Cc: kbuild-all@01.org, linux-crypto@vger.kernel.org, Herbert Xu Subject: Re: [cryptodev:master 41/47] ERROR: "crypto_acomp_scomp_free_ctx" [crypto/acompress.ko] undefined! Message-ID: <20161026095645.GA27004@SILVIXA00369791-F22-1> References: <201610260803.GIBxWXo3%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <201610260803.GIBxWXo3%fengguang.wu@intel.com> User-Agent: Mutt/1.6.1 (2016-04-27) Sender: linux-crypto-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi, On Wed, Oct 26, 2016 at 08:47:16AM +0800, kbuild test robot wrote: > >> ERROR: "crypto_acomp_scomp_free_ctx" [crypto/acompress.ko] undefined! > >> ERROR: "crypto_acomp_scomp_alloc_ctx" [crypto/acompress.ko] undefined! > >> ERROR: "crypto_init_scomp_ops_async" [crypto/acompress.ko] undefined! Thanks for the report. There is a problem with a dependency between acomp and scomp. This patch should fix the issue. Giovanni ---8<--- Subject: [PATCH] crypto: acomp - fix dependency in Makefile Fix dependency between acomp and scomp that appears when acomp is built as module Signed-off-by: Giovanni Cabiddu --- crypto/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) -- -- To unsubscribe from this list: send the line "unsubscribe linux-crypto" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/crypto/Makefile b/crypto/Makefile index 5c83f3d..82ffeee 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -50,8 +50,9 @@ rsa_generic-y += rsa_helper.o rsa_generic-y += rsa-pkcs1pad.o obj-$(CONFIG_CRYPTO_RSA) += rsa_generic.o -obj-$(CONFIG_CRYPTO_ACOMP2) += acompress.o -obj-$(CONFIG_CRYPTO_ACOMP2) += scompress.o +crypto_acompress-y := acompress.o +crypto_acompress-y += scompress.o +obj-$(CONFIG_CRYPTO_ACOMP2) += crypto_acompress.o cryptomgr-y := algboss.o testmgr.o