From nobody Fri Nov 14 18:05:12 2025 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; arc=fail (Bad Signature) Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1589591053326142.2147656476095; Fri, 15 May 2020 18:04:13 -0700 (PDT) Received: from localhost ([::1]:39812 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jZlFL-0008Dr-Tr for importer@patchew.org; Fri, 15 May 2020 21:04:11 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37848) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jZgzZ-0007sQ-P7 for qemu-devel@nongnu.org; Fri, 15 May 2020 16:31:38 -0400 Received: from sender4-op-o13.zoho.com ([136.143.188.13]:17315) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.90_1) (envelope-from ) id 1jZgzW-0001MF-Sd for qemu-devel@nongnu.org; Fri, 15 May 2020 16:31:37 -0400 Received: from gothmog.test (pool-96-255-47-18.washdc.fios.verizon.net [96.255.47.18]) by mx.zohomail.com with SMTPS id 1589574675866437.24441338353347; Fri, 15 May 2020 13:31:15 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1589574677; cv=none; d=zohomail.com; s=zohoarc; b=FK5oeI31N33mT22UUqeqjU0KOktrJGPsBN5jnO6UUx+jFVCpypjZXmVInDK5k1zNTALB1qF8uTavIINJalz3hoGk1q2GeoB5+d2Kcv85ZIwsTA2h75+Jv2S4pqmtXbdME42B7U6MixwpROa/MOy3dhbpQLCE0ZLj/nngfK2YLcw= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1589574677; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To; bh=RbY/htvP9VYhStNvO45Jo+jy4ZSfQRvFXGRW2SB8ejE=; b=lp4LFDbMbTSGAJcX/rN3ULLmvCpQV6nOgfGAEgJAJPaWf486laYphgOx1Na0kxX8AVAeEDO8C4WZcQv27+HAXCoHpKUlRjTuE78l3QxJOLthokJTS/PtN1HxMLpOLkfIS7H07H97mxcqcGSoNr8mJ/Ec458FbGLoVQkTPw28EGw= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=pass smtp.mailfrom=dan@dlrobertson.com; dmarc=pass header.from= header.from= From: Dan Robertson To: Greg Kurz , Christian Schoenebeck Message-ID: <20200515203015.7090-2-dan@dlrobertson.com> Subject: [PATCH 1/1] 9pfs: include linux/limits.h for XATTR_SIZE_MAX Date: Fri, 15 May 2020 20:30:15 +0000 X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200515203015.7090-1-dan@dlrobertson.com> References: <20200515203015.7090-1-dan@dlrobertson.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ZohoMailClient: External Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Received-SPF: pass client-ip=136.143.188.13; envelope-from=dan@dlrobertson.com; helo=sender4-op-o13.zoho.com X-detected-operating-system: by eggs.gnu.org: First seen = 2020/05/15 16:31:18 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Mailman-Approved-At: Fri, 15 May 2020 21:00:30 -0400 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Dan Robertson , qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" linux/limits.h should be included for the XATTR_SIZE_MAX definition used by v9fs_xattrcreate. Signed-off-by: Dan Robertson Reviewed-by: Christian Schoenebeck Reviewed-by: Philippe Mathieu-Daud=C3=A9 --- hw/9pfs/9p.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/9pfs/9p.c b/hw/9pfs/9p.c index a2a14b5979..68c2df7333 100644 --- a/hw/9pfs/9p.c +++ b/hw/9pfs/9p.c @@ -28,6 +28,7 @@ #include "sysemu/qtest.h" #include "qemu/xxhash.h" #include +#include =20 int open_fd_hw; int total_open_fd;