Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2C17EC433F5 for ; Fri, 19 Nov 2021 19:29:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 16A6E60F4F for ; Fri, 19 Nov 2021 19:29:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235984AbhKSTcH (ORCPT ); Fri, 19 Nov 2021 14:32:07 -0500 Received: from smtp-out2.suse.de ([195.135.220.29]:36388 "EHLO smtp-out2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235931AbhKSTcG (ORCPT ); Fri, 19 Nov 2021 14:32:06 -0500 Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 507BC1FD3D; Fri, 19 Nov 2021 19:29:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1637350143; h=from:from:reply-to:reply-to:date:date:message-id:message-id:to:to: cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=vYCqqCmr0eXa8bYDyXX1w6z/yqJGXuqP/p7h+u+GVyc=; b=baG/dou2SqzYlj3+hEayGDfiDTRFQFlib70V6H8Nhy9xNv0GIUYal8iObIvoDGtbnzDv21 1onbkqWhenbuihKGiuX+ntKNoohOrVstlQSdPIt5Ss+lP2pbY+xEYXGCyiPFLcidSGzA9b uH1q3Zl9eH4Qaok2OfZcb6CstAb1Aiw= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1637350143; h=from:from:reply-to:reply-to:date:date:message-id:message-id:to:to: cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=vYCqqCmr0eXa8bYDyXX1w6z/yqJGXuqP/p7h+u+GVyc=; b=4V7ZMxVAhigkLFV+Zu9QZKjqjQesmTmNu2B+4eg66NFdTQgHkvbKIEja+RUI7Kgte+l578 rBOzU4IjFW4HWMDQ== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 0A595139F0; Fri, 19 Nov 2021 19:29:03 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id /hBNAf/6l2GCeQAAMHmgww (envelope-from ); Fri, 19 Nov 2021 19:29:03 +0000 Date: Fri, 19 Nov 2021 20:29:01 +0100 From: Petr Vorel To: Amir Goldstein , Petr Vorel Cc: Gabriel Krisman Bertazi , Matthew Bobrowski , Jan Kara , Ext4 , kernel@collabora.com, Khazhismel Kumykov , LTP List Subject: Re: [PATCH v4 4/9] syscalls/fanotify22: Validate the generic error info Message-ID: Reply-To: Petr Vorel References: <20211118235744.802584-1-krisman@collabora.com> <20211118235744.802584-5-krisman@collabora.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org ... > > -AC_CHECK_TYPES([struct fanotify_event_info_fid, struct fanotify_event_info_header],,,[#include ]) > > +AC_CHECK_TYPES([struct fanotify_event_info_fid, struct fanotify_event_info_header, > > + struct fanotify_event_info_error],[],[],[#include ]) > Doh! it seems like fanotify_event_info_pidfd was dropped between v2 -> > v3 in Matthew's patches. > Petr, > Can you please fix this. Hi Amir, thanks for info, sure I'll fix it on Monday. Kind regards, Petr > Thanks, > Amir.