[PATCH 6/7] Adding pipe support

Kevin Kirspel kevin-kirspel at idexx.com
Tue Dec 13 17:12:52 UTC 2016


---
 rtemsbsd/sys/fs/devfs/devfs_devs.c | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 mode change 100644 => 100755 rtemsbsd/sys/fs/devfs/devfs_devs.c

diff --git a/rtemsbsd/sys/fs/devfs/devfs_devs.c b/rtemsbsd/sys/fs/devfs/devfs_devs.c
old mode 100644
new mode 100755
index a38bb4d..75c9e27
--- a/rtemsbsd/sys/fs/devfs/devfs_devs.c
+++ b/rtemsbsd/sys/fs/devfs/devfs_devs.c
@@ -33,6 +33,7 @@
 
 #include <sys/types.h>
 #include <sys/conf.h>
+#include <sys/kernel.h>
 #include <sys/file.h>
 #include <sys/malloc.h>
 #include <stdlib.h>
@@ -45,8 +46,12 @@
 
 #include <rtems/imfs.h>
 
+#define DEVFS_ROOTINO 2
+
 const char rtems_cdev_directory[] = RTEMS_CDEV_DIRECTORY;
 
+struct unrhdr *devfs_inos;
+
 static struct cdev *
 devfs_imfs_get_context_by_iop(rtems_libio_t *iop)
 {
@@ -325,3 +330,27 @@ devfs_dev_exists(const char *name)
 	else
 		return 0;
 }
+
+ino_t
+devfs_alloc_cdp_inode(void)
+{
+
+	return (alloc_unr(devfs_inos));
+}
+
+void
+devfs_free_cdp_inode(ino_t ino)
+{
+
+	if (ino > 0)
+		free_unr(devfs_inos, ino);
+}
+
+static void
+	devfs_devs_init(void *junk __unused)
+{
+
+	devfs_inos = new_unrhdr(DEVFS_ROOTINO + 1, INT_MAX, &devmtx);
+}
+
+SYSINIT(devfs_devs, SI_SUB_DEVFS, SI_ORDER_FIRST, devfs_devs_init, NULL);
-- 
1.9.1




More information about the devel mailing list