dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
|
|
/* Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. */
|
|
|
|
#ifndef MLX5_MACSEC_H
|
|
#define MLX5_MACSEC_H
|
|
|
|
#ifdef CONFIG_MLX5_MACSEC
|
|
struct mlx5_macsec_event_data {
|
|
struct mlx5_macsec_fs *macsec_fs;
|
|
void *macdev;
|
|
u32 fs_id;
|
|
bool is_tx;
|
|
};
|
|
|
|
int mlx5_macsec_add_roce_rule(void *macdev, const struct sockaddr *addr, u16 gid_idx,
|
|
struct list_head *tx_rules_list, struct list_head *rx_rules_list,
|
|
struct mlx5_macsec_fs *macsec_fs);
|
|
|
|
void mlx5_macsec_del_roce_rule(u16 gid_idx, struct mlx5_macsec_fs *macsec_fs,
|
|
struct list_head *tx_rules_list, struct list_head *rx_rules_list);
|
|
|
|
void mlx5_macsec_add_roce_sa_rules(u32 fs_id, const struct sockaddr *addr, u16 gid_idx,
|
|
struct list_head *tx_rules_list,
|
|
struct list_head *rx_rules_list,
|
|
struct mlx5_macsec_fs *macsec_fs, bool is_tx);
|
|
|
|
void mlx5_macsec_del_roce_sa_rules(u32 fs_id, struct mlx5_macsec_fs *macsec_fs,
|
|
struct list_head *tx_rules_list,
|
|
struct list_head *rx_rules_list, bool is_tx);
|
|
|
|
#endif
|
|
#endif /* MLX5_MACSEC_H */
|