hw: get rid of fixme note in Kernel::update_region

ref #1101
This commit is contained in:
Martin Stein 2014-03-17 01:15:15 +01:00 committed by Norman Feske
parent 4f19d4869f
commit f8b4541e2b
2 changed files with 3 additions and 5 deletions

View File

@ -98,6 +98,8 @@ namespace Kernel
*
* \param base base of the region within the current domain
* \param size size of the region
*
* Does apply only to data caches.
*/
inline void update_region(addr_t const base, size_t const size)
{

View File

@ -620,11 +620,7 @@ void Thread::_call_update_region()
PWRN("not entitled to update region");
return;
}
/*
* Flush hardware caches
*
* FIXME we don't handle instruction caches by now
*/
/* flush hardware caches */
Processor::flush_data_cache_by_virt_region((addr_t)user_arg_1(),
(size_t)user_arg_2());
}