From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C7C4018E30; Wed, 18 Oct 2023 11:00:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.intel.com Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux.intel.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b="a+V3TpR6" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1697626814; x=1729162814; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=COxJInCL0jGxY7ESovjNwogq2qyUcFkuDBB6vSCiReM=; b=a+V3TpR6aDTHbUB2XvyddMXyXkjawi9hYEOOHM/pC3UBIi8Q9CUOaof4 Bt/k+XEwrJuxhd/G2LtrukdukT7Q8I8D+1xtnAiPEIQRJZ82WIs4FU2/Q 1UwuQ7OfZIUeVtX4sbBGRU5UbTNW2bC3HWUQmYxpoybMYbwai+flQW/pu BPteXlwrKur2TCttvmXxN3EnqjeSWACPhX8LFfQvL3YADDPiqLFifJ0iu BAiIsZNwn2Aq+BkTxKCpq5Isf64fMkbvXQwTIy2BehIuXl7U0NXn077E2 rgrMYolFP+HBR7AxC7sL+coeuowFnH8uSa2UfsGLuhW/IaqcZT1Ttm2Vl w==; X-IronPort-AV: E=McAfee;i="6600,9927,10866"; a="365338343" X-IronPort-AV: E=Sophos;i="6.03,234,1694761200"; d="scan'208";a="365338343" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Oct 2023 04:00:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10866"; a="900303900" X-IronPort-AV: E=Sophos;i="6.03,234,1694761200"; d="scan'208";a="900303900" Received: from nurfahan-mobl3.gar.corp.intel.com (HELO intel.com) ([10.213.159.217]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Oct 2023 03:58:05 -0700 Date: Wed, 18 Oct 2023 13:00:01 +0200 From: Andi Shyti To: Soumya Negi Cc: Martyn Welch , Manohar Vanga , Greg Kroah-Hartman , outreachy@lists.linux.dev, linux-kernel@vger.kernel.org, linux-staging@lists.linux.dev Subject: Re: [PATCH 2/2] staging: vme_user: Use __func__ instead of function name Message-ID: References: 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: Hi Soumya, On Tue, Oct 17, 2023 at 09:36:33PM -0700, Soumya Negi wrote: > Replace function names in message strings with __func__ to fix > all checkpatch warnings like: > > WARNING: Prefer using '"%s...", __func__' to using 'vme_lm_get', > this function's name, in a string > > Signed-off-by: Soumya Negi > --- > drivers/staging/vme_user/vme.c | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) > > diff --git a/drivers/staging/vme_user/vme.c b/drivers/staging/vme_user/vme.c > index e8c2c1e77b7d..11c1df12b657 100644 > --- a/drivers/staging/vme_user/vme.c > +++ b/drivers/staging/vme_user/vme.c > @@ -422,7 +422,7 @@ int vme_slave_get(struct vme_resource *resource, int *enabled, > image = list_entry(resource->entry, struct vme_slave_resource, list); > > if (!bridge->slave_get) { > - dev_err(bridge->parent, "vme_slave_get not supported\n"); > + dev_err(bridge->parent, "%s not supported\n", __func__); > return -EINVAL; > } > > @@ -572,7 +572,7 @@ int vme_master_set(struct vme_resource *resource, int enabled, > image = list_entry(resource->entry, struct vme_master_resource, list); > > if (!bridge->master_set) { > - dev_warn(bridge->parent, "vme_master_set not supported\n"); > + dev_warn(bridge->parent, "%s not supported\n", __func__); I wouldn't disagree if you made this dev_err() instead of dev_warn(). The reasoning behind is that if it's a warning you should not fail. But beacuse you are returning -EINVAL it means that you are failing, therefore you should use dev_err(). Others might object that the change I'm suggesting sohuld go in a different patch, which is also OK. > return -EINVAL; ... or, if you want to keep the dev_warn(), whou can consider removing the "return -EINVAL;". But this is an evaluation you should make in a different patch and mainly evaluate if it's OK to remove the error here. > } > > @@ -1565,7 +1565,7 @@ int vme_lm_set(struct vme_resource *resource, unsigned long long lm_base, > lm = list_entry(resource->entry, struct vme_lm_resource, list); > > if (!bridge->lm_set) { > - dev_err(bridge->parent, "vme_lm_set not supported\n"); > + dev_err(bridge->parent, "%s not supported\n", __func__); > return -EINVAL; > } > > @@ -1601,7 +1601,7 @@ int vme_lm_get(struct vme_resource *resource, unsigned long long *lm_base, > lm = list_entry(resource->entry, struct vme_lm_resource, list); > > if (!bridge->lm_get) { > - dev_err(bridge->parent, "vme_lm_get not supported\n"); > + dev_err(bridge->parent, "%s not supported\n", __func__); > return -EINVAL; > } > > @@ -1638,7 +1638,7 @@ int vme_lm_attach(struct vme_resource *resource, int monitor, > lm = list_entry(resource->entry, struct vme_lm_resource, list); > > if (!bridge->lm_attach) { > - dev_err(bridge->parent, "vme_lm_attach not supported\n"); > + dev_err(bridge->parent, "%s not supported\n", __func__); > return -EINVAL; > } > > @@ -1671,7 +1671,7 @@ int vme_lm_detach(struct vme_resource *resource, int monitor) > lm = list_entry(resource->entry, struct vme_lm_resource, list); > > if (!bridge->lm_detach) { > - dev_err(bridge->parent, "vme_lm_detach not supported\n"); > + dev_err(bridge->parent, "%s not supported\n", __func__); > return -EINVAL; > } > > @@ -1738,7 +1738,7 @@ int vme_slot_num(struct vme_dev *vdev) > } > > if (!bridge->slot_get) { > - dev_warn(bridge->parent, "vme_slot_num not supported\n"); > + dev_warn(bridge->parent, "%s not supported\n", __func__); > return -EINVAL; > } Nothing wrong with the patch itself. But imagine if we end up in one of those printouts and, as a user, you read something like: ... vme_slot_num not supported The message itself doesn't say much to the user. The perfect fix would be to re-write all these error messages with a proper meaningful sentence, like, e.g.: Can't retrieve the CS/CSR slot id (don't even know if it's fully correct). Anyway, I understand you don't have much time for such fine changes, so whatever you decide to do: Acked-by: Andi Shyti Andi