From: Juergen Kilb <J.Kilb@phytec.de>
To: barebox@lists.infradead.org
Subject: [PATCH] Add /dev/urandom device.
Date: Thu, 19 Jul 2012 10:33:49 +0200 [thread overview]
Message-ID: <1342686830-30950-1-git-send-email-J.Kilb@phytec.de> (raw)
Nice for testing purposes.
Signed-off-by: Juergen Kilb <J.Kilb@phytec.de>
---
commands/stddev.c | 39 +++++++++++++++++++++++++++++++++++++++
1 files changed, 39 insertions(+), 0 deletions(-)
diff --git a/commands/stddev.c b/commands/stddev.c
index 098aea8..b807df6 100644
--- a/commands/stddev.c
+++ b/commands/stddev.c
@@ -20,7 +20,9 @@
*/
#include <common.h>
+#include <clock.h>
#include <init.h>
+#include <stdlib.h>
static ssize_t zero_read(struct cdev *cdev, void *buf, size_t count, loff_t offset, ulong flags)
{
@@ -104,3 +106,40 @@ static int null_init(void)
}
device_initcall(null_init);
+
+static ssize_t urandom_read(struct cdev *cdev, void *buf, size_t count, loff_t offset, ulong flags)
+{
+ size_t i;
+ unsigned int *buffer;
+
+ buffer = (unsigned int *) buf;
+
+ for (i = 0; i < (count / sizeof(size_t)); i++)
+ buffer[i] = rand() | rand() << 16;
+
+ return count;
+}
+
+static struct file_operations urandomops = {
+ .read = urandom_read,
+ .lseek = dev_lseek_default,
+};
+
+static int urandom_init(void)
+{
+ struct cdev *cdev;
+
+ cdev = xzalloc(sizeof(*cdev));
+
+ cdev->name = "urandom";
+ cdev->size = ~0;
+ cdev->ops = &urandomops;
+
+ devfs_create(cdev);
+
+ srand(get_time_ns());
+
+ return 0;
+}
+
+device_initcall(urandom_init);
--
1.7.0.4
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2012-07-19 8:34 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-19 8:33 Juergen Kilb [this message]
2012-07-19 8:33 ` [PATCH] add possibility to mark blocks as bad during write Juergen Kilb
2012-07-19 14:14 ` Jean-Christophe PLAGNIOL-VILLARD
2012-07-27 8:30 ` [PATCH] Add /dev/urandom device Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1342686830-30950-1-git-send-email-J.Kilb@phytec.de \
--to=j.kilb@phytec.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox