/* * Copyright 2013, Michael Ellerman, IBM Corporation. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */ #define pr_fmt(fmt) "pseries-rng: " fmt #include <linux/kernel.h> #include <linux/of.h> #include <asm/archrandom.h> #include <asm/machdep.h> #include <asm/plpar_wrappers.h>
static int pseries_get_random_long(unsigned long *v) { unsigned long retbuf[PLPAR_HCALL_BUFSIZE]; if (plpar_hcall(H_RANDOM, retbuf) == H_SUCCESS) { *v = retbuf[0]; return 1; } return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michael Ellerman | 45 | 100.00% | 1 | 100.00% |
Total | 45 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Michael Ellerman | 47 | 97.92% | 1 | 50.00% |
Paul Mackerras | 1 | 2.08% | 1 | 50.00% |
Total | 48 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Michael Ellerman | 122 | 99.19% | 3 | 75.00% |
Paul Mackerras | 1 | 0.81% | 1 | 25.00% |
Total | 123 | 100.00% | 4 | 100.00% |