Re: [PATCH] vm_page.c: add missing object lock

2023-02-08 Thread Samuel Thibault
Applied, thanks! Etienne Brateau, le mer. 08 févr. 2023 23:54:36 +0100, a ecrit: > The documentation of vm_page_insert says that the object must be locked. > Moreover, the unlock call is here but no call was present. > --- > vm/vm_page.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/v

[PATCH] vm_page.c: add missing object lock

2023-02-08 Thread Etienne Brateau
The documentation of vm_page_insert says that the object must be locked. Moreover, the unlock call is here but no call was present. --- vm/vm_page.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vm/vm_page.c b/vm/vm_page.c index 707be4bb..50916b74 100644 --- a/vm/vm_page.c +++ b/vm/vm_page.c