search for: naddr

Displaying 11 results from an estimated 11 matches for "naddr".

Did you mean: addr
2005 Dec 15
5
Action Mailer - connection refused - connect(2)
hi: I am on Mac OSX 10.4 using locomotive. My ActionMailer configuration is ActionMailer::Base.delivery_method = :smtp # or :sendmail or test ActionMailer::Base.server_settings = { :address => "mail.albertafilmworks.com", :port => 25, :domain => "brucebalmercanada.com" } ActionMailer::Base.perform_deliveries = true
2016 Jan 15
2
Expanding a PseudoOp and accessing the DAG
...ctionDAG > &DAG) { > ... > if (NeedGRP) { > SpecialTargetFlags = ...; > SDValue TAddr = DAG.getTargetGlobalAddress(..., SpecialTargetFlags); > return DAG.getNode(XSTGISD::ADDR_USE_GRP, ..., TAddr); > } > > // Non-relocatable address: > SDValue NAddr = DAG.getTargetGlobalAddress(...); > return DAG.getNode(XSTGISD::ADDR_NORMAL, ..., NAddr); > > } > > > -Krzysztof > > -- > Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted > by The Linux Foundation > -------------- next part --------------...
2016 Jan 13
2
Expanding a PseudoOp and accessing the DAG
On Wed, Jan 13, 2016 at 2:08 PM, Krzysztof Parzyszek via llvm-dev < llvm-dev at lists.llvm.org> wrote: > On 1/13/2016 2:26 PM, Phil Tomson via llvm-dev wrote: > >> I've got this PseudoOp defined: >> >> def SDT_RELADDR : SDTypeProfile<1, 2, [SDTCisInt<0>, SDTCisInt<1>]>; >> def XSTGRELADDR :
2013 Apr 30
4
Data Abort while in booting when using Julien's new patches on Arndale Board
...; } When I have tired to debugging, I have found " WRITE_CP32(va, ATS12NSOPR)[1]" that cause data abort. It seems [1] translates stage 1 and 2 MMU and returns PA corresponding input va. Does anybody see same problem? I attach my log below: === log === (XEN) /voltage-regulator nirq = 0 naddr = 0 (XEN) handle /fixedregulator@0 (XEN) /fixedregulator@0 nirq = 0 naddr = 0 (XEN) CPU0: Unexpected Trap: Data Abort (XEN) ----[ Xen-4.3-unstable arm32 debug=y Tainted: C ]---- (XEN) CPU: 0 (XEN) PC: 0024d78c exynos5_specific_mapping+0x30/0xf4 (XEN) CPSR: 2000015a MODE:Hypervisor (X...
2009 Dec 29
0
aMSN segfaults at login after configuring my home network
...SS_STATUS_UNAVAIL nscd_status = <value optimized out> any_service = <value optimized out> res = <value optimized out> #5 0xb7a7ee43 in gaih_inet (name=<value optimized out>, service=<value optimized out>, req=0xbfffd624, pai=0xbfffd5e4, naddrs=0xbfffd5d4) at ../sysdeps/posix/getaddrinfo.c:531 family = 2 tmpbuflen = 512 tmpbuf = 0xbfffd1c0 "\377\002" th = {h_name = 0x0, h_aliases = 0x0, h_addrtype = 0, h_length = 0, h_addr_list = 0x0} herrno = 1 rc = <value optimized...
2009 Nov 14
2
[PATCH] btrfs-progs: Check mount status of multidevice filesystems
...f (found_key.type == BTRFS_CHUNK_ITEM_KEY) { diff --git a/volumes.h b/volumes.h index bb78751..baf12ff 100644 --- a/volumes.h +++ b/volumes.h @@ -103,16 +103,16 @@ int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree, u64 chunk_start, u64 physical, u64 devid, u64 **logical, int *naddrs, int *stripe_len); int btrfs_read_sys_array(struct btrfs_root *root); -int btrfs_read_chunk_tree(struct btrfs_root *root); +int btrfs_read_chunk_tree(struct btrfs_root *root, int check_mount); int btrfs_alloc_chunk(struct btrfs_trans_handle *trans, struct btrfs_root *extent_root, u64 *s...
2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 01/13] HV VM Fix map area for HV.
...printk("%d: paddr=%lx\n", i, paddr); + if (!paddr) + goto out; + ret = hvvm_alloc_page(addr, paddr, prot); + printk("%d: ret=%d addr=%lx\n", i, ret, addr); + if (ret < 0) + goto out; + } + + addr = *hvaddr; + vaddr -= PAGE_SIZE * pages; + printk("vaddr=%p (%lx)\naddr=%p (%lx)\n", + vaddr, *(unsigned long*)vaddr, + (void*)addr, *(unsigned long*)addr); + + return 0; +out: + for (--i; i >=0; i--) { + addr -= PAGE_SIZE; + hvvm_unmap_page(addr); + } + + release_hv_pages(addr, pages); + return ret; +} + +void hvvm_unmap_pages(unsigned long add...
2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 01/13] HV VM Fix map area for HV.
...printk("%d: paddr=%lx\n", i, paddr); + if (!paddr) + goto out; + ret = hvvm_alloc_page(addr, paddr, prot); + printk("%d: ret=%d addr=%lx\n", i, ret, addr); + if (ret < 0) + goto out; + } + + addr = *hvaddr; + vaddr -= PAGE_SIZE * pages; + printk("vaddr=%p (%lx)\naddr=%p (%lx)\n", + vaddr, *(unsigned long*)vaddr, + (void*)addr, *(unsigned long*)addr); + + return 0; +out: + for (--i; i >=0; i--) { + addr -= PAGE_SIZE; + hvvm_unmap_page(addr); + } + + release_hv_pages(addr, pages); + return ret; +} + +void hvvm_unmap_pages(unsigned long add...
2020 Oct 17
10
[RFC] treewide: cleanup unreachable breaks
...ss */ REG_SET(OUTPUT_CSC_CONTROL, 0, OUTPUT_CSC_GRPH_MODE, 0); break; - break; The exception to the simple statement, is a switch case with a block and the end of block is a return struct obj_buffer *buff = r->ptr; return scnprintf(str, PRIV_STR_SIZE, "size=%u\naddr=0x%X\n", buff->size, buff->addr); } - break; Not considered obvious and excluded, breaks after multi level switches complicated if-else if-else blocks panic() or similar calls And there is an odd addition of a 'fallthrough' in drivers/tty/nozomi.c Tom --- diff --gi...
2020 Oct 17
10
[RFC] treewide: cleanup unreachable breaks
...ss */ REG_SET(OUTPUT_CSC_CONTROL, 0, OUTPUT_CSC_GRPH_MODE, 0); break; - break; The exception to the simple statement, is a switch case with a block and the end of block is a return struct obj_buffer *buff = r->ptr; return scnprintf(str, PRIV_STR_SIZE, "size=%u\naddr=0x%X\n", buff->size, buff->addr); } - break; Not considered obvious and excluded, breaks after multi level switches complicated if-else if-else blocks panic() or similar calls And there is an odd addition of a 'fallthrough' in drivers/tty/nozomi.c Tom --- diff --gi...
2018 Jun 07
0
[PATCH v2 1/2] compiler-gcc.h: add gnu_inline to all inline declarations
...seq) -static __inline__ int dn_congested(struct sock *sk) +static inline int dn_congested(struct sock *sk) diff --git a/include/net/ip.h b/include/net/ip.h index ecffd843e7b8..41a4a6597d96 100644 --- a/include/net/ip.h +++ b/include/net/ip.h @@ -523 +523 @@ static inline void ip_ipgre_mc_map(__be32 naddr, const unsigned char *broadcast, -static __inline__ void inet_reset_saddr(struct sock *sk) +static inline void inet_reset_saddr(struct sock *sk) diff --git a/include/net/ip6_checksum.h b/include/net/ip6_checksum.h index cca840584c88..27567477dcc6 100644 --- a/include/net/ip6_checksum.h +++ b/includ...