[merged] vfs-use-err_cast-for-err-ptr-tossing-in-lookup_instantiate_filp.patch removed from -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     vfs: use ERR_CAST for err-ptr tossing in lookup_instantiate_filp
has been removed from the -mm tree.  Its filename was
     vfs-use-err_cast-for-err-ptr-tossing-in-lookup_instantiate_filp.patch

This patch was dropped because it was merged into mainline or a subsystem tree

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: vfs: use ERR_CAST for err-ptr tossing in lookup_instantiate_filp
From: Konstantin Khlebnikov <khlebnikov@xxxxxxxxxx>

Replace unclear (struct dentry *) to (struct file *) typecast with
ERR_CAST() macro.

Signed-off-by: Konstantin Khlebnikov <khlebnikov@xxxxxxxxxx>
Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 fs/open.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN fs/open.c~vfs-use-err_cast-for-err-ptr-tossing-in-lookup_instantiate_filp fs/open.c
--- a/fs/open.c~vfs-use-err_cast-for-err-ptr-tossing-in-lookup_instantiate_filp
+++ a/fs/open.c
@@ -793,7 +793,7 @@ out:
 	return nd->intent.open.file;
 out_err:
 	release_open_intent(nd);
-	nd->intent.open.file = (struct file *)dentry;
+	nd->intent.open.file = ERR_CAST(dentry);
 	goto out;
 }
 EXPORT_SYMBOL_GPL(lookup_instantiate_filp);
_

Patches currently in -mm which might be from khlebnikov@xxxxxxxxxx are

origin.patch
mm-remove-useless-rcu-lock-unlock-from-mapping_tagged.patch

--
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux