Home
last modified time | relevance | path

Searched refs:real (Results 1 – 25 of 301) sorted by relevance

12345678910>>...13

/linux-3.4.99/Documentation/vm/
Dactive_mm.txt18 - we have "real address spaces" and "anonymous address spaces". The
26 this category, but even "real" threads can temporarily say that for
32 - "tsk->mm" points to the "real address space". For an anonymous process,
34 really doesn't _have_ a real address space at all.
40 The rule is that for a process with a real address space (ie tsk->mm is
41 non-NULL) the active_mm obviously always has to be the same as the real
50 "mm_users" counter that is how many "real address space users" there are,
52 users) plus one if there are any real users.
54 Usually there is at least one real user, but it could be that the real
58 gets scheduled away in favour of a real thread, the "zombie" mm gets
[all …]
/linux-3.4.99/drivers/char/agp/
Dati-agp.c45 unsigned long *real; member
59 page_map->real = (unsigned long *) __get_free_page(GFP_KERNEL); in ati_create_page_map()
60 if (page_map->real == NULL) in ati_create_page_map()
63 set_memory_uc((unsigned long)page_map->real, 1); in ati_create_page_map()
64 err = map_page_into_agp(virt_to_page(page_map->real)); in ati_create_page_map()
65 page_map->remapped = page_map->real; in ati_create_page_map()
78 unmap_page_from_agp(virt_to_page(page_map->real)); in ati_free_page_map()
79 set_memory_wb((unsigned long)page_map->real, 1); in ati_free_page_map()
80 free_page((unsigned long) page_map->real); in ati_free_page_map()
94 if (entry->real != NULL) in ati_free_gatt_pages()
[all …]
Dsworks-agp.c32 unsigned long *real; member
51 page_map->real = (unsigned long *) __get_free_page(GFP_KERNEL); in serverworks_create_page_map()
52 if (page_map->real == NULL) { in serverworks_create_page_map()
56 set_memory_uc((unsigned long)page_map->real, 1); in serverworks_create_page_map()
57 page_map->remapped = page_map->real; in serverworks_create_page_map()
68 set_memory_wb((unsigned long)page_map->real, 1); in serverworks_free_page_map()
69 free_page((unsigned long) page_map->real); in serverworks_free_page_map()
82 if (entry->real != NULL) { in serverworks_free_gatt_pages()
158 writel(virt_to_phys(serverworks_private.scratch_dir.real) | 1, page_dir.remapped+i); in serverworks_create_gatt_table()
168 agp_bridge->gatt_table_real = (u32 *)page_dir.real; in serverworks_create_gatt_table()
[all …]
Damd-k7-agp.c26 unsigned long *real; member
40 page_map->real = (unsigned long *) __get_free_page(GFP_KERNEL); in amd_create_page_map()
41 if (page_map->real == NULL) in amd_create_page_map()
44 set_memory_uc((unsigned long)page_map->real, 1); in amd_create_page_map()
45 page_map->remapped = page_map->real; in amd_create_page_map()
57 set_memory_wb((unsigned long)page_map->real, 1); in amd_free_page_map()
58 free_page((unsigned long) page_map->real); in amd_free_page_map()
71 if (entry->real != NULL) in amd_free_gatt_pages()
143 agp_bridge->gatt_table_real = (u32 *)page_dir.real; in amd_create_gatt_table()
145 agp_bridge->gatt_bus_addr = virt_to_phys(page_dir.real); in amd_create_gatt_table()
[all …]
/linux-3.4.99/kernel/
Dposix-timers.c293 struct hrtimer *timer = &timr->it.real.timer; in schedule_next_timer()
295 if (timr->it.real.interval.tv64 == 0) in schedule_next_timer()
300 timr->it.real.interval); in schedule_next_timer()
382 timr = container_of(timer, struct k_itimer, it.real.timer); in posix_timer_fn()
385 if (timr->it.real.interval.tv64 != 0) in posix_timer_fn()
394 if (timr->it.real.interval.tv64 != 0) { in posix_timer_fn()
423 if (timr->it.real.interval.tv64 < kj.tv64) in posix_timer_fn()
429 timr->it.real.interval); in posix_timer_fn()
529 hrtimer_init(&new_timer->it.real.timer, new_timer->it_clock, 0); in common_timer_create()
684 struct hrtimer *timer = &timr->it.real.timer; in common_timer_get()
[all …]
/linux-3.4.99/scripts/
DMakefile.build176 $(real-objs-m) : part-of-module := y
177 $(real-objs-m:.o=.i) : part-of-module := y
178 $(real-objs-m:.o=.s) : part-of-module := y
179 $(real-objs-m:.o=.lst): part-of-module := y
181 $(real-objs-m) : quiet_modtag := [M]
182 $(real-objs-m:.o=.i) : quiet_modtag := [M]
183 $(real-objs-m:.o=.s) : quiet_modtag := [M]
184 $(real-objs-m:.o=.lst): quiet_modtag := [M]
330 $(real-objs-m) : modkern_aflags := $(KBUILD_AFLAGS_MODULE) $(AFLAGS_MODULE)
331 $(real-objs-m:.o=.s): modkern_aflags := $(KBUILD_AFLAGS_MODULE) $(AFLAGS_MODULE)
[all …]
DMakefile.lib69 real-objs-y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) …
70 real-objs-m := $(foreach m, $(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs))…
82 real-objs-y := $(addprefix $(obj)/,$(real-objs-y))
83 real-objs-m := $(addprefix $(obj)/,$(real-objs-m))
/linux-3.4.99/drivers/parport/
Ddaisy.c74 static struct parport *clone_parport(struct parport *real, int muxport) in clone_parport() argument
76 struct parport *extra = parport_register_port(real->base, in clone_parport()
77 real->irq, in clone_parport()
78 real->dma, in clone_parport()
79 real->ops); in clone_parport()
81 extra->portnum = real->portnum; in clone_parport()
82 extra->physport = real; in clone_parport()
84 real->slaves[muxport-1] = extra; in clone_parport()
/linux-3.4.99/Documentation/parisc/
Ddebugging7 A lot of the assembly code currently runs in real mode, which means
16 When real-mode code tries to access non-existent memory, you'll get
20 the I/O range); the System Responder address is the address real-mode
25 get translated to a physical address before real-mode code tried to
D00-INDEX4 - some debugging hints for real-mode code
/linux-3.4.99/drivers/md/persistent-data/
Ddm-transaction-manager.c34 struct dm_transaction_manager *real; member
114 tm->real = NULL; in dm_tm_create()
125 struct dm_transaction_manager *dm_tm_create_non_blocking_clone(struct dm_transaction_manager *real) in dm_tm_create_non_blocking_clone() argument
132 tm->real = real; in dm_tm_create_non_blocking_clone()
261 return dm_bm_read_try_lock(tm->real->bm, b, v, blk); in dm_tm_read_lock()
/linux-3.4.99/Documentation/x86/
Dboot.txt9 real-mode DOS as a mainstream operating system.
67 | Stack/heap | For use by the kernel real-mode code.
69 | Kernel setup | The kernel real-mode code.
86 0x100000 ("high memory"), and the kernel real-mode block (boot sector,
119 | Stack/heap | For use by the kernel real-mode code.
121 | Kernel setup | The kernel real-mode code.
144 real-mode code (boot sector and setup code) and then examine the
145 following header at offset 0x01f1. The real-mode code can total up to
194 real value is 4.
236 0, the real value is 4. The real-mode code consists of the boot
[all …]
Dusb-legacy-support.txt15 mouse is present and a real PS/2 mouse is present. In that case the extra
16 features (wheel, extra buttons, touchpad mode) of the real PS/2 mouse may
/linux-3.4.99/arch/x86/oprofile/
Dop_model_p4.c618 unsigned long ctr, low, high, stag, real; in p4_check_ctrs() local
645 real = VIRT_CTR(stag, i); in p4_check_ctrs()
647 rdmsr(p4_counters[real].cccr_address, low, high); in p4_check_ctrs()
648 rdmsr(p4_counters[real].counter_address, ctr, high); in p4_check_ctrs()
651 wrmsrl(p4_counters[real].counter_address, in p4_check_ctrs()
654 wrmsr(p4_counters[real].cccr_address, low, high); in p4_check_ctrs()
655 wrmsrl(p4_counters[real].counter_address, in p4_check_ctrs()
/linux-3.4.99/arch/powerpc/boot/dts/
Diss4xx-mpic.dts36 model = "PowerPC,4xx"; // real CPU changed in sim
50 model = "PowerPC,4xx"; // real CPU changed in sim
66 model = "PowerPC,4xx"; // real CPU changed in sim
82 model = "PowerPC,4xx"; // real CPU changed in sim
/linux-3.4.99/fs/
Dcompat.c746 struct nfs4_mount_data *real = raw_data; in do_nfs4_super_data_conv() local
749 real->auth_flavours = compat_ptr(raw->auth_flavours); in do_nfs4_super_data_conv()
750 real->auth_flavourlen = raw->auth_flavourlen; in do_nfs4_super_data_conv()
751 real->proto = raw->proto; in do_nfs4_super_data_conv()
752 real->host_addr = compat_ptr(raw->host_addr); in do_nfs4_super_data_conv()
753 real->host_addrlen = raw->host_addrlen; in do_nfs4_super_data_conv()
754 compat_nfs_string(&real->hostname, &raw->hostname); in do_nfs4_super_data_conv()
755 compat_nfs_string(&real->mnt_path, &raw->mnt_path); in do_nfs4_super_data_conv()
756 compat_nfs_string(&real->client_addr, &raw->client_addr); in do_nfs4_super_data_conv()
757 real->acdirmax = raw->acdirmax; in do_nfs4_super_data_conv()
[all …]
/linux-3.4.99/arch/blackfin/include/asm/
Dirqflags.h157 static inline notrace unsigned long arch_mangle_irq_bits(int virt, unsigned long real) in arch_mangle_irq_bits() argument
163 return (real & ~(1 << 31)) | ((virt != 0) << 31); in arch_mangle_irq_bits()
/linux-3.4.99/Documentation/device-mapper/
Dsnapshot.txt87 volumeGroup-base-real: 0 2097152 linear 8:19 384
93 brw------- 1 root root 254, 11 29 ago 18:15 /dev/mapper/volumeGroup-base-real
103 "snapshot-merge". The "-real" device is not changed and the "-cow"
117 volumeGroup-base-real: 0 2097152 linear 8:19 384
122 brw------- 1 root root 254, 11 29 ago 18:15 /dev/mapper/volumeGroup-base-real
/linux-3.4.99/include/linux/
Datm_zatm.h39 struct timeval real; /* real (wall-clock) time */ member
/linux-3.4.99/arch/arm/boot/dts/
Domap3.dtsi52 * The real OMAP interconnect network is quite complex.
53 * Since that will not bring real advantage to represent that in DT for
/linux-3.4.99/Documentation/
Dinitrd.txt38 6) init mounts the "real" root file system
198 and proceeds with starting the Linux system on the "real" root device.
266 2) /sbin/init determines what is needed to (1) mount the "real" root FS
316 It works by mounting the "real" root device (i.e. the one set with rdev
324 the real root file system, not the initrd environment.)
326 If /proc is mounted, the "real" root device can be changed from within
328 file /proc/sys/kernel/real-root-dev, e.g.
330 # echo 0x301 >/proc/sys/kernel/real-root-dev
349 echo 0x0100 >/proc/sys/kernel/real-root-dev
355 the cmdline) before the final execution of the real /sbin/init.
/linux-3.4.99/drivers/s390/net/
Dclaw.h172 __u32 real; /* real address of this block */ member
191 __u32 real; /* real address of this ccw */ member
/linux-3.4.99/firmware/dsp56k/
Dbootstrap.asm52 move #real,r0
62 real label
/linux-3.4.99/Documentation/hwmon/
Dltc426139 real voltage by multiplying the reported value with (R1+R2)/R2, where R1 is the
45 is installed. If a different sense resistor is installed, calculate the real
/linux-3.4.99/Documentation/scheduler/
D00-INDEX12 - real-time group scheduling.

12345678910>>...13