search for: create_proc_entry

Displaying 10 results from an estimated 10 matches for "create_proc_entry".

2014 Jun 13
1
dahdi-linux 2.6.2 failing to compile with linux 3.13
...gle_open(file, dahdi_seq_show, PDE(inode)->data); ^ /usr/src/dahdi-linux-2.6.2/drivers/dahdi/dahdi-base.c: In function ?_dahdi_assign_span?: /usr/src/dahdi-linux-2.6.2/drivers/dahdi/dahdi-base.c:6945:3: error: implicit declaration of function ?create_proc_entry? [-Werror=implicit-function-declaration] span->proc_entry = create_proc_entry(tempfile, 0444, ^ /usr/src/dahdi-linux-2.6.2/drivers/dahdi/dahdi-base.c:6945:20: warning: assignment makes pointer from integer without a cast [enabled by default] span->proc_entry = create_proc_entry(tempf...
2007 Aug 31
2
sles10: installing module-binaries: "error: Failed dependencies: ksym(panic) .."
...eeded by lustre-modules-1.6.2-2.6.16_46_0.14_lustre.1.6.2bigsmp.i686 ksym(proc_symlink) = 1109102e is needed by lustre-modules-1.6.2-2.6.16_46_0.14_lustre.1.6.2bigsmp.i686 ksym(groups_free) = 111bcb2c is needed by lustre-modules-1.6.2-2.6.16_46_0.14_lustre.1.6.2bigsmp.i686 ksym(create_proc_entry) = 11653586 is needed by lustre-modules-1.6.2-2.6.16_46_0.14_lustre.1.6.2bigsmp.i686 ksym(putname) = 118f01ea is needed by lustre-modules-1.6.2-2.6.16_46_0.14_lustre.1.6.2bigsmp.i686 ksym(__kmalloc) = 12da5bb2 is needed by lustre-modules-1.6.2-2.6.16_46_0.14_lustre.1.6.2bigsmp.i686...
2007 Apr 18
1
[RFC, PATCH 21/24] i386 Vmi proc node
...annotations_operations = { + .open = proc_vmi_annotations_open, + .read = 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: linu...
2007 Apr 18
1
[RFC, PATCH 21/24] i386 Vmi proc node
...annotations_operations = { + .open = proc_vmi_annotations_open, + .read = 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: linu...
2013 May 29
0
DAHDI-Linux and DAHDI-Tools 2.7.0-rc1 Now Available
...s xpp: style - Remove 0/NULL static initializers xpp: style: convert __FUNCTION__ to __func__ xpp: style - remove eolspace Shaun Ruffell: xpp: Don't use create_proc_read_entry() dahdi_dynamic_ethmf: Don't use create_proc_read_entry() dahdi: Replace create_proc_entry() with proc_create_data() oct612x: Fix confusing compile error when kernel source is not present wcte12xp: Reset all the framer registers when switching linemodes. wcte12xp: Allow non-interrupting cards to unload faster. dahdi: Completely stop spans when unassigning....
2013 May 29
0
DAHDI-Linux and DAHDI-Tools 2.7.0-rc1 Now Available
...s xpp: style - Remove 0/NULL static initializers xpp: style: convert __FUNCTION__ to __func__ xpp: style - remove eolspace Shaun Ruffell: xpp: Don't use create_proc_read_entry() dahdi_dynamic_ethmf: Don't use create_proc_read_entry() dahdi: Replace create_proc_entry() with proc_create_data() oct612x: Fix confusing compile error when kernel source is not present wcte12xp: Reset all the framer registers when switching linemodes. wcte12xp: Allow non-interrupting cards to unload faster. dahdi: Completely stop spans when unassigning....
2013 Jun 07
0
DAHDI-Linux and DAHDI-Tools 2.7.0 Now Available
...p: style: convert __FUNCTION__ to __func__ xpp: style - remove eolspace Shaun Ruffell: wctc4xxp: Ensure the descriptors are zeroed out on start. xpp: Don't use create_proc_read_entry() dahdi_dynamic_ethmf: Don't use create_proc_read_entry() dahdi: Replace create_proc_entry() with proc_create_data() oct612x: Fix confusing compile error when kernel source is not present wcte12xp: Reset all the framer registers when switching linemodes. wcte12xp: Allow non-interrupting cards to unload faster. dahdi: Completely stop spans when unassigning....
2013 Jun 07
0
DAHDI-Linux and DAHDI-Tools 2.7.0 Now Available
...p: style: convert __FUNCTION__ to __func__ xpp: style - remove eolspace Shaun Ruffell: wctc4xxp: Ensure the descriptors are zeroed out on start. xpp: Don't use create_proc_read_entry() dahdi_dynamic_ethmf: Don't use create_proc_read_entry() dahdi: Replace create_proc_entry() with proc_create_data() oct612x: Fix confusing compile error when kernel source is not present wcte12xp: Reset all the framer registers when switching linemodes. wcte12xp: Allow non-interrupting cards to unload faster. dahdi: Completely stop spans when unassigning....
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