1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00

Kernel: Don't create a String every time we look up a Custody by name

This commit is contained in:
Andreas Kling 2019-08-24 22:01:17 +02:00
parent a00419ed77
commit b020a5e7ce
2 changed files with 8 additions and 11 deletions

View file

@ -12,7 +12,7 @@ static Lockable<InlineLinkedList<Custody>>& all_custodies()
return *list;
}
Custody* Custody::get_if_cached(Custody* parent, const String& name)
Custody* Custody::get_if_cached(Custody* parent, const StringView& name)
{
LOCKER(all_custodies().lock());
for (auto& custody : all_custodies().resource()) {
@ -26,14 +26,11 @@ Custody* Custody::get_if_cached(Custody* parent, const String& name)
return nullptr;
}
NonnullRefPtr<Custody> Custody::get_or_create(Custody* parent, const String& name, Inode& inode)
NonnullRefPtr<Custody> Custody::get_or_create(Custody* parent, const StringView& name, Inode& inode)
{
if (RefPtr<Custody> cached_custody = get_if_cached(parent, name)) {
if (&cached_custody->inode() != &inode) {
dbgprintf("WTF! cached custody for name '%s' has inode=%s, new inode=%s\n",
name.characters(),
cached_custody->inode().identifier().to_string().characters(),
inode.identifier().to_string().characters());
dbg() << "WTF! Cached custody for name '" << name << "' has inode=" << cached_custody->inode().identifier() << ", new inode=" << inode.identifier();
}
ASSERT(&cached_custody->inode() == &inode);
return *cached_custody;
@ -41,7 +38,7 @@ NonnullRefPtr<Custody> Custody::get_or_create(Custody* parent, const String& nam
return create(parent, name, inode);
}
Custody::Custody(Custody* parent, const String& name, Inode& inode)
Custody::Custody(Custody* parent, const StringView& name, Inode& inode)
: m_parent(parent)
, m_name(name)
, m_inode(inode)