Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions
x8664_ksyms_64.c File Reference
#include <linux/module.h>
#include <linux/smp.h>
#include <net/checksum.h>
#include <asm/processor.h>
#include <asm/pgtable.h>
#include <asm/uaccess.h>
#include <asm/desc.h>
#include <asm/ftrace.h>

Go to the source code of this file.

Functions

 EXPORT_SYMBOL (__get_user_1)
 
 EXPORT_SYMBOL (__get_user_2)
 
 EXPORT_SYMBOL (__get_user_4)
 
 EXPORT_SYMBOL (__get_user_8)
 
 EXPORT_SYMBOL (__put_user_1)
 
 EXPORT_SYMBOL (__put_user_2)
 
 EXPORT_SYMBOL (__put_user_4)
 
 EXPORT_SYMBOL (__put_user_8)
 
 EXPORT_SYMBOL (copy_user_generic_string)
 
 EXPORT_SYMBOL (copy_user_generic_unrolled)
 
 EXPORT_SYMBOL (copy_user_enhanced_fast_string)
 
 EXPORT_SYMBOL (__copy_user_nocache)
 
 EXPORT_SYMBOL (_copy_from_user)
 
 EXPORT_SYMBOL (_copy_to_user)
 
 EXPORT_SYMBOL (copy_page)
 
 EXPORT_SYMBOL (clear_page)
 
 EXPORT_SYMBOL (csum_partial)
 
voidmemset (void *, int, __kernel_size_t)
 
voidmemcpy (void *, const void *, __kernel_size_t)
 
void__memcpy (void *, const void *, __kernel_size_t)
 
 EXPORT_SYMBOL (memset)
 
 EXPORT_SYMBOL (memcpy)
 
 EXPORT_SYMBOL (__memcpy)
 
 EXPORT_SYMBOL (memmove)
 
 EXPORT_SYMBOL (empty_zero_page)
 
 EXPORT_SYMBOL (native_load_gs_index)
 

Function Documentation

void* __memcpy ( void ,
const void ,
__kernel_size_t   
)
EXPORT_SYMBOL ( __get_user_1  )
EXPORT_SYMBOL ( __get_user_2  )
EXPORT_SYMBOL ( __get_user_4  )
EXPORT_SYMBOL ( __get_user_8  )
EXPORT_SYMBOL ( __put_user_1  )
EXPORT_SYMBOL ( __put_user_2  )
EXPORT_SYMBOL ( __put_user_4  )
EXPORT_SYMBOL ( __put_user_8  )
EXPORT_SYMBOL ( copy_user_generic_string  )
EXPORT_SYMBOL ( copy_user_generic_unrolled  )
EXPORT_SYMBOL ( copy_user_enhanced_fast_string  )
EXPORT_SYMBOL ( __copy_user_nocache  )
EXPORT_SYMBOL ( _copy_from_user  )
EXPORT_SYMBOL ( _copy_to_user  )
EXPORT_SYMBOL ( copy_page  )
EXPORT_SYMBOL ( clear_page  )
EXPORT_SYMBOL ( csum_partial  )
EXPORT_SYMBOL ( memset  )
EXPORT_SYMBOL ( memcpy  )
EXPORT_SYMBOL ( __memcpy  )
EXPORT_SYMBOL ( memmove  )
EXPORT_SYMBOL ( empty_zero_page  )
EXPORT_SYMBOL ( native_load_gs_index  )
void* memcpy ( void dest,
const void src,
size_t  count 
)

memcpy - Copy one area of memory to another : Where to copy to : Where to copy from : The size of the area.

You should not use this function to access IO space, use memcpy_toio() or memcpy_fromio() instead.

Definition at line 151 of file memcpy.c.

void* memset ( void s,
int  c,
size_t  count 
)

memset - Fill a region of memory with the given value : Pointer to the start of the area. : The byte to fill the area with : The size of the area.

Do not use memset() to access IO space, use memset_io() instead.

Definition at line 116 of file string.c.