lockdep: rename map_[acquire|release]() => lock_map_[acquire|release]()

the names were too generic:

 drivers/uio/uio.c:87: error: expected identifier or '(' before 'do'
 drivers/uio/uio.c:87: error: expected identifier or '(' before 'while'
 drivers/uio/uio.c:113: error: 'map_release' undeclared here (not in a function)

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Este commit está contenido en:
Ingo Molnar
2008-08-11 10:30:30 +02:00
padre 8bfe0298f7
commit 3295f0ef9f
Se han modificado 4 ficheros con 21 adiciones y 21 borrados

Ver fichero

@@ -291,7 +291,7 @@ handle_t *journal_start(journal_t *journal, int nblocks)
goto out;
}
map_acquire(&handle->h_lockdep_map);
lock_map_acquire(&handle->h_lockdep_map);
out:
return handle;
@@ -1448,7 +1448,7 @@ int journal_stop(handle_t *handle)
spin_unlock(&journal->j_state_lock);
}
map_release(&handle->h_lockdep_map);
lock_map_release(&handle->h_lockdep_map);
jbd_free_handle(handle);
return err;