2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
5 * Ported the filesystem routines to 2.5.
6 * 2003-02-10 Petr Baudis <pasky@ucw.cz>
9 #include <linux/stddef.h>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/slab.h>
14 #include <linux/pagemap.h>
15 #include <linux/blkdev.h>
16 #include <linux/list.h>
17 #include <linux/statfs.h>
18 #include <linux/kdev_t.h>
19 #include <asm/uaccess.h>
21 #include "kern_util.h"
23 #include "user_util.h"
26 struct hostfs_inode_info
{
30 struct inode vfs_inode
;
33 static inline struct hostfs_inode_info
*HOSTFS_I(struct inode
*inode
)
35 return(list_entry(inode
, struct hostfs_inode_info
, vfs_inode
));
38 #define FILE_HOSTFS_I(file) HOSTFS_I((file)->f_dentry->d_inode)
40 int hostfs_d_delete(struct dentry
*dentry
)
45 struct dentry_operations hostfs_dentry_ops
= {
46 .d_delete
= hostfs_d_delete
,
49 /* Changed in hostfs_args before the kernel starts running */
50 static char *root_ino
= "/";
51 static int append
= 0;
53 #define HOSTFS_SUPER_MAGIC 0x00c0ffee
55 static struct inode_operations hostfs_iops
;
56 static struct inode_operations hostfs_dir_iops
;
57 static struct address_space_operations hostfs_link_aops
;
60 static int __init
hostfs_args(char *options
, int *add
)
64 ptr
= strchr(options
, ',');
72 ptr
= strchr(options
, ',');
76 if(!strcmp(options
, "append"))
78 else printf("hostfs_args - unsupported option - %s\n",
86 __uml_setup("hostfs=", hostfs_args
,
87 "hostfs=<root dir>,<flags>,...\n"
88 " This is used to set hostfs parameters. The root directory argument\n"
89 " is used to confine all hostfs mounts to within the specified directory\n"
90 " tree on the host. If this isn't specified, then a user inside UML can\n"
91 " mount anything on the host that's accessible to the user that's running\n"
93 " The only flag currently supported is 'append', which specifies that all\n"
94 " files opened by hostfs will be opened in append mode.\n\n"
98 static char *dentry_name(struct dentry
*dentry
, int extra
)
100 struct dentry
*parent
;
106 while(parent
->d_parent
!= parent
){
107 len
+= parent
->d_name
.len
+ 1;
108 parent
= parent
->d_parent
;
111 root
= HOSTFS_I(parent
->d_inode
)->host_filename
;
113 name
= kmalloc(len
+ extra
+ 1, GFP_KERNEL
);
114 if(name
== NULL
) return(NULL
);
118 while(parent
->d_parent
!= parent
){
119 len
-= parent
->d_name
.len
+ 1;
121 strncpy(&name
[len
+ 1], parent
->d_name
.name
,
123 parent
= parent
->d_parent
;
125 strncpy(name
, root
, strlen(root
));
129 static char *inode_name(struct inode
*ino
, int extra
)
131 struct dentry
*dentry
;
133 dentry
= list_entry(ino
->i_dentry
.next
, struct dentry
, d_alias
);
134 return(dentry_name(dentry
, extra
));
137 static int read_name(struct inode
*ino
, char *name
)
139 /* The non-int inode fields are copied into ints by stat_file and
140 * then copied into the inode because passing the actual pointers
141 * in and having them treated as int * breaks on big-endian machines
144 int i_mode
, i_nlink
, i_blksize
;
145 unsigned long long i_size
;
146 unsigned long long i_ino
;
147 unsigned long long i_blocks
;
149 err
= stat_file(name
, &i_ino
, &i_mode
, &i_nlink
, &ino
->i_uid
,
150 &ino
->i_gid
, &i_size
, &ino
->i_atime
, &ino
->i_mtime
,
151 &ino
->i_ctime
, &i_blksize
, &i_blocks
);
156 ino
->i_mode
= i_mode
;
157 ino
->i_nlink
= i_nlink
;
158 ino
->i_size
= i_size
;
159 ino
->i_blksize
= i_blksize
;
160 ino
->i_blocks
= i_blocks
;
164 static char *follow_link(char *link
)
167 char *name
, *resolved
, *end
;
172 name
= kmalloc(len
, GFP_KERNEL
);
176 n
= do_readlink(link
, name
, len
);
188 end
= strrchr(link
, '/');
193 len
= strlen(link
) + strlen(name
) + 1;
195 resolved
= kmalloc(len
, GFP_KERNEL
);
196 if(resolved
== NULL
){
201 sprintf(resolved
, "%s%s", link
, name
);
212 static int read_inode(struct inode
*ino
)
217 /* Unfortunately, we are called from iget() when we don't have a dentry
220 if(list_empty(&ino
->i_dentry
))
224 name
= inode_name(ino
, 0);
228 if(file_type(name
, NULL
, NULL
) == OS_TYPE_SYMLINK
){
229 name
= follow_link(name
);
236 err
= read_name(ino
, name
);
242 int hostfs_statfs(struct super_block
*sb
, struct kstatfs
*sf
)
244 /* do_statfs uses struct statfs64 internally, but the linux kernel
245 * struct statfs still has 32-bit versions for most of these fields,
246 * so we convert them here
255 err
= do_statfs(HOSTFS_I(sb
->s_root
->d_inode
)->host_filename
,
256 &sf
->f_bsize
, &f_blocks
, &f_bfree
, &f_bavail
, &f_files
,
257 &f_ffree
, &sf
->f_fsid
, sizeof(sf
->f_fsid
),
258 &sf
->f_namelen
, sf
->f_spare
);
260 sf
->f_blocks
= f_blocks
;
261 sf
->f_bfree
= f_bfree
;
262 sf
->f_bavail
= f_bavail
;
263 sf
->f_files
= f_files
;
264 sf
->f_ffree
= f_ffree
;
265 sf
->f_type
= HOSTFS_SUPER_MAGIC
;
269 static struct inode
*hostfs_alloc_inode(struct super_block
*sb
)
271 struct hostfs_inode_info
*hi
;
273 hi
= kmalloc(sizeof(*hi
), GFP_KERNEL
);
277 *hi
= ((struct hostfs_inode_info
) { .host_filename
= NULL
,
280 inode_init_once(&hi
->vfs_inode
);
281 return(&hi
->vfs_inode
);
284 static void hostfs_delete_inode(struct inode
*inode
)
286 truncate_inode_pages(&inode
->i_data
, 0);
287 if(HOSTFS_I(inode
)->fd
!= -1) {
288 close_file(&HOSTFS_I(inode
)->fd
);
289 HOSTFS_I(inode
)->fd
= -1;
294 static void hostfs_destroy_inode(struct inode
*inode
)
296 kfree(HOSTFS_I(inode
)->host_filename
);
298 /*XXX: This should not happen, probably. The check is here for
299 * additional safety.*/
300 if(HOSTFS_I(inode
)->fd
!= -1) {
301 close_file(&HOSTFS_I(inode
)->fd
);
302 printk(KERN_DEBUG
"Closing host fd in .destroy_inode\n");
305 kfree(HOSTFS_I(inode
));
308 static void hostfs_read_inode(struct inode
*inode
)
313 static struct super_operations hostfs_sbops
= {
314 .alloc_inode
= hostfs_alloc_inode
,
315 .drop_inode
= generic_delete_inode
,
316 .delete_inode
= hostfs_delete_inode
,
317 .destroy_inode
= hostfs_destroy_inode
,
318 .read_inode
= hostfs_read_inode
,
319 .statfs
= hostfs_statfs
,
322 int hostfs_readdir(struct file
*file
, void *ent
, filldir_t filldir
)
326 unsigned long long next
, ino
;
329 name
= dentry_name(file
->f_dentry
, 0);
330 if(name
== NULL
) return(-ENOMEM
);
331 dir
= open_dir(name
, &error
);
333 if(dir
== NULL
) return(-error
);
335 while((name
= read_dir(dir
, &next
, &ino
, &len
)) != NULL
){
336 error
= (*filldir
)(ent
, name
, len
, file
->f_pos
,
345 int hostfs_file_open(struct inode
*ino
, struct file
*file
)
348 int mode
= 0, r
= 0, w
= 0, fd
;
350 mode
= file
->f_mode
& (FMODE_READ
| FMODE_WRITE
);
351 if((mode
& HOSTFS_I(ino
)->mode
) == mode
)
354 /* The file may already have been opened, but with the wrong access,
355 * so this resets things and reopens the file with the new access.
357 if(HOSTFS_I(ino
)->fd
!= -1){
358 close_file(&HOSTFS_I(ino
)->fd
);
359 HOSTFS_I(ino
)->fd
= -1;
362 HOSTFS_I(ino
)->mode
|= mode
;
363 if(HOSTFS_I(ino
)->mode
& FMODE_READ
)
365 if(HOSTFS_I(ino
)->mode
& FMODE_WRITE
)
370 name
= dentry_name(file
->f_dentry
, 0);
374 fd
= open_file(name
, r
, w
, append
);
376 if(fd
< 0) return(fd
);
377 FILE_HOSTFS_I(file
)->fd
= fd
;
382 int hostfs_fsync(struct file
*file
, struct dentry
*dentry
, int datasync
)
384 return fsync_file(HOSTFS_I(dentry
->d_inode
)->fd
, datasync
);
387 static struct file_operations hostfs_file_fops
= {
388 .llseek
= generic_file_llseek
,
389 .read
= generic_file_read
,
390 .sendfile
= generic_file_sendfile
,
391 .aio_read
= generic_file_aio_read
,
392 .aio_write
= generic_file_aio_write
,
393 .readv
= generic_file_readv
,
394 .writev
= generic_file_writev
,
395 .write
= generic_file_write
,
396 .mmap
= generic_file_mmap
,
397 .open
= hostfs_file_open
,
399 .fsync
= hostfs_fsync
,
402 static struct file_operations hostfs_dir_fops
= {
403 .llseek
= generic_file_llseek
,
404 .readdir
= hostfs_readdir
,
405 .read
= generic_read_dir
,
408 int hostfs_writepage(struct page
*page
, struct writeback_control
*wbc
)
410 struct address_space
*mapping
= page
->mapping
;
411 struct inode
*inode
= mapping
->host
;
413 unsigned long long base
;
414 int count
= PAGE_CACHE_SIZE
;
415 int end_index
= inode
->i_size
>> PAGE_CACHE_SHIFT
;
418 if (page
->index
>= end_index
)
419 count
= inode
->i_size
& (PAGE_CACHE_SIZE
-1);
422 base
= ((unsigned long long) page
->index
) << PAGE_CACHE_SHIFT
;
424 err
= write_file(HOSTFS_I(inode
)->fd
, &base
, buffer
, count
);
426 ClearPageUptodate(page
);
430 if (base
> inode
->i_size
)
431 inode
->i_size
= base
;
434 ClearPageError(page
);
444 int hostfs_readpage(struct file
*file
, struct page
*page
)
450 start
= (long long) page
->index
<< PAGE_CACHE_SHIFT
;
452 err
= read_file(FILE_HOSTFS_I(file
)->fd
, &start
, buffer
,
454 if(err
< 0) goto out
;
456 memset(&buffer
[err
], 0, PAGE_CACHE_SIZE
- err
);
458 flush_dcache_page(page
);
459 SetPageUptodate(page
);
460 if (PageError(page
)) ClearPageError(page
);
468 int hostfs_prepare_write(struct file
*file
, struct page
*page
,
469 unsigned int from
, unsigned int to
)
472 long long start
, tmp
;
475 start
= (long long) page
->index
<< PAGE_CACHE_SHIFT
;
479 err
= read_file(FILE_HOSTFS_I(file
)->fd
, &tmp
, buffer
,
481 if(err
< 0) goto out
;
483 if(to
!= PAGE_CACHE_SIZE
){
485 err
= read_file(FILE_HOSTFS_I(file
)->fd
, &start
, buffer
+ to
,
486 PAGE_CACHE_SIZE
- to
);
487 if(err
< 0) goto out
;
495 int hostfs_commit_write(struct file
*file
, struct page
*page
, unsigned from
,
498 struct address_space
*mapping
= page
->mapping
;
499 struct inode
*inode
= mapping
->host
;
504 start
= (((long long) page
->index
) << PAGE_CACHE_SHIFT
) + from
;
506 err
= write_file(FILE_HOSTFS_I(file
)->fd
, &start
, buffer
+ from
,
510 /* Actually, if !err, write_file has added to-from to start, so, despite
511 * the appearance, we are comparing i_size against the _last_ written
512 * location, as we should. */
514 if(!err
&& (start
> inode
->i_size
))
515 inode
->i_size
= start
;
521 static struct address_space_operations hostfs_aops
= {
522 .writepage
= hostfs_writepage
,
523 .readpage
= hostfs_readpage
,
524 .set_page_dirty
= __set_page_dirty_nobuffers
,
525 .prepare_write
= hostfs_prepare_write
,
526 .commit_write
= hostfs_commit_write
529 static int init_inode(struct inode
*inode
, struct dentry
*dentry
)
532 int type
, err
= -ENOMEM
;
537 name
= dentry_name(dentry
, 0);
540 type
= file_type(name
, &maj
, &min
);
541 /*Reencode maj and min with the kernel encoding.*/
542 rdev
= MKDEV(maj
, min
);
545 else type
= OS_TYPE_DIR
;
548 if(type
== OS_TYPE_SYMLINK
)
549 inode
->i_op
= &page_symlink_inode_operations
;
550 else if(type
== OS_TYPE_DIR
)
551 inode
->i_op
= &hostfs_dir_iops
;
552 else inode
->i_op
= &hostfs_iops
;
554 if(type
== OS_TYPE_DIR
) inode
->i_fop
= &hostfs_dir_fops
;
555 else inode
->i_fop
= &hostfs_file_fops
;
557 if(type
== OS_TYPE_SYMLINK
)
558 inode
->i_mapping
->a_ops
= &hostfs_link_aops
;
559 else inode
->i_mapping
->a_ops
= &hostfs_aops
;
562 case OS_TYPE_CHARDEV
:
563 init_special_inode(inode
, S_IFCHR
, rdev
);
565 case OS_TYPE_BLOCKDEV
:
566 init_special_inode(inode
, S_IFBLK
, rdev
);
569 init_special_inode(inode
, S_IFIFO
, 0);
572 init_special_inode(inode
, S_IFSOCK
, 0);
579 int hostfs_create(struct inode
*dir
, struct dentry
*dentry
, int mode
,
580 struct nameidata
*nd
)
587 inode
= iget(dir
->i_sb
, 0);
588 if(inode
== NULL
) goto out
;
590 error
= init_inode(inode
, dentry
);
595 name
= dentry_name(dentry
, 0);
599 fd
= file_create(name
,
600 mode
& S_IRUSR
, mode
& S_IWUSR
, mode
& S_IXUSR
,
601 mode
& S_IRGRP
, mode
& S_IWGRP
, mode
& S_IXGRP
,
602 mode
& S_IROTH
, mode
& S_IWOTH
, mode
& S_IXOTH
);
605 else error
= read_name(inode
, name
);
611 HOSTFS_I(inode
)->fd
= fd
;
612 HOSTFS_I(inode
)->mode
= FMODE_READ
| FMODE_WRITE
;
613 d_instantiate(dentry
, inode
);
622 struct dentry
*hostfs_lookup(struct inode
*ino
, struct dentry
*dentry
,
623 struct nameidata
*nd
)
630 inode
= iget(ino
->i_sb
, 0);
634 err
= init_inode(inode
, dentry
);
639 name
= dentry_name(dentry
, 0);
643 err
= read_name(inode
, name
);
652 d_add(dentry
, inode
);
653 dentry
->d_op
= &hostfs_dentry_ops
;
659 return(ERR_PTR(err
));
662 static char *inode_dentry_name(struct inode
*ino
, struct dentry
*dentry
)
667 file
= inode_name(ino
, dentry
->d_name
.len
+ 1);
668 if(file
== NULL
) return(NULL
);
671 strncat(file
, dentry
->d_name
.name
, dentry
->d_name
.len
);
672 file
[len
+ dentry
->d_name
.len
] = '\0';
676 int hostfs_link(struct dentry
*to
, struct inode
*ino
, struct dentry
*from
)
678 char *from_name
, *to_name
;
681 if((from_name
= inode_dentry_name(ino
, from
)) == NULL
)
683 to_name
= dentry_name(to
, 0);
688 err
= link_file(to_name
, from_name
);
694 int hostfs_unlink(struct inode
*ino
, struct dentry
*dentry
)
699 if((file
= inode_dentry_name(ino
, dentry
)) == NULL
) return(-ENOMEM
);
703 err
= unlink_file(file
);
708 int hostfs_symlink(struct inode
*ino
, struct dentry
*dentry
, const char *to
)
713 if((file
= inode_dentry_name(ino
, dentry
)) == NULL
) return(-ENOMEM
);
714 err
= make_symlink(file
, to
);
719 int hostfs_mkdir(struct inode
*ino
, struct dentry
*dentry
, int mode
)
724 if((file
= inode_dentry_name(ino
, dentry
)) == NULL
) return(-ENOMEM
);
725 err
= do_mkdir(file
, mode
);
730 int hostfs_rmdir(struct inode
*ino
, struct dentry
*dentry
)
735 if((file
= inode_dentry_name(ino
, dentry
)) == NULL
) return(-ENOMEM
);
736 err
= do_rmdir(file
);
741 int hostfs_mknod(struct inode
*dir
, struct dentry
*dentry
, int mode
, dev_t dev
)
747 inode
= iget(dir
->i_sb
, 0);
751 err
= init_inode(inode
, dentry
);
756 name
= dentry_name(dentry
, 0);
760 init_special_inode(inode
, mode
, dev
);
761 err
= do_mknod(name
, mode
, dev
);
765 err
= read_name(inode
, name
);
770 d_instantiate(dentry
, inode
);
781 int hostfs_rename(struct inode
*from_ino
, struct dentry
*from
,
782 struct inode
*to_ino
, struct dentry
*to
)
784 char *from_name
, *to_name
;
787 if((from_name
= inode_dentry_name(from_ino
, from
)) == NULL
)
789 if((to_name
= inode_dentry_name(to_ino
, to
)) == NULL
){
793 err
= rename_file(from_name
, to_name
);
799 int hostfs_permission(struct inode
*ino
, int desired
, struct nameidata
*nd
)
802 int r
= 0, w
= 0, x
= 0, err
;
804 if (desired
& MAY_READ
) r
= 1;
805 if (desired
& MAY_WRITE
) w
= 1;
806 if (desired
& MAY_EXEC
) x
= 1;
807 name
= inode_name(ino
, 0);
808 if (name
== NULL
) return(-ENOMEM
);
810 if (S_ISCHR(ino
->i_mode
) || S_ISBLK(ino
->i_mode
) ||
811 S_ISFIFO(ino
->i_mode
) || S_ISSOCK(ino
->i_mode
))
814 err
= access_file(name
, r
, w
, x
);
817 err
= generic_permission(ino
, desired
, NULL
);
821 int hostfs_setattr(struct dentry
*dentry
, struct iattr
*attr
)
823 struct hostfs_iattr attrs
;
827 err
= inode_change_ok(dentry
->d_inode
, attr
);
832 attr
->ia_valid
&= ~ATTR_SIZE
;
835 if(attr
->ia_valid
& ATTR_MODE
){
836 attrs
.ia_valid
|= HOSTFS_ATTR_MODE
;
837 attrs
.ia_mode
= attr
->ia_mode
;
839 if(attr
->ia_valid
& ATTR_UID
){
840 attrs
.ia_valid
|= HOSTFS_ATTR_UID
;
841 attrs
.ia_uid
= attr
->ia_uid
;
843 if(attr
->ia_valid
& ATTR_GID
){
844 attrs
.ia_valid
|= HOSTFS_ATTR_GID
;
845 attrs
.ia_gid
= attr
->ia_gid
;
847 if(attr
->ia_valid
& ATTR_SIZE
){
848 attrs
.ia_valid
|= HOSTFS_ATTR_SIZE
;
849 attrs
.ia_size
= attr
->ia_size
;
851 if(attr
->ia_valid
& ATTR_ATIME
){
852 attrs
.ia_valid
|= HOSTFS_ATTR_ATIME
;
853 attrs
.ia_atime
= attr
->ia_atime
;
855 if(attr
->ia_valid
& ATTR_MTIME
){
856 attrs
.ia_valid
|= HOSTFS_ATTR_MTIME
;
857 attrs
.ia_mtime
= attr
->ia_mtime
;
859 if(attr
->ia_valid
& ATTR_CTIME
){
860 attrs
.ia_valid
|= HOSTFS_ATTR_CTIME
;
861 attrs
.ia_ctime
= attr
->ia_ctime
;
863 if(attr
->ia_valid
& ATTR_ATIME_SET
){
864 attrs
.ia_valid
|= HOSTFS_ATTR_ATIME_SET
;
866 if(attr
->ia_valid
& ATTR_MTIME_SET
){
867 attrs
.ia_valid
|= HOSTFS_ATTR_MTIME_SET
;
869 name
= dentry_name(dentry
, 0);
870 if(name
== NULL
) return(-ENOMEM
);
871 err
= set_attr(name
, &attrs
);
876 return(inode_setattr(dentry
->d_inode
, attr
));
879 int hostfs_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
,
882 generic_fillattr(dentry
->d_inode
, stat
);
886 static struct inode_operations hostfs_iops
= {
887 .create
= hostfs_create
,
889 .unlink
= hostfs_unlink
,
890 .symlink
= hostfs_symlink
,
891 .mkdir
= hostfs_mkdir
,
892 .rmdir
= hostfs_rmdir
,
893 .mknod
= hostfs_mknod
,
894 .rename
= hostfs_rename
,
895 .permission
= hostfs_permission
,
896 .setattr
= hostfs_setattr
,
897 .getattr
= hostfs_getattr
,
900 static struct inode_operations hostfs_dir_iops
= {
901 .create
= hostfs_create
,
902 .lookup
= hostfs_lookup
,
904 .unlink
= hostfs_unlink
,
905 .symlink
= hostfs_symlink
,
906 .mkdir
= hostfs_mkdir
,
907 .rmdir
= hostfs_rmdir
,
908 .mknod
= hostfs_mknod
,
909 .rename
= hostfs_rename
,
910 .permission
= hostfs_permission
,
911 .setattr
= hostfs_setattr
,
912 .getattr
= hostfs_getattr
,
915 int hostfs_link_readpage(struct file
*file
, struct page
*page
)
921 name
= inode_name(page
->mapping
->host
, 0);
922 if(name
== NULL
) return(-ENOMEM
);
923 err
= do_readlink(name
, buffer
, PAGE_CACHE_SIZE
);
925 if(err
== PAGE_CACHE_SIZE
)
928 flush_dcache_page(page
);
929 SetPageUptodate(page
);
930 if (PageError(page
)) ClearPageError(page
);
938 static struct address_space_operations hostfs_link_aops
= {
939 .readpage
= hostfs_link_readpage
,
942 static int hostfs_fill_sb_common(struct super_block
*sb
, void *d
, int silent
)
944 struct inode
*root_inode
;
945 char *name
, *data
= d
;
948 sb
->s_blocksize
= 1024;
949 sb
->s_blocksize_bits
= 10;
950 sb
->s_magic
= HOSTFS_SUPER_MAGIC
;
951 sb
->s_op
= &hostfs_sbops
;
953 if((data
== NULL
) || (*data
== '\0'))
957 name
= kmalloc(strlen(data
) + 1, GFP_KERNEL
);
963 root_inode
= iget(sb
, 0);
964 if(root_inode
== NULL
)
967 err
= init_inode(root_inode
, NULL
);
971 HOSTFS_I(root_inode
)->host_filename
= name
;
974 sb
->s_root
= d_alloc_root(root_inode
);
975 if(sb
->s_root
== NULL
)
978 err
= read_inode(root_inode
);
980 /* No iput in this case because the dput does that for us */
996 static struct super_block
*hostfs_read_sb(struct file_system_type
*type
,
997 int flags
, const char *dev_name
,
1000 return(get_sb_nodev(type
, flags
, data
, hostfs_fill_sb_common
));
1003 static struct file_system_type hostfs_type
= {
1004 .owner
= THIS_MODULE
,
1006 .get_sb
= hostfs_read_sb
,
1007 .kill_sb
= kill_anon_super
,
1011 static int __init
init_hostfs(void)
1013 return(register_filesystem(&hostfs_type
));
1016 static void __exit
exit_hostfs(void)
1018 unregister_filesystem(&hostfs_type
);
1021 module_init(init_hostfs
)
1022 module_exit(exit_hostfs
)
1023 MODULE_LICENSE("GPL");
1026 * Overrides for Emacs so that we follow Linus's tabbing style.
1027 * Emacs will notice this stuff at the end of the file and automatically
1028 * adjust the settings for this buffer only. This must remain at the end
1030 * ---------------------------------------------------------------------------
1032 * c-file-style: "linux"