raid: fix function descriptions

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
This commit is contained in:
Pablo de Lara 2023-09-26 15:24:40 +01:00
parent 307d737bf2
commit bf8f2a25ba
2 changed files with 3 additions and 5 deletions

View File

@ -30,8 +30,7 @@
;;; Optimized pq of N source vectors using SSE3
;;; int pq_check_sse(int vects, int len, void **array)
;;; Generates P+Q parity vector from N (vects-2) sources in array of pointers
;;; (**array). Last two pointers are the P and Q destinations respectively.
;;; Checks that array of N sources, P and Q are consistent across all vectors in **array
;;; Vectors must be aligned to 16 bytes. Length must be 16 byte aligned.
%include "reg_sizes.asm"

View File

@ -28,10 +28,9 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Optimized xor of N source vectors using SSE
;;; int xor_gen_sse(int vects, int len, void **array)
;;; int xor_check_sse(int vects, int len, void **array)
;;; Generates xor parity vector from N (vects-1) sources in array of pointers
;;; (**array). Last pointer is the dest.
;;; Checks that array has XOR parity sum of 0 across all vectors in **array.
;;; Vectors must be aligned to 16 bytes. Length can be any value.
%include "reg_sizes.asm"