2018-02-10 07:52:03 +00:00
|
|
|
{ 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
|
2020-04-05 14:30:08 +01:00
|
|
|
RDMA interfaces will be named rxe_<interface>.
|
2020-02-28 09:06:37 +00:00
|
|
|
UDP port 4791 must be open on the respective ethernet interfaces.
|
2018-02-10 07:52:03 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
###### 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;
|
2020-02-28 09:06:37 +00:00
|
|
|
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;
|
2018-02-10 07:52:03 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|