2015-12-04 15:47:52 +01:00
|
|
|
/**
|
2016-09-11 22:20:15 +02:00
|
|
|
* Author......: See docs/credits.txt
|
2015-12-04 15:47:52 +01:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2019-03-22 15:16:25 +01:00
|
|
|
#ifdef KERNEL_STATIC
|
2022-02-07 09:57:08 +01:00
|
|
|
#include M2S(INCLUDE_PATH/inc_vendor.h)
|
|
|
|
#include M2S(INCLUDE_PATH/inc_types.h)
|
|
|
|
#include M2S(INCLUDE_PATH/inc_platform.cl)
|
|
|
|
#include M2S(INCLUDE_PATH/inc_common.cl)
|
|
|
|
#include M2S(INCLUDE_PATH/inc_rp.h)
|
|
|
|
#include M2S(INCLUDE_PATH/inc_rp.cl)
|
|
|
|
#include M2S(INCLUDE_PATH/inc_amp.h)
|
2019-03-22 15:16:25 +01:00
|
|
|
#endif
|
2015-12-04 15:47:52 +01:00
|
|
|
|
2022-02-04 19:54:00 +01:00
|
|
|
KERNEL_FQ void amp (KERN_ATTR_AMP)
|
2015-12-04 15:47:52 +01:00
|
|
|
{
|
2017-08-19 16:39:22 +02:00
|
|
|
const u64 gid = get_global_id (0);
|
2015-12-04 15:47:52 +01:00
|
|
|
|
|
|
|
if (gid >= gid_max) return;
|
|
|
|
|
2017-06-17 17:57:30 +02:00
|
|
|
if (rules_buf[0].cmds[0] == RULE_OP_MANGLE_NOOP && rules_buf[0].cmds[1] == 0) return;
|
2016-09-14 17:40:39 +02:00
|
|
|
|
2018-02-05 17:18:58 +01:00
|
|
|
pw_t pw = pws_amp[gid];
|
2017-08-11 16:21:19 +02:00
|
|
|
|
2017-08-12 13:28:31 +02:00
|
|
|
pw.pw_len = apply_rules (rules_buf[0].cmds, pw.i, pw.pw_len);
|
2016-09-14 17:40:39 +02:00
|
|
|
|
2018-02-05 17:18:58 +01:00
|
|
|
pws[gid] = pw;
|
2015-12-04 15:47:52 +01:00
|
|
|
}
|