From patchwork Tue Oct 2 19:10:26 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johannes Berg X-Patchwork-Id: 10623995 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id B9E9D1515 for ; Tue, 2 Oct 2018 19:10:43 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A00D228161 for ; Tue, 2 Oct 2018 19:10:43 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9EAE228420; Tue, 2 Oct 2018 19:10:43 +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=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, 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 4763228420 for ; Tue, 2 Oct 2018 19:10:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727328AbeJCBzd (ORCPT ); Tue, 2 Oct 2018 21:55:33 -0400 Received: from s3.sipsolutions.net ([144.76.43.62]:48146 "EHLO sipsolutions.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726781AbeJCBzd (ORCPT ); Tue, 2 Oct 2018 21:55:33 -0400 Received: by sipsolutions.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.91) (envelope-from ) id 1g7Q49-0004TE-G0; Tue, 02 Oct 2018 21:10:41 +0200 From: Johannes Berg To: backports@vger.kernel.org Cc: Johannes Berg Subject: [PATCH] backports: add missing include in 3.13 compat code Date: Tue, 2 Oct 2018 21:10:26 +0200 Message-Id: <20181002191026.5894-1-johannes@sipsolutions.net> X-Mailer: git-send-email 2.14.4 Sender: backports-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: backports@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Johannes Berg If we don't include then __BACKPORT_NET_GET_RANDOM_ONCE can never be defined, and we'll never get the compat code. Fix that. Signed-off-by: Johannes Berg --- backport/compat/backport-3.13.c | 1 + 1 file changed, 1 insertion(+) diff --git a/backport/compat/backport-3.13.c b/backport/compat/backport-3.13.c index 23c759ef2388..2b61711d233d 100644 --- a/backport/compat/backport-3.13.c +++ b/backport/compat/backport-3.13.c @@ -15,6 +15,7 @@ #include #include #include +#include #ifdef __BACKPORT_NET_GET_RANDOM_ONCE struct __net_random_once_work {