diff options
author | Shani Moideen <shani.moideen@wipro.com> | 2007-06-11 00:08:19 -0400 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2007-07-10 20:19:52 -0400 |
commit | 5fb0f7f010ba07e373c30c3e99b0efd868c6c977 (patch) | |
tree | 41c18e9921c409d939b6557ffa16411d44b64b18 /fs | |
parent | 800deef3f6f87fee3a2e89cf7237a1f20c1a78d7 (diff) |
[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 <shani.moideen@wipro.com>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r-- | 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 74d276ec276f..a2c33160bfd6 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, | |||
1155 | u8 flags, u8 master) | 1155 | u8 flags, u8 master) |
1156 | { | 1156 | { |
1157 | /* mres here is one full page */ | 1157 | /* mres here is one full page */ |
1158 | memset(mres, 0, PAGE_SIZE); | 1158 | clear_page(mres); |
1159 | mres->lockname_len = namelen; | 1159 | mres->lockname_len = namelen; |
1160 | memcpy(mres->lockname, lockname, namelen); | 1160 | memcpy(mres->lockname, lockname, namelen); |
1161 | mres->num_locks = 0; | 1161 | mres->num_locks = 0; |