mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
502073b09a
This caused an opening xml tag in our docbook pipeline and failed the manual build.
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.networking.rxe;
|
|
|
|
in {
|
|
###### interface
|
|
|
|
options = {
|
|
networking.rxe = {
|
|
enable = mkEnableOption "RDMA over converged ethernet";
|
|
interfaces = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
example = [ "eth0" ];
|
|
description = ''
|
|
Enable RDMA on the listed interfaces. The corresponding virtual
|
|
RDMA interfaces will be named rxe_<interface>.
|
|
UDP port 4791 must be open on the respective ethernet interfaces.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.rxe = {
|
|
description = "RoCE interfaces";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "systemd-modules-load.service" "network-online.target" ];
|
|
wants = [ "network-pre.target" ];
|
|
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
RemainAfterExit = true;
|
|
ExecStart = map ( x:
|
|
"${pkgs.iproute}/bin/rdma link add rxe_${x} type rxe netdev ${x}"
|
|
) cfg.interfaces;
|
|
|
|
ExecStop = map ( x:
|
|
"${pkgs.iproute}/bin/rdma link delete rxe_${x}"
|
|
) cfg.interfaces;
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|