mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
9d67f9fc8e
This patch removes old 'Allocator_guard' utility and replaces its use with the modern 'Constrained_ram_allocator'. The adjustment of core in this respect has the side effect of a more accurate capability accounting in core's CPU, TRACE, and RM services. In particular, the dataspace capabilities needed for core-internal allocations via the 'Sliced_heap' are accounted to the client now. The same goes for nitpicker and nic_dump as other former users of the allocator guard. Hence, the patch also touches code at the client and server sides related to these services. The only remaining user of the 'Allocator_guard' is the Intel GPU driver. As the adaptation of this component would be too invasive without testing, this patch leaves this component unchanged by keeping a copy of the 'allocator_guard.h' locally at the component. Fixes #3750
74 lines
1.9 KiB
C++
74 lines
1.9 KiB
C++
/*
|
|
* \brief Connection to TRACE service
|
|
* \author Norman Feske
|
|
* \date 2013-08-11
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2013-2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__TRACE_SESSION__CONNECTION_H_
|
|
#define _INCLUDE__TRACE_SESSION__CONNECTION_H_
|
|
|
|
#include <util/retry.h>
|
|
#include <trace_session/client.h>
|
|
#include <base/connection.h>
|
|
|
|
namespace Genode { namespace Trace { struct Connection; } }
|
|
|
|
|
|
struct Genode::Trace::Connection : Genode::Connection<Genode::Trace::Session>,
|
|
Genode::Trace::Session_client
|
|
{
|
|
template <typename FUNC>
|
|
auto _retry(FUNC func) -> decltype(func())
|
|
{
|
|
return retry_with_upgrade(Ram_quota{8*1024}, Cap_quota{2}, func);
|
|
}
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* \param ram_quota RAM donated for tracing purposes
|
|
* \param arg_buffer_size session argument-buffer size
|
|
* \param parent_levels number of parent levels to trace
|
|
*/
|
|
Connection(Env &env, size_t ram_quota, size_t arg_buffer_size, unsigned parent_levels)
|
|
:
|
|
Genode::Connection<Session>(env,
|
|
session(env.parent(), "ram_quota=%lu, arg_buffer_size=%lu, parent_levels=%u",
|
|
ram_quota + 10*1024, arg_buffer_size, parent_levels)),
|
|
Session_client(env.rm(), cap())
|
|
{ }
|
|
|
|
Policy_id alloc_policy(size_t size) override
|
|
{
|
|
return _retry([&] () {
|
|
return Session_client::alloc_policy(size); });
|
|
}
|
|
|
|
void trace(Subject_id s, Policy_id p, size_t buffer_size) override
|
|
{
|
|
_retry([&] () { Session_client::trace(s, p, buffer_size); });
|
|
}
|
|
|
|
size_t subjects(Subject_id *dst, size_t dst_len) override
|
|
{
|
|
return _retry([&] () {
|
|
return Session_client::subjects(dst, dst_len); });
|
|
}
|
|
|
|
template <typename FN>
|
|
size_t for_each_subject_info(FN const &fn)
|
|
{
|
|
return _retry([&] () {
|
|
return Session_client::for_each_subject_info(fn); });
|
|
}
|
|
};
|
|
|
|
#endif /* _INCLUDE__TRACE_SESSION__CONNECTION_H_ */
|