search for: nonvolatil

Displaying 20 results from an estimated 39 matches for "nonvolatil".

Did you mean: nonvolatile
2018 May 22
2
LLVM SEH docs -- enregistration of locals in nonvolatile registers?
...docs/ExceptionHandling.html#wineh > No variables live in to or out of the funclet can be allocated in registers. I don't think this is quite true. though it might be a useful simplification. Obviously it is true for volatile registers, but I believe the funclet receives a CONTEXT with the nonvolatiles restored. Obviously cumbersome to access, but it lets you enregister them across calls like normal in the "original" function. I haven't seen Visual C++ to such enregistration (nonvolatiles across calls in functions with EH), but you can do it in assembly. nvlocala.asm here...
2018 May 24
0
LLVM SEH docs -- enregistration of locals in nonvolatile registers?
...> No variables live in to or out of the funclet can be allocated in > registers. > > I don't think this is quite true. though it might be a useful > simplification. > Obviously it is true for volatile registers, but I believe the funclet > receives a CONTEXT > with the nonvolatiles restored. Obviously cumbersome to access, but it > lets you enregister them across calls like normal in the "original" > function. > > I haven't seen Visual C++ to such enregistration (nonvolatiles across > calls in functions with EH), but you can do it in assemb...
2016 Feb 22
5
Change machine name without a reboot?
...machine name programmatically on Samba 4 (running under systemd). There's no "netbios name" option in smb.conf, so I'm relying on it using the hostname. Here's what I'm doing: 1) Call sethostname() with the new name. 2) Write the same name into /etc/hostname, to make it nonvolatile. 3) Read a decimal number from /var/run/smbd.pid. 4) Send SIGHUP to that process. Nothing happens. If I reboot, then the new name is announced on the network. How do I get it to do this without rebooting the entire system? -- Ciao, Paul D. DeRocco Paul mailto:pde...
2017 Dec 21
4
Hoisting in the presence of volatile loads.
...lvm.org/D16875>, the decision made was: > "The LLVM spec is ambiguous about whether we can hoist a non-volatile > load above a volatile load when the loads alias. It's probably best > not to exploit this ambiguity at the moment by unconditionally > allowing the motion of nonvolatile loads above volatile loads (and > vice versa)" > So the testcase: test/Analysis/MemorySSA/volatile-clobber.ll, is > checking that a volatile load is the defining access of a load with > which it may alias. > > Snippet: > ; Ensuring that we don't automatically hoist...
2018 Mar 28
2
arm tailcall with many parameters?
...)(int a, int b, int c, int d, int e)) { return pf5(1, 2, 3, 4, 5); } int f4(vtable_t *vt) { return vt->pf5(1, 2, 3, 4, 5); } Could you not allocate an extra word on the stack, in the first position, store the return address there, and pop it to pc (or ip and then move to pc) after restoring nonvolatiles and lr? Is that not describable in unwind data? I only tested Debian's 3.3 so far but I'll try to try 6.0. I ask because I'm working on tailcalls in another project. I figured I'd look at gcc/clang output for hints here. I understand there can be multiple exits of a functi...
2016 Feb 24
2
Change machine name without a reboot?
...ng under systemd). There's no "netbios name" option in smb.conf, so > > I'm relying on it using the hostname. Here's what I'm doing: > > > > 1) Call sethostname() with the new name. > > > > 2) Write the same name into /etc/hostname, to make it nonvolatile. > > > > 3) Read a decimal number from /var/run/smbd.pid. > > > > 4) Send SIGHUP to that process. > > > > Nothing happens. If I reboot, then the new name is announced on the > > network. How do I get it to do this without rebooting the entire system? >...
2010 May 24
16
questions about zil
I recently got a new SSD (ocz vertex LE 50gb) It seems to work really well as a ZIL performance wise. My question is, how safe is it? I know it doesn''t have a supercap so lets'' say dataloss occurs....is it just dataloss or is it pool loss? also, does the fact that i have a UPS matter? the numbers i''m seeing are really nice....these are some nfs tar times before
2010 Mar 24
21
ZFS on a 11TB HW RAID-5 controller
Hello all, I am a complete newbie to OpenSolaris, and must to setup a ZFS NAS. I do have linux experience, but have never used ZFS. I have tried to install OpenSolaris Developer 134 on a 11TB HW RAID-5 virtual disk, but after the installation I can only use one 2TB disk, and I cannot partition the rest. I realize that maximum partition size is 2TB, but I guess the rest must be usable. For
2007 Apr 15
0
601 Rebooting/Crashing seems to be due to full directory
We were adding contacts to the directory successfully and when we got top approx. contact #45, the phone now reboots when we change a speed dial index or delete a contact from the directory. To gain more memory in sip.cfg, I set: <directory dir.local.volatile.2meg="0" dir.local.nonVolatile.maxSize.2meg="20" dir.local.volatile.4meg="1" dir.local.nonVolatile.maxSize.4meg="42" dir.local.volatile.maxSize="100"/> The phone's rebooting behavior persisits. I know that changes will be wiped out on reboot, right now I'm just trying to stab...
2012 May 02
4
[LLVMdev] [cfe-dev] Odd PPC inline asm constraint
...The ABI states the the stack space below the stack pointer is declared as volatile. I actually debugged a similar problem way back in my Blue Gene/L days, where gcc had a bug and was doing the same thing. We ended up taking a signal between the restore of the stack pointer and the restore of the nonvolatile reg and the BGL compute node kernel trashed the stack below the stack pointer. The second wart is the dead copy to r31...which leads to the unnecessary save and restore of r31. For tomcatv, we have to basically save/restore the entire set of non-volatile integer and fp registers. Looking at how...
2012 May 12
1
[LLVMdev] [cfe-dev] Odd PPC inline asm constraint
...ow the stack pointer is declared as volatile. > > I actually debugged a similar problem way back in my Blue Gene/L > > days, where gcc had a bug and was doing the same thing. We ended > > up taking a signal between the restore of the stack pointer and > > the restore of the nonvolatile reg and the BGL compute node kernel > > trashed the stack below the stack pointer. > > Just to confirm, this is an issue specific to the 32-bit ABI, correct? > gcc (4.4.6) seems to do the same thing for PPC64. Correct, this is a specific 32-bit ABI issue. The 64-bit ABI allows so...
2017 Dec 20
4
Hoisting in the presence of volatile loads.
On 12/20/2017 1:37 PM, Sanjoy Das wrote:> > Fwiw, I was under the impression that regular loads could *not* be > reordered with volatile loads since we could have e.g.: > > int *normal = &global_variable; > volatile int* ptr = 0; > int k = *ptr; // segfaults, and the signal handler writes to *normal > int value = *normal; > > and that we'd have
2018 Mar 28
0
arm tailcall with many parameters?
...)(int a, int b, int c, int d, int e)) { return pf5(1, 2, 3, 4, 5); } int f4(vtable_t *vt) { return vt->pf5(1, 2, 3, 4, 5); } Could you not allocate an extra word on the stack, in the first position, store the return address there, and pop it to pc (or ip and then move to pc) after restoring nonvolatiles and lr? Is that not describable in unwind data? I only tested Debian's 3.3 so far but I'll try to try 6.0. I ask because I'm working on tailcalls in another project. I figured I'd look at gcc/clang output for hints here. I understand there can be multiple exits of a functi...
2012 May 12
0
[LLVMdev] [cfe-dev] Odd PPC inline asm constraint
...the stack space below the stack pointer is declared as volatile. > I actually debugged a similar problem way back in my Blue Gene/L > days, where gcc had a bug and was doing the same thing. We ended > up taking a signal between the restore of the stack pointer and > the restore of the nonvolatile reg and the BGL compute node kernel > trashed the stack below the stack pointer. Just to confirm, this is an issue specific to the 32-bit ABI, correct? gcc (4.4.6) seems to do the same thing for PPC64. Thanks again, Hal > > The second wart is the dead copy to r31...which leads to the...
2010 May 16
9
can you recover a pool if you lose the zil (b134+)
I was messing around with a ramdisk on a pool and I forgot to remove it before I shut down the server. Now I am not able to mount the pool. I am not concerned with the data in this pool, but I would like to try to figure out how to recover it. I am running Nexenta 3.0 NCP (b134+). I have tried a couple of the commands (zpool import -f and zpool import -FX llift) root at
2014 Jul 04
0
The dreaded Tripp Lite SMART500RT1U and NUT
...coincidentally what you would get by reading 0d 0d. I'll have to check the offsets. > input.voltage.minimum: 0 This one might actually be zero, before running the reset minmax command (which also takes a few seconds to be processed). The min/max values seem to be stored in some sort of nonvolatile memory. Not sure why the load.* commands aren't working. Those should turn on and off the main load relay, and the outlet variable should control the switchable outlet. We might need to look at a USB trace of the Windows software to see what is going on.
2019 Jun 29
0
raid 5 install
...t; > > IMHO, Hardware raid primarily exists because of Microsoft Windows and VMware esxi, neither of which have good native storage management. Because of this, it's fairly hard to order a major brand (HP, Dell, etc) server without raid cards. Raid cards do have the performance boost of nonvolatile write back cache. Newer/better cards use supercap flash for this, so battery life is no longer an issue That said, make my Unix boxes zfs or mdraid+xfs on jbod for all the reasons previously given. >
2005 Jul 30
0
Memdisk Ramdisk survive reboot
Hi all, I want to have a warmboot nonvolatile ramdisk to put and start XP from ram. That means that the ramdisk and its content have to survive a reboot on a "normal computer"! (No battery ...hihi) First I make a try with Microsoft ramdrive.sys and switch /e in config.sys from Dos 6.22 and with qemm386.sys but that doesnt work for...
2011 Jul 20
0
ATMEL - GNN Components, Co.Ltd
ATMEL GNN - Components 1. Introduction : Atmel Corporation (http://www.gnn-components.com/Atmel_corporation-22-423.aspx) is a global leader in designing, manufacturing and marketing advanced semiconductorsincluding microcontroller (MCU), programmable logic, and nonvolatile memory. Atmel meets the evolving and growing needs of today's electronic system design engineer through the production of general purpose and application specific system level integrated chips. Atmel's world class expertise and wealth of experience in system-level integration enable all o...
2010 Jan 12
11
How do separate ZFS filesystems affect performance?
I''m working with a Cyrus IMAP server running on a T2000 box under Solaris 10 10/09 with current patches. Mailboxes reside on six ZFS filesystems, each containing about 200 gigabytes of data. These are part of a single zpool built on four Iscsi devices from our Netapp filer. One of these ZFS filesystems contains a number of global and per-user databases in addition to one sixth of the