mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
fs/ocfs2/cluster: use offset_in_page() macro
Use offset_in_page() macro instead of open-coding. Link: http://lkml.kernel.org/r/4dbc77ccaaed98b183cf4dba58a4fa325fd65048.1492758503.git.geliangtang@gmail.com Signed-off-by: Geliang Tang <geliangtang@gmail.com> Cc: Mark Fasheh <mfasheh@versity.com> Cc: Joel Becker <jlbec@evilplan.org> Cc: Junxiao Bi <junxiao.bi@oracle.com> Cc: Joseph Qi <jiangqi903@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
33496c3c3d
commit
d47736fafe
@ -955,7 +955,7 @@ static void o2net_sendpage(struct o2net_sock_container *sc,
|
||||
mutex_lock(&sc->sc_send_lock);
|
||||
ret = sc->sc_sock->ops->sendpage(sc->sc_sock,
|
||||
virt_to_page(kmalloced_virt),
|
||||
(long)kmalloced_virt & ~PAGE_MASK,
|
||||
offset_in_page(kmalloced_virt),
|
||||
size, MSG_DONTWAIT);
|
||||
mutex_unlock(&sc->sc_send_lock);
|
||||
if (ret == size)
|
||||
|
Loading…
Reference in New Issue
Block a user