mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-25 17:53:34 -05:00
ubifs: Rename tnc_read_node_nm
tnc_read_hashed_node() is a better name since we read a node by a given hash, not a name. Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
ca7f85be8d
commit
b91dc9816e
1 changed files with 6 additions and 6 deletions
|
@ -378,7 +378,7 @@ static void lnc_free(struct ubifs_zbranch *zbr)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* tnc_read_node_nm - read a "hashed" leaf node.
|
* tnc_read_hashed_node - read a "hashed" leaf node.
|
||||||
* @c: UBIFS file-system description object
|
* @c: UBIFS file-system description object
|
||||||
* @zbr: key and position of the node
|
* @zbr: key and position of the node
|
||||||
* @node: node is returned here
|
* @node: node is returned here
|
||||||
|
@ -388,8 +388,8 @@ static void lnc_free(struct ubifs_zbranch *zbr)
|
||||||
* added to LNC. Returns zero in case of success or a negative negative error
|
* added to LNC. Returns zero in case of success or a negative negative error
|
||||||
* code in case of failure.
|
* code in case of failure.
|
||||||
*/
|
*/
|
||||||
static int tnc_read_node_nm(struct ubifs_info *c, struct ubifs_zbranch *zbr,
|
static int tnc_read_hashed_node(struct ubifs_info *c, struct ubifs_zbranch *zbr,
|
||||||
void *node)
|
void *node)
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
|
@ -1454,7 +1454,7 @@ again:
|
||||||
* In this case the leaf node cache gets used, so we pass the
|
* In this case the leaf node cache gets used, so we pass the
|
||||||
* address of the zbranch and keep the mutex locked
|
* address of the zbranch and keep the mutex locked
|
||||||
*/
|
*/
|
||||||
err = tnc_read_node_nm(c, zt, node);
|
err = tnc_read_hashed_node(c, zt, node);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
if (safely) {
|
if (safely) {
|
||||||
|
@ -1817,7 +1817,7 @@ static int do_lookup_nm(struct ubifs_info *c, const union ubifs_key *key,
|
||||||
goto out_unlock;
|
goto out_unlock;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = tnc_read_node_nm(c, &znode->zbranch[n], node);
|
err = tnc_read_hashed_node(c, &znode->zbranch[n], node);
|
||||||
|
|
||||||
out_unlock:
|
out_unlock:
|
||||||
mutex_unlock(&c->tnc_mutex);
|
mutex_unlock(&c->tnc_mutex);
|
||||||
|
@ -2815,7 +2815,7 @@ struct ubifs_dent_node *ubifs_tnc_next_ent(struct ubifs_info *c,
|
||||||
goto out_free;
|
goto out_free;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = tnc_read_node_nm(c, zbr, dent);
|
err = tnc_read_hashed_node(c, zbr, dent);
|
||||||
if (unlikely(err))
|
if (unlikely(err))
|
||||||
goto out_free;
|
goto out_free;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue