[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Minios-devel] [UNIKRAFT PATCH v2] lib/ukswrand: Guard struct uk_swrand definition
Hi Roxana, thanks for the update.Could you send these changes together with the previous patch as a single one (lib/ukwsrand: Make uk_swrand structure public)? The v2 means that there is a second and self-contained version of a patch that was published before. Cheers, Simon On 19.07.2018 11:23, Roxana Nicolescu wrote: Define uk_swrand struct depending on what algorithm is used. For now, multiply with carry is the only one. --- lib/ukswrand/include/uk/swrand.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/ukswrand/include/uk/swrand.h b/lib/ukswrand/include/uk/swrand.h index 64f88f1..9a93e87 100644 --- a/lib/ukswrand/include/uk/swrand.h +++ b/lib/ukswrand/include/uk/swrand.h @@ -37,14 +37,18 @@#include <uk/arch/types.h>#include <uk/plat/lcpu.h> +#include <uk/config.h> + #ifdef __cplusplus extern "C" { #endifstruct uk_swrand {+#ifdef CONFIG_LIBUKSWRAND_MWC __u32 Q[4096]; __u32 c; __u32 i; +#endif };extern struct uk_swrand uk_swrand_def; _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |