Displaying 5 results from an estimated 5 matches for "_address".
Did you mean:
address
2007 Apr 18
0
[PATCH 4/5] Add address translation
...===================================================
--- linux-2.6.13.orig/include/asm-i386/pgtable.h 2005-08-24 09:43:27.000000000 -0700
+++ linux-2.6.13/include/asm-i386/pgtable.h 2005-08-24 09:47:38.000000000 -0700
@@ -388,6 +388,28 @@ static inline pte_t pte_modify(pte_t pte
extern pte_t *lookup_address(unsigned long address);
/*
+ * Helper function that returns physical page for virtual address.
+ * This assumes the mapping is valid.
+ */
+#define virt_to_pfn(_address) \
+({ \
+ unsigned long long __paddr; \
+ pgd_t *pgd = pgd_offset_k(_address); \
+ pud_t *pud = pud_offset(p...
2007 Apr 18
0
[PATCH 4/5] Add address translation
...===================================================
--- linux-2.6.13.orig/include/asm-i386/pgtable.h 2005-08-24 09:43:27.000000000 -0700
+++ linux-2.6.13/include/asm-i386/pgtable.h 2005-08-24 09:47:38.000000000 -0700
@@ -388,6 +388,28 @@ static inline pte_t pte_modify(pte_t pte
extern pte_t *lookup_address(unsigned long address);
/*
+ * Helper function that returns physical page for virtual address.
+ * This assumes the mapping is valid.
+ */
+#define virt_to_pfn(_address) \
+({ \
+ unsigned long long __paddr; \
+ pgd_t *pgd = pgd_offset_k(_address); \
+ pud_t *pud = pud_offset(p...
2006 May 12
0
RJS, Safari, Error - DOM exception 7
...ld :message_body, :frequency => 2, :url =>
{ :action => :preview_message }, :with => "''message='' + escape
(value)" %>
<div id="message">
<%= render :partial => ''message'' -%>
</div>
Partial (_address.rhtml, same problem with both):
--------
<% unless @error.nil? -%>
<span class="label">Error:</span>
<ul id="error">
<li><%= h @error %></li>
</ul>
<% end -%>
<span class=&quo...
2003 Aug 28
0
[louisk@bend.com: snort, postgres, bridge]
...###
# Step #1: Set the network variables:
#
# You must change the following variables to reflect
# your local network. The variable is currently
# setup for an RFC 1918 address space.
#
# You can specify it explicitly as:
#
# var HOME_NET 10.1.1.0/24
#
# or use global variable $<interfacename>_ADDRESS
# which will be always initialized to IP address and
# netmask of the network interface which you run
# snort at. Under Windows, this must be specified
# as $(<interfacename>_ADDRESS), such as:
# $(\Device\Packet_{12345678-90AB-CDEF-1234567890AB}_ADDRESS)
#
# var HOME_NET $eth0_ADDRESS
#
# Y...
2009 Dec 31
1
[PATCH] Autogenerate uureg opcode macros
..._##n, i)
#define _CONST_(v, i) struct ureg_src v = ureg_DECL_constant(ureg, i)
#define _CONST(v, s) UREG_CONST(v, ureg, s)
- #define _CONST_MAT3(v, s) UREG_CONST_MAT3(v, ureg, s)
+#define _CONST_MAT3(v, s) UREG_CONST_MAT3(v, ureg, s)
#define _CONST_MAT4(v, s) UREG_CONST_MAT4(v, ureg, s)
#define _ADDRESS(v) struct ureg_src v = ureg_DECL_address(ureg)
#define _LOOP(v) struct ureg_src v = ureg_DECL_loop(ureg)
@@ -88,6 +88,41 @@ static inline struct ureg_src _src(const struct ureg_src& src) {return src;}
#define _zy(v) _swz(v, Z, Y, Z, Y)
#define _zw(v) _swz(v, Z, W, Z, W)
+#define _ind(r, a)...