From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-ot1-f46.google.com (mail-ot1-f46.google.com [209.85.210.46]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AB600210F; Mon, 19 Jun 2023 06:43:51 +0000 (UTC) Received: by mail-ot1-f46.google.com with SMTP id 46e09a7af769-6b46f27f562so580848a34.0; Sun, 18 Jun 2023 23:43:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1687157030; x=1689749030; h=in-reply-to:content-disposition:mime-version:references:message-id :subject:cc:to:from:date:from:to:cc:subject:date:message-id:reply-to; bh=wcz5YhvDWo9nMHfrg8LSktuXw46EWE7Cp3QeJgkSwTE=; b=LQh3szetdHM+fLNYjwGz+X0VS6/aRK9FnpzfrU51Wz/KPC+7bYIMu6ARsuh5ukHZT4 fhrs20Btt++OwXu8NMn1Bqb0BsVBd4F6Z1xV5wZk8qaYUNnrqKrTD9c6OToLvqbZKkir paXANcxa81+mlAzCCWndqdEBCQ66h0Hd4Z0dR5LTuh+dLVkq5OacNbWHmm92npfg8+ec PCk2Avg8kGY8+F9fu8YTWbg3SPIvXWKF2+cOrx6vKoLSUdW1RoYE2T6k6mur2BzTyj+p yqYquc3YpaH+3qjiMTgz5UsKWdcNP7XLaTuPI1UU6WEcLe4iSlSPqONB9plGuma6xqTd eMvA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1687157030; x=1689749030; h=in-reply-to:content-disposition:mime-version:references:message-id :subject:cc:to:from:date:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=wcz5YhvDWo9nMHfrg8LSktuXw46EWE7Cp3QeJgkSwTE=; b=hewgzIo9vI6xM1BUjCSD2LcVwmlGXExk/Td1HGCEezFwMKNONK3hi/wPa1zaDer5Qz dQiROJuLpSLGhSL/8PSYX3GG4pNbT5C3V/Nyr4jRROFgRvQ32IBHKB/lpilf8UMackWL 9RuWcpyt8nH9zO/TTWTqeMoOfx8UBpYyQFjodaGAmGFi5M7Vth7I0GhvvYE8IToCXwCH pIYt+1tRXbmtbuuhE2TDyDrQ7yvmP7NDFqv7xiLxk82lbNwfbWsKA+kuTfsLdfpslVGW 2ay+Nfm2KKKgng12JL2TlEMYh6GrwVtfQprz9dTDwVtwV+zVwdISdkKW2BCBM+YJtpkG 0ULw== X-Gm-Message-State: AC+VfDxmQGGZCac4bXo8U9o/apJ4b54+Mb7dwtVrL6HKESjQFNpU+rQR BfzxizeVI+vsUKD8cWRgty8= X-Google-Smtp-Source: ACHHUZ7hnsP1SpKLEg4iXqF5ZLMnTU4bawweCSpP8YiMUr6Ed5E6li0w/lVKIhZjxzMVBHbqC0fgZw== X-Received: by 2002:a05:6358:cd23:b0:129:b96d:1b0d with SMTP id gv35-20020a056358cd2300b00129b96d1b0dmr1286509rwb.1.1687157030454; Sun, 18 Jun 2023 23:43:50 -0700 (PDT) Received: from redkillpc ([49.207.216.186]) by smtp.gmail.com with ESMTPSA id s188-20020a635ec5000000b005538bf7e3d6sm3513612pgb.88.2023.06.18.23.43.46 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 18 Jun 2023 23:43:49 -0700 (PDT) Date: Mon, 19 Jun 2023 12:13:43 +0530 From: Prathu Baronia To: Greg Kroah-Hartman Cc: "Fabio M. De Francesco" , Khadija Kamran , Uwe =?iso-8859-1?Q?Kleine-K=F6nig?= , linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org, dan.carpenter@linaro.org, error27@gmail.com, lkp@intel.com, oe-kbuild-all@lists.linux.dev, oe-kbuild@lists.linux.dev Subject: Re: [PATCH v5 1/2] axis-fifo: use devm_kasprintf() for allocating formatted strings Message-ID: References: <20230616152602.33232-1-prathubaronia2011@gmail.com> <2023061750-blog-curse-c1a3@gregkh> Precedence: bulk X-Mailing-List: linux-staging@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2023061750-blog-curse-c1a3@gregkh> On Sat, Jun 17, 2023 at 04:00:02PM +0200, Greg Kroah-Hartman wrote: > > You are doing two different things here, one is changing the allocation > way, and the other is the name. If one of those things turns out to > break something, we have to revert this whole thing. > > So please make this two different changes, one to change to use > devm_kasprintf() and the second to change the naming scheme, ESPECIALLY > as you do not mention the name change in the subject line. And that's > going to be a user-visible change, so you need to make that VERY > obvious. Makes sense greg, will do in v6. Prathu