search for: proc_fops

Displaying 5 results from an estimated 5 matches for "proc_fops".

2007 Apr 18
1
[RFC, PATCH 21/24] i386 Vmi proc node
...seq_read, + .llseek = seq_lseek, + .release = single_release, +}; + +static int __init proc_vmi_init(void) +{ + struct proc_dir_entry *e; + + proc_vmi_root = proc_mkdir("vmi", NULL); + if (proc_vmi_root) { + e = create_proc_entry("info", 0, proc_vmi_root); + if (e) + e->proc_fops = &proc_vmi_info_operations; + e = create_proc_entry("annotations", 0, proc_vmi_root); + if (e) + e->proc_fops = &proc_vmi_annotations_operations; + } + return 0; +} + +__initcall(proc_vmi_init); Index: linux-2.6.16-rc5/arch/i386/mach-vmi/Makefile ==========================...
2007 Apr 18
1
[RFC, PATCH 21/24] i386 Vmi proc node
...seq_read, + .llseek = seq_lseek, + .release = single_release, +}; + +static int __init proc_vmi_init(void) +{ + struct proc_dir_entry *e; + + proc_vmi_root = proc_mkdir("vmi", NULL); + if (proc_vmi_root) { + e = create_proc_entry("info", 0, proc_vmi_root); + if (e) + e->proc_fops = &proc_vmi_info_operations; + e = create_proc_entry("annotations", 0, proc_vmi_root); + if (e) + e->proc_fops = &proc_vmi_annotations_operations; + } + return 0; +} + +__initcall(proc_vmi_init); Index: linux-2.6.16-rc5/arch/i386/mach-vmi/Makefile ==========================...
2014 Jun 13
1
dahdi-linux 2.6.2 failing to compile with linux 3.13
...dahdi/dahdi-base.c:6952:19: error: dereferencing pointer to incomplete type span->proc_entry->data = (void *)(long)span->spanno; ^ /usr/src/dahdi-linux-2.6.2/drivers/dahdi/dahdi-base.c:6953:19: error: dereferencing pointer to incomplete type span->proc_entry->proc_fops = &dahdi_proc_ops; ^ /usr/src/dahdi-linux-2.6.2/drivers/dahdi/dahdi-base.c: In function ?_dahdi_unassign_span?: /usr/src/dahdi-linux-2.6.2/drivers/dahdi/dahdi-base.c:7137:37: error: dereferencing pointer to incomplete type remove_proc_entry(span->proc_entry->name, ro...
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths