diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-09-09 13:10:27 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 14:03:44 -0700 |
commit | 334f485df85ac7736ebe14940bf0a059c5f26d7d (patch) | |
tree | 754e5528289048a7104f4c1b431cebc1df16e2ce /fs/fuse/Makefile | |
parent | d8a5ba45457e4a22aa39c939121efd7bb6c76672 (diff) | |
download | op-kernel-dev-334f485df85ac7736ebe14940bf0a059c5f26d7d.zip op-kernel-dev-334f485df85ac7736ebe14940bf0a059c5f26d7d.tar.gz |
[PATCH] FUSE - device functions
This adds the FUSE device handling functions.
This contains the following files:
o dev.c
- fuse device operations (read, write, release, poll)
- registers misc device
- support for sending requests to userspace
Signed-off-by: Miklos Szeredi <miklos@szeredi.hu>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/fuse/Makefile')
-rw-r--r-- | fs/fuse/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fuse/Makefile b/fs/fuse/Makefile index 9c3e4cc..21021c35 100644 --- a/fs/fuse/Makefile +++ b/fs/fuse/Makefile @@ -4,4 +4,4 @@ obj-$(CONFIG_FUSE_FS) += fuse.o -fuse-objs := inode.o +fuse-objs := dev.o inode.o |