From patchwork Wed Feb 28 19:24:17 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Coelho X-Patchwork-Id: 10249441 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 8B46B60211 for ; Wed, 28 Feb 2018 19:24:25 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7296F28DAA for ; Wed, 28 Feb 2018 19:24:25 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 64A3D28E31; Wed, 28 Feb 2018 19:24:25 +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 EE7C928DAA for ; Wed, 28 Feb 2018 19:24:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752679AbeB1TYY (ORCPT ); Wed, 28 Feb 2018 14:24:24 -0500 Received: from paleale.coelho.fi ([176.9.41.70]:33018 "EHLO farmhouse.coelho.fi" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752513AbeB1TYY (ORCPT ); Wed, 28 Feb 2018 14:24:24 -0500 Received: from 91-156-4-241.elisa-laajakaista.fi ([91.156.4.241] helo=redipa.ger.corp.intel.com) by farmhouse.coelho.fi with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1er7Kw-0007Gn-KP; Wed, 28 Feb 2018 21:24:23 +0200 From: Luca Coelho To: backports@vger.kernel.org Cc: hauke@hauke-m.de, luciano.coelho@intel.com, sara.sharon@intel.com Date: Wed, 28 Feb 2018 21:24:17 +0200 Message-Id: <20180228192417.7292-1-luca@coelho.fi> X-Mailer: git-send-email 2.16.1 X-SA-Exim-Connect-IP: 91.156.4.241 X-SA-Exim-Mail-From: luca@coelho.fi Subject: [PATCH] backport: move percpu.h file to the correct location X-SA-Exim-Version: 4.2.1 (built Tue, 02 Aug 2016 21:08:31 +0000) X-SA-Exim-Scanned: Yes (on farmhouse.coelho.fi) Sender: backports-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: backports@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Luca Coelho Mistakenly, the percpu.h file was added to a new backport-include directory at the root. It should be in the proper location at backport/backport-include instead. Fix that. Fixes: a4c44dbee35d ("backport: implement alloc_percpu_gfp() for < 3.18.") Signed-off-by: Luca Coelho --- {backport-include => backport/backport-include}/linux/percpu.h | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {backport-include => backport/backport-include}/linux/percpu.h (100%) diff --git a/backport-include/linux/percpu.h b/backport/backport-include/linux/percpu.h similarity index 100% rename from backport-include/linux/percpu.h rename to backport/backport-include/linux/percpu.h