Displaying 5 results from an estimated 5 matches for "old_buf".
Did you mean:
log_buf
2007 Jul 29
0
Asterisk 1.4.X support for Solaris 10?
..._va(struct ast_dynamic_str **buf, size_t
max_len,
struct ast_threadstorage *ts, int append, const char *fmt,
va_list ap)
{
int res;
int offset = (append && (*buf)->len) ? strlen((*buf)->str) : 0;
#if defined(DEBUG_THREADLOCALS)
struct ast_dynamic_str *old_buf = *buf;
#endif /* defined(DEBUG_THREADLOCALS) */
res = vsnprintf((*buf)->str + offset, (*buf)->len - offset, fmt,
ap);
/* Check to see if there was not enough space in the string
buffer to prepare
* the string. Also, if a maximum length is present, make sure
the...
2007 May 09
0
[patch 1/9] lguest: export symbols for lguest as a module
...truct);
void __init fork_init(unsigned long mempages)
{
diff -puN mm/memory.c~lguest-export-symbols-for-lguest-as-a-module mm/memory.c
--- a/mm/memory.c~lguest-export-symbols-for-lguest-as-a-module
+++ a/mm/memory.c
@@ -2829,3 +2829,4 @@ int access_process_vm(struct task_struct
return buf - old_buf;
}
+EXPORT_SYMBOL_GPL(access_process_vm);
diff -puN mm/vmalloc.c~lguest-export-symbols-for-lguest-as-a-module mm/vmalloc.c
--- a/mm/vmalloc.c~lguest-export-symbols-for-lguest-as-a-module
+++ a/mm/vmalloc.c
@@ -159,6 +159,7 @@ int map_vm_area(struct vm_struct *area,
flush_cache_vmap((unsigned lo...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 02/13] hvvm export page utils
...<glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index: work-pv/mm/memory.c
===================================================================
--- work-pv.orig/mm/memory.c
+++ work-pv/mm/memory.c
@@ -2798,3 +2798,10 @@ int access_process_vm(struct task_struct
return buf - old_buf;
}
EXPORT_SYMBOL_GPL(access_process_vm);
+
+/* temp until we put the hv vm stuff into the kernel */
+EXPORT_SYMBOL_GPL(__pud_alloc);
+EXPORT_SYMBOL_GPL(__pmd_alloc);
+EXPORT_SYMBOL_GPL(__pte_alloc_kernel);
+EXPORT_SYMBOL_GPL(pmd_clear_bad);
+EXPORT_SYMBOL_GPL(pud_clear_bad);
--
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 02/13] hvvm export page utils
...<glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index: work-pv/mm/memory.c
===================================================================
--- work-pv.orig/mm/memory.c
+++ work-pv/mm/memory.c
@@ -2798,3 +2798,10 @@ int access_process_vm(struct task_struct
return buf - old_buf;
}
EXPORT_SYMBOL_GPL(access_process_vm);
+
+/* temp until we put the hv vm stuff into the kernel */
+EXPORT_SYMBOL_GPL(__pud_alloc);
+EXPORT_SYMBOL_GPL(__pmd_alloc);
+EXPORT_SYMBOL_GPL(__pte_alloc_kernel);
+EXPORT_SYMBOL_GPL(pmd_clear_bad);
+EXPORT_SYMBOL_GPL(pud_clear_bad);
--
2007 May 09
0
[patch 1/9] lguest: export symbols for lguest as a module
...truct);
void __init fork_init(unsigned long mempages)
{
diff -puN mm/memory.c~lguest-export-symbols-for-lguest-as-a-module mm/memory.c
--- a/mm/memory.c~lguest-export-symbols-for-lguest-as-a-module
+++ a/mm/memory.c
@@ -2829,3 +2829,4 @@ int access_process_vm(struct task_struct
return buf - old_buf;
}
+EXPORT_SYMBOL_GPL(access_process_vm);
diff -puN mm/vmalloc.c~lguest-export-symbols-for-lguest-as-a-module mm/vmalloc.c
--- a/mm/vmalloc.c~lguest-export-symbols-for-lguest-as-a-module
+++ a/mm/vmalloc.c
@@ -159,6 +159,7 @@ int map_vm_area(struct vm_struct *area,
flush_cache_vmap((unsigned lo...