Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5fb0f7f010ba07e373c30c3e99b0efd868c6c977
Commit:     5fb0f7f010ba07e373c30c3e99b0efd868c6c977
Parent:     800deef3f6f87fee3a2e89cf7237a1f20c1a78d7
Author:     Shani Moideen <[EMAIL PROTECTED]>
AuthorDate: Mon Jun 11 09:38:19 2007 +0530
Committer:  Mark Fasheh <[EMAIL PROTECTED]>
CommitDate: Tue Jul 10 17:19:52 2007 -0700

    [KJ PATCH] Replacing memset(<addr>,0,PAGE_SIZE) with clear_page() in 
fs/ocfs2/dlm/dlmrecovery.c
    
    Replacing memset(<addr>,0,PAGE_SIZE) with clear_page() in
    fs/ocfs2/dlm/dlmrecovery.c
    
    Signed-off-by: Shani Moideen <[EMAIL PROTECTED]>
    Signed-off-by: Mark Fasheh <[EMAIL PROTECTED]>
---
 fs/ocfs2/dlm/dlmrecovery.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/ocfs2/dlm/dlmrecovery.c b/fs/ocfs2/dlm/dlmrecovery.c
index 74d276e..a2c3316 100644
--- a/fs/ocfs2/dlm/dlmrecovery.c
+++ b/fs/ocfs2/dlm/dlmrecovery.c
@@ -1155,7 +1155,7 @@ static void dlm_init_migratable_lockres(struct 
dlm_migratable_lockres *mres,
                                        u8 flags, u8 master)
 {
        /* mres here is one full page */
-       memset(mres, 0, PAGE_SIZE);
+       clear_page(mres);
        mres->lockname_len = namelen;
        memcpy(mres->lockname, lockname, namelen);
        mres->num_locks = 0;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to