Skip to content

Commit

Permalink
part_blk: increase entrypoint stack size
Browse files Browse the repository at this point in the history
The changed policy-matching utility uses session labels etc. on stack
which increases the size demand.
  • Loading branch information
chelmuth committed Nov 29, 2015
1 parent df53187 commit dd96cba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos/os/src/server/part_blk/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ int main()
return 1;
}

enum { STACK_SIZE = 1024 * sizeof(Genode::size_t) };
enum { STACK_SIZE = 2048 * sizeof(Genode::size_t) };
static Cap_connection cap;
static Rpc_entrypoint ep(&cap, STACK_SIZE, "part_ep");
static Block::Root block_root(&ep, env()->heap(), receiver,
Expand Down

0 comments on commit dd96cba

Please sign in to comment.