Good evening, guys
i've followed this tutorial , its to create a simple fs
http://www.geocities.com/ravikiran_u...cles/rkfs.html
well, the source is quite outdate for my kernel 2.6.25.11 API
After correcting the code ,My fs module intialized and register filesystem successfully .
and cat /proc/filesystems have my fs name inside , with "nodev"
My problem is....
When i am trying to mount the fs (named "rkfs"), with following command,
mount -t rkfs none /mnt/rkfs_mount
(The command wrote in above tutorial, at final step)
the error was
mount: special device none does not exist
since it was a custom fs , so i have no idea how can i take some "device"
to making a mount
even i try create loopback device and mounted , it return "Segment fault"
Any ideas ?