blob: e52c213616074a13f1507a45f94595f35db60a47 (
plain)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
// IBM_PROLOG_BEGIN_TAG
// This is an automatically generated prolog.
//
// $Source: src/kernel/blockmsghdlr.C $
//
// IBM CONFIDENTIAL
//
// COPYRIGHT International Business Machines Corp. 2011
//
// p1
//
// Object Code Only (OCO) source materials
// Licensed Internal Code Source Materials
// IBM HostBoot Licensed Internal Code
//
// The source code for this program is not published or other-
// wise divested of its trade secrets, irrespective of what has
// been deposited with the U.S. Copyright Office.
//
// Origin: 30
//
// IBM_PROLOG_END
#include <kernel/blockmsghdlr.H>
#include <kernel/block.H>
#include <kernel/pagemgr.H>
#include <kernel/basesegment.H>
MessageHandler::HandleResult BlockReadMsgHdlr::handleResponse(
msg_sys_types_t i_type, void* i_key, task_t* i_task, int i_rc)
{
if (i_rc != 0)
{
// Indicate nothing specific has been done for this response. Request
// default behavior of resume/kill task based on rc.
return UNHANDLED_RC;
}
else
{
// Call the function that attaches PTE and sets the
// sPTE entry to present while updating permissions
// on the sPTE entry of the physical addr.
iv_block->attachSPTE(i_key);
return SUCCESS;
}
}
MessageHandler::HandleResult BlockWriteMsgHdlr::handleResponse(
msg_sys_types_t i_type, void* i_key, task_t* i_task, int i_rc)
{
//Default to indicate nothing specific has been done for this response.
MessageHandler::HandleResult l_result = UNHANDLED_RC;
if (i_rc != 0)
{
//Request default behavior of resume/kill task based on rc.
return l_result;
}
//Find the virtual address to page address mapping to know which page
//address to release since only the virtual address is available on the msg
PageAddrNode* l_paNode = iv_va2paList.find(i_key);
if (l_paNode)
{
l_result = SUCCESS;
//Complete page removal and remove list entry
PageManager::freePage(reinterpret_cast<void*>(l_paNode->pageAddr));
iv_va2paList.erase(l_paNode);
delete l_paNode;
}
//Not handling a reponse from kernel
if (i_task != NULL)
{
//Find the task's msg count to know how many messages were sent
//to remove pages and whether to continue deferring the task or not
TaskMsgNode* l_tmNode = iv_msgGrpList.find(i_task);
if (l_tmNode)
{
//Last message for the given task
if (l_tmNode->msgCount == 1 &&
(l_tmNode->next == NULL && l_tmNode->prev == NULL))
{
l_result = SUCCESS;
iv_msgGrpList.erase(l_tmNode);
delete l_tmNode;
}
else
{
l_result = CONTINUE_DEFER;
l_tmNode->msgCount--;
}
}
}
return l_result;
}
void BlockWriteMsgHdlr::incMsgCount(task_t* i_task)
{
TaskMsgNode* l_tmNode = iv_msgGrpList.find(i_task);
if (l_tmNode == NULL)
{
//Add task to list and set message count to 1
l_tmNode = new TaskMsgNode();
l_tmNode->key = i_task;
l_tmNode->msgCount = 0;
iv_msgGrpList.insert(l_tmNode);
}
l_tmNode->msgCount++;
}
void BlockWriteMsgHdlr::addVirtAddr(void* i_vaddr,uint64_t i_pgAddr)
{
PageAddrNode* l_paNode = new PageAddrNode();
l_paNode->key = i_vaddr;
l_paNode->pageAddr = i_pgAddr;
iv_va2paList.insert(l_paNode);
}
|