lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <7aa37ed6-d717-4340-8c27-60fd130496c1@linux.alibaba.com>
Date: Mon, 28 Oct 2024 10:51:12 +0800
From: Joseph Qi <joseph.qi@...ux.alibaba.com>
To: linux@...blig.org, mark@...heh.com, jlbec@...lplan.org,
 akpm <akpm@...ux-foundation.org>
Cc: ocfs2-devel@...ts.linux.dev, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] ocfs2: Remove unused errmsg function and table



On 10/22/24 8:25 AM, linux@...blig.org wrote:
> From: "Dr. David Alan Gilbert" <linux@...blig.org>
> 
> dlm_errmsg() has been unused since 2010's
> commit 0016eedc4185 ("ocfs2_dlmfs: Use the stackglue.")
> 
> Remove dlm_errmsg() and the message table it indexes.
> 
> Signed-off-by: Dr. David Alan Gilbert <linux@...blig.org>

Acked-by: Joseph Qi <joseph.qi@...ux.alibaba.com>
> ---
>  fs/ocfs2/dlm/dlmapi.h   |  2 --
>  fs/ocfs2/dlm/dlmdebug.c | 53 -----------------------------------------
>  2 files changed, 55 deletions(-)
> 
> diff --git a/fs/ocfs2/dlm/dlmapi.h b/fs/ocfs2/dlm/dlmapi.h
> index bae60ca2672a..847a52dcbe7d 100644
> --- a/fs/ocfs2/dlm/dlmapi.h
> +++ b/fs/ocfs2/dlm/dlmapi.h
> @@ -62,8 +62,6 @@ enum dlm_status {
>  	DLM_MAXSTATS,             /* 41: upper limit for return code validation */
>  };
>  
> -/* for pretty-printing dlm_status error messages */
> -const char *dlm_errmsg(enum dlm_status err);
>  /* for pretty-printing dlm_status error names */
>  const char *dlm_errname(enum dlm_status err);
>  
> diff --git a/fs/ocfs2/dlm/dlmdebug.c b/fs/ocfs2/dlm/dlmdebug.c
> index be5e9ed7da8d..e9ef4e2b0e75 100644
> --- a/fs/ocfs2/dlm/dlmdebug.c
> +++ b/fs/ocfs2/dlm/dlmdebug.c
> @@ -164,59 +164,6 @@ static const char *dlm_errnames[] = {
>  	[DLM_MAXSTATS] =		"DLM_MAXSTATS",
>  };
>  
> -static const char *dlm_errmsgs[] = {
> -	[DLM_NORMAL] = 			"request in progress",
> -	[DLM_GRANTED] = 		"request granted",
> -	[DLM_DENIED] = 			"request denied",
> -	[DLM_DENIED_NOLOCKS] = 		"request denied, out of system resources",
> -	[DLM_WORKING] = 		"async request in progress",
> -	[DLM_BLOCKED] = 		"lock request blocked",
> -	[DLM_BLOCKED_ORPHAN] = 		"lock request blocked by a orphan lock",
> -	[DLM_DENIED_GRACE_PERIOD] = 	"topological change in progress",
> -	[DLM_SYSERR] = 			"system error",
> -	[DLM_NOSUPPORT] = 		"unsupported",
> -	[DLM_CANCELGRANT] = 		"can't cancel convert: already granted",
> -	[DLM_IVLOCKID] = 		"bad lockid",
> -	[DLM_SYNC] = 			"synchronous request granted",
> -	[DLM_BADTYPE] = 		"bad resource type",
> -	[DLM_BADRESOURCE] = 		"bad resource handle",
> -	[DLM_MAXHANDLES] = 		"no more resource handles",
> -	[DLM_NOCLINFO] = 		"can't contact cluster manager",
> -	[DLM_NOLOCKMGR] = 		"can't contact lock manager",
> -	[DLM_NOPURGED] = 		"can't contact purge daemon",
> -	[DLM_BADARGS] = 		"bad api args",
> -	[DLM_VOID] = 			"no status",
> -	[DLM_NOTQUEUED] = 		"NOQUEUE was specified and request failed",
> -	[DLM_IVBUFLEN] = 		"invalid resource name length",
> -	[DLM_CVTUNGRANT] = 		"attempted to convert ungranted lock",
> -	[DLM_BADPARAM] = 		"invalid lock mode specified",
> -	[DLM_VALNOTVALID] = 		"value block has been invalidated",
> -	[DLM_REJECTED] = 		"request rejected, unrecognized client",
> -	[DLM_ABORT] = 			"blocked lock request cancelled",
> -	[DLM_CANCEL] = 			"conversion request cancelled",
> -	[DLM_IVRESHANDLE] = 		"invalid resource handle",
> -	[DLM_DEADLOCK] = 		"deadlock recovery refused this request",
> -	[DLM_DENIED_NOASTS] = 		"failed to allocate AST",
> -	[DLM_FORWARD] = 		"request must wait for primary's response",
> -	[DLM_TIMEOUT] = 		"timeout value for lock has expired",
> -	[DLM_IVGROUPID] = 		"invalid group specification",
> -	[DLM_VERS_CONFLICT] = 		"version conflicts prevent request handling",
> -	[DLM_BAD_DEVICE_PATH] = 	"Locks device does not exist or path wrong",
> -	[DLM_NO_DEVICE_PERMISSION] = 	"Client has insufficient perms for device",
> -	[DLM_NO_CONTROL_DEVICE] = 	"Cannot set options on opened device ",
> -	[DLM_RECOVERING] = 		"lock resource being recovered",
> -	[DLM_MIGRATING] = 		"lock resource being migrated",
> -	[DLM_MAXSTATS] = 		"invalid error number",
> -};
> -
> -const char *dlm_errmsg(enum dlm_status err)
> -{
> -	if (err >= DLM_MAXSTATS || err < 0)
> -		return dlm_errmsgs[DLM_MAXSTATS];
> -	return dlm_errmsgs[err];
> -}
> -EXPORT_SYMBOL_GPL(dlm_errmsg);
> -
>  const char *dlm_errname(enum dlm_status err)
>  {
>  	if (err >= DLM_MAXSTATS || err < 0)


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ