Re: ResourceOwner refactoring

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Re: ResourceOwner refactoring
Дата
Msg-id 009634e6-762f-4be4-b04a-aeb735ba7b11@iki.fi
обсуждение исходный текст
Ответ на Re: ResourceOwner refactoring  (Alexander Lakhin <exclusion@gmail.com>)
Ответы Re: ResourceOwner refactoring  (Thomas Munro <thomas.munro@gmail.com>)
Список pgsql-hackers
On 11/11/2023 14:00, Alexander Lakhin wrote:
> 10.11.2023 17:26, Heikki Linnakangas wrote:
>>
>> I think that is surprising behavior from the DSA facility. When you make allocations with dsa_allocate() or just
call
>> dsa_get_address() on an existing dsa_pointer, you wouldn't expect the current resource owner to matter. I think
>> dsa_create/attach() should store the current resource owner in the dsa_area, for use in subsequent operations on
the
>> DSA, per attached patch (0002-Fix-dsa.c-with-different-resource-owners.patch).
>>
> 
> With the patch 0002 applied, I'm observing another anomaly:

Ok, so the ownership of a dsa was still muddled :-(. Attached is a new 
version that goes a little further. It replaces the whole 
'mapping_pinned' flag in dsa_area with the 'resowner'. When a mapping is 
pinned, it means that 'resowner == NULL'. This is now similar to how the 
resowner field and pinning works in dsm.c.

-- 
Heikki Linnakangas
Neon (https://neon.tech)

Вложения

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Kim Johan Andersson
Дата:
Сообщение: Re: [PATCH] Add support function for containment operators
Следующее
От: Thomas Munro
Дата:
Сообщение: Re: ResourceOwner refactoring