Home
last modified time | relevance | path

Searched refs:ptable (Results 1 – 8 of 8) sorted by relevance

/linux-2.6.39/arch/m68k/mm/
Dmemory.c33 #define PD_PAGE(ptable) (list_entry(ptable, struct page, lru)) argument
38 void __init init_pointer_table(unsigned long ptable) in init_pointer_table() argument
41 unsigned long page = ptable & PAGE_MASK; in init_pointer_table()
42 unsigned char mask = 1 << ((ptable - page)/PTABLE_SIZE); in init_pointer_table()
52 printk("init_pointer_table: %lx, %x\n", ptable, PD_MARKBITS(dp)); in init_pointer_table()
102 int free_pointer_table (pmd_t *ptable) in free_pointer_table() argument
105 unsigned long page = (unsigned long)ptable & PAGE_MASK; in free_pointer_table()
106 unsigned char mask = 1 << (((unsigned long)ptable - page)/PTABLE_SIZE); in free_pointer_table()
Dinit_mm.c74 extern void init_pointer_table(unsigned long ptable);
/linux-2.6.39/arch/cris/arch-v32/drivers/
Daxisflashmap.c312 struct partitiontable_entry *ptable; in init_axis_flash() local
464 ptable = (struct partitiontable_entry *) in init_axis_flash()
468 p = (unsigned char*) ptable; in init_axis_flash()
488 && ptable->offset != PARTITIONTABLE_END_MARKER in init_axis_flash()
489 && ptable < max_addr in init_axis_flash()
492 axis_partitions[pidx].offset = offset + ptable->offset; in init_axis_flash()
496 (((ptable+1)->offset == in init_axis_flash()
499 ((ptable+1)->offset + offset)) - in init_axis_flash()
500 (ptable->offset + offset); in init_axis_flash()
504 axis_partitions[pidx].size = ptable->size; in init_axis_flash()
[all …]
/linux-2.6.39/arch/cris/arch-v10/drivers/
Daxisflashmap.c275 struct partitiontable_entry *ptable; in init_axis_flash() local
318 ptable = (struct partitiontable_entry *) in init_axis_flash()
322 p = (unsigned char*) ptable; in init_axis_flash()
342 && ptable->offset != 0xffffffff in init_axis_flash()
343 && ptable < max_addr in init_axis_flash()
346 axis_partitions[pidx].offset = offset + ptable->offset; in init_axis_flash()
347 axis_partitions[pidx].size = ptable->size; in init_axis_flash()
352 ptable++; in init_axis_flash()
/linux-2.6.39/arch/cris/boot/rescue/
Dhead_v10.S193 ;; ptable is ok. validate each entry.
197 ploop: move.d [$r3+], $r1 ; partition offset (from ptable start)
198 bne notfirst ; check if it is the partition containing ptable
200 move.d $r8, $r1 ; for its checksum check, skip the ptable
202 sub.d $r8, $r2 ; minus the ptable length
206 cmp.d -1, $r1 ; the end of the ptable ?
317 move.d PTABLE_START, $r7; otherwise use the ptable start
/linux-2.6.39/include/linux/
Dsfi.h85 #define SFI_GET_NUM_ENTRIES(ptable, entry_type) \ argument
86 ((ptable->header.len - sizeof(struct sfi_table_header)) / \
/linux-2.6.39/drivers/sfi/
Dsfi_acpi.c78 #define XSDT_GET_NUM_ENTRIES(ptable, entry_type) \ argument
79 ((ptable->header.length - sizeof(struct acpi_table_header)) / \
/linux-2.6.39/drivers/s390/block/
Ddasd_eer.c650 static unsigned int dasd_eer_poll(struct file *filp, poll_table *ptable) in dasd_eer_poll() argument
657 poll_wait(filp, &dasd_eer_read_wait_queue, ptable); in dasd_eer_poll()