From: Eric Ren <zren@suse.com>
To: ocfs2-devel@oss.oracle.com
Subject: [Ocfs2-devel] [PATCH] ocfs2: remove obscure BUG_ON in dlmglue
Date: Mon, 4 Jul 2016 11:26:57 +0800 [thread overview]
Message-ID: <5779D781.3060600@suse.com> (raw)
In-Reply-To: <5776336A.6030104@huawei.com>
Good catch, thanks!
Reviewed-by: Eric Ren <zren@suse.com>
On 07/01/2016 05:10 PM, Joseph Qi wrote:
> These BUG_ON(!inode) are obscure because we have already used inode to
> get osb. And actually we can guarantee here inode is valid in the
> context. So we can safely remove them.
>
> Signed-off-by: Joseph Qi <joseph.qi@huawei.com>
> ---
> fs/ocfs2/dlmglue.c | 9 ---------
> 1 file changed, 9 deletions(-)
>
> diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c
> index 1cfa1b6bf..2108960 100644
> --- a/fs/ocfs2/dlmglue.c
> +++ b/fs/ocfs2/dlmglue.c
> @@ -1634,7 +1634,6 @@ int ocfs2_create_new_inode_locks(struct inode *inode)
> int ret;
> struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
>
> - BUG_ON(!inode);
> BUG_ON(!ocfs2_inode_is_new(inode));
>
> mlog(0, "Inode %llu\n", (unsigned long long)OCFS2_I(inode)->ip_blkno);
> @@ -1677,8 +1676,6 @@ int ocfs2_rw_lock(struct inode *inode, int write)
> struct ocfs2_lock_res *lockres;
> struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
>
> - BUG_ON(!inode);
> -
> mlog(0, "inode %llu take %s RW lock\n",
> (unsigned long long)OCFS2_I(inode)->ip_blkno,
> write ? "EXMODE" : "PRMODE");
> @@ -1721,8 +1718,6 @@ int ocfs2_open_lock(struct inode *inode)
> struct ocfs2_lock_res *lockres;
> struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
>
> - BUG_ON(!inode);
> -
> mlog(0, "inode %llu take PRMODE open lock\n",
> (unsigned long long)OCFS2_I(inode)->ip_blkno);
>
> @@ -1746,8 +1741,6 @@ int ocfs2_try_open_lock(struct inode *inode, int write)
> struct ocfs2_lock_res *lockres;
> struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
>
> - BUG_ON(!inode);
> -
> mlog(0, "inode %llu try to take %s open lock\n",
> (unsigned long long)OCFS2_I(inode)->ip_blkno,
> write ? "EXMODE" : "PRMODE");
> @@ -2325,8 +2318,6 @@ int ocfs2_inode_lock_full_nested(struct inode *inode,
> struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
> struct buffer_head *local_bh = NULL;
>
> - BUG_ON(!inode);
> -
> mlog(0, "inode %llu, take %s META lock\n",
> (unsigned long long)OCFS2_I(inode)->ip_blkno,
> ex ? "EXMODE" : "PRMODE");
>
prev parent reply other threads:[~2016-07-04 3:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-01 9:10 [Ocfs2-devel] [PATCH] ocfs2: remove obscure BUG_ON in dlmglue Joseph Qi
2016-07-04 3:26 ` Eric Ren [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5779D781.3060600@suse.com \
--to=zren@suse.com \
--cc=ocfs2-devel@oss.oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.