mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-21 02:01:38 +00:00
part_blk: raise max packet size to 1 MiB
This is because the old packet size of 128 KiB slowed down l4linux AHCI benchmark on arndale with large block sizes.
This commit is contained in:
parent
3fb7e74287
commit
9d23cdc27f
@ -19,8 +19,10 @@
|
||||
|
||||
namespace Partition {
|
||||
|
||||
enum { MAX_PARTITIONS = 32, /* maximum supported paritions */
|
||||
MAX_PACKET_SIZE = 128*1024 /* see: '<block/connection.h>' */ };
|
||||
enum {
|
||||
MAX_PARTITIONS = 32, /* maximum supported paritions */
|
||||
MAX_PACKET_SIZE = 1024 * 1024
|
||||
};
|
||||
|
||||
/**
|
||||
* The partition type
|
||||
|
Loading…
x
Reference in New Issue
Block a user