1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/* Implementation of memory_object_data_unlock for pager library
Copyright (C) 1994,95,2002 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or (at
your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "priv.h"
#include "memory_object_S.h"
#include <stdio.h>
/* Implement kernel requests for access as described in
<mach/memory_object.defs>. */
kern_return_t
_pager_S_memory_object_data_unlock (struct pager *p,
mach_port_t control,
vm_offset_t offset,
vm_size_t length,
vm_prot_t access)
{
volatile int err;
if (!p
|| p->port.class != _pager_class)
return EOPNOTSUPP;
if (p->pager_state != NORMAL)
{
printf ("pager in wrong state for unlock\n");
goto out;
}
if (control != p->memobjcntl)
{
printf ("incg data unlock: wrong control port\n");
goto out;
}
/* The only thing we ever block is writes */
if ((access & VM_PROT_WRITE) == 0)
{
printf ("incg data unlock: not unlock writes\n");
goto out;
}
if (offset % __vm_page_size)
{
printf ("incg data unlock: misaligned request\n");
goto out;
}
if (length != __vm_page_size)
{
printf ("incg data unlock: bad length size %zd\n", length);
goto out;
}
err = pager_unlock_page (p->upi, offset);
if (!err)
/* We can go ahead and release the lock. */
_pager_lock_object (p, offset, length, MEMORY_OBJECT_RETURN_NONE, 0,
VM_PROT_NONE, 0);
else
{
/* Flush the page, and set a bit so that m_o_data_request knows
to issue an error. */
_pager_lock_object (p, offset, length, MEMORY_OBJECT_RETURN_NONE, 1,
VM_PROT_WRITE, 1);
_pager_mark_next_request_error (p, offset, length, err);
}
out:
return 0;
}
|