mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 23:03:06 +00:00
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
22 lines
336 B
C
22 lines
336 B
C
/*
|
|
* Marvell XOR platform device data definition file.
|
|
*/
|
|
|
|
#ifndef __DMA_MV_XOR_H
|
|
#define __DMA_MV_XOR_H
|
|
|
|
#include <linux/dmaengine.h>
|
|
#include <linux/mbus.h>
|
|
|
|
#define MV_XOR_NAME "mv_xor"
|
|
|
|
struct mv_xor_channel_data {
|
|
dma_cap_mask_t cap_mask;
|
|
};
|
|
|
|
struct mv_xor_platform_data {
|
|
struct mv_xor_channel_data *channels;
|
|
};
|
|
|
|
#endif
|