From mboxrd@z Thu Jan 1 00:00:00 1970 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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id D0E7DC3271E for ; Mon, 8 Jul 2024 11:25:36 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 61C5910E167; Mon, 8 Jul 2024 11:25:36 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="Jv95xxmv"; dkim-atps=neutral Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by gabe.freedesktop.org (Postfix) with ESMTPS id 6AF8510E0D1 for ; Mon, 8 Jul 2024 11:25:35 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id DD2E160B4E; Mon, 8 Jul 2024 11:25:34 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3F614C4AF0A; Mon, 8 Jul 2024 11:25:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1720437934; bh=kbWDaYd2Zj4SkeFCRSR0D9RE/sS3hANVK7AD7KFDJ4c=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=Jv95xxmvAoj6cwROxMD+MKT73VL25rdtBXQmyNjzdYnAv9WoQfL1OarrGvU/Q2Rzp j6cS0J56m0TqKkvFEpdUr9ZnTeELe8QnpiiTynppXYzEGMsZokG0u6mLNljKoD4Qm8 4AnDrXS/rcFedO5q7dddhg3BzHixW0x6gHWTfFSTfc3ECWDEf+8YNa5qKjU3Giu0Qc T7mDoxV37j0QkzMiorg0heCyCGzf3uVh0K0qhSGeJ0pbhPr8Zyz/SXEIZoqydtBdK4 v+4psL3G6a4McwUxouyci40TCxjQj8zhR2iYXbjV/OkiDyWvTP2sFsAE41aXkiBHcH otXWFLCpqGWFg== Message-ID: <78159b4b3aae872b7de40d6dd1d5adf3@kernel.org> Date: Mon, 08 Jul 2024 11:25:31 +0000 From: "Maxime Ripard" To: "Carlos Eduardo Gallo Filho" Subject: Re: [PATCH v3 2/9] drm/tests: Add parameters to the drm_test_framebuffer_create test In-Reply-To: <20240703172228.11166-3-gcarlos@disroot.org> References: <20240703172228.11166-3-gcarlos@disroot.org> Cc: dri-devel@lists.freedesktop.org, =?utf-8?b?QW5kcsOpIEFsbWVpZGE=?= , "Arthur Grillo" , "Daniel Vetter" , "David Airlie" , "Maarten Lankhorst" , "Maxime Ripard" , =?utf-8?b?TWHDrXJhIENhbmFs?= , "Tales Lelo da Aparecida" , "Thomas Zimmermann" Content-Transfer-Encoding: 7bit X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Wed, 3 Jul 2024 14:22:21 -0300, Carlos Eduardo Gallo Filho wrote: > Extend the existing test case to cover: > 1. Invalid flag atribute in the struct drm_mode_fb_cmd2. > 2. Pixel format which requires non-linear modifier with > DRM_FORMAT_MOD_LINEAR set. > 3. Buffer offset for inexistent plane > > [ ... ] Acked-by: Maxime Ripard Thanks! Maxime