Received: by 2002:a25:7ec1:0:0:0:0:0 with SMTP id z184csp8832167ybc; Fri, 29 Nov 2019 17:52:51 -0800 (PST) X-Google-Smtp-Source: APXvYqxM6LaGqlOvap+VggDhtkeNdin16LD6f3K8x5g1bubrSt1Q+S3VDa0gLHBF66F4YFyZgUII X-Received: by 2002:a17:906:360a:: with SMTP id q10mr22213133ejb.131.1575078771333; Fri, 29 Nov 2019 17:52:51 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1575078771; cv=none; d=google.com; s=arc-20160816; b=s4xPFKfIFjx3uJQ3xcw5UcIsohWVHQ0XEdjIkM6Nh/Quy3m9biDzu8xL+yicdxcRlU ne5YfwRUjT7e6lnbFeceilXYoqPDOEKksH13qPppvr29wDrc6vbR0lp3nx5u3yJLIIGy hbVYQyIUcrqkDnQ2gwCrAcuWrTWFTya8SBnWlV6d3wvpk2LKj1kYOsPo+a87LUc8YBJK xmEHA1TRWn8YCAUPp9mU3Su76Hc3TJnyTnwUSk3swnE7juLUiwFWsN2cjRKbVXiasrYV //SQzE+Ewlc+CnF6Caz0TF0fGKPgVjMetq3Bzet3CFagBTjPjnmIY69Ls2NFsfXjXSOA 6R1g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:date:subject:cc :to:from; bh=MYgljjt48qt9FTt8iFV9ZC1zXtUQQ0+26RUROfUQUQw=; b=glj6OzlAg9vR99rU7QxYntHcsfbYM7fV557DN/uuYCR2S26jiDuE4wESE8iplI5ldL +tWWhODePllMSqmEsAo1+DoevrGyccPPY7DuYLmLWsBS4fXWrrvjBVVR8hqAfvf/NgrM U47zOF6GZbIqAYGNr27yZgubTAocHaM3Rl+6+P0+M92UiiItyD6mHKotOzNg8CFetUXw WK8LcK7+39cMh9bB5rpe7o2xy+z8uuldI2hXQZL+nIV7HkM9Zae7eftZzQdWXkDcyfqP 8Qsds/JbUSQ35mBqxm5LpuuZrt64ncmMtUi+iaNkldF6MLB9tnZfdARVlQf1YF83meMo WqMw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id g25si7187709ejr.302.2019.11.29.17.52.27; Fri, 29 Nov 2019 17:52:51 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727233AbfK3BvX (ORCPT + 99 others); Fri, 29 Nov 2019 20:51:23 -0500 Received: from szxga05-in.huawei.com ([45.249.212.191]:6732 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727171AbfK3BvX (ORCPT ); Fri, 29 Nov 2019 20:51:23 -0500 Received: from DGGEMS410-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id 0B342732A100D34C66C6; Sat, 30 Nov 2019 09:51:21 +0800 (CST) Received: from localhost (10.133.213.239) by DGGEMS410-HUB.china.huawei.com (10.3.19.210) with Microsoft SMTP Server id 14.3.439.0; Sat, 30 Nov 2019 09:51:10 +0800 From: YueHaibing To: , , CC: , , , YueHaibing Subject: [PATCH -next] io_uring: Add missing include Date: Sat, 30 Nov 2019 09:50:42 +0800 Message-ID: <20191130015042.17020-1-yuehaibing@huawei.com> X-Mailer: git-send-email 2.10.2.windows.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.133.213.239] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix build error: fs/io_uring.c:1628:21: error: implicit declaration of function 'kmap' [-Werror=implicit-function-declaration] fs/io_uring.c:1643:4: error: implicit declaration of function 'kunmap' [-Werror=implicit-function-declaration] Reported-by: Hulk Robot Fixes: 311ae9e159d8 ("io_uring: fix dead-hung for non-iter fixed rw") Signed-off-by: YueHaibing --- fs/io_uring.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/io_uring.c b/fs/io_uring.c index 2c2e8c2..745eb00 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -69,6 +69,7 @@ #include #include #include +#include #define CREATE_TRACE_POINTS #include -- 2.7.4