search for: preemptiv

Displaying 20 results from an estimated 114 matches for "preemptiv".

Did you mean: preemptive
2004 Aug 25
1
[LLVMdev] Stack branching for non-preemptive threading
Hi, Is there any way to support either stack branching or heap-allocated stack frames in llvm? What I am after is non-preemptive threading support (as in Modsim, but I have also written a small library in asm to allow this in C), where a function can "suspend" itself and resume execution later. I was excited to find llvm as I thought it would be an excellent back end for a language I am developing (I had once th...
2007 May 17
0
Preemptive answer on idmap error
I recently had a problem with Winbind where new Active Directory user accounts could not access the list of shares on a particular Samba server. "wbinfo -u" showed that the users did exist, but they were not appearing in "getent passwd" results. "/var/log/samba/winbind.log" showed the following error (with Winbind error logging set to either 2 or 3): idmap Fatal
2008 Feb 14
3
CONFIG_PREEMPT_RT=y possible in Dom0 kernel?
...ssible to specify CONFIG_PREEMPT_RT=y in the Dom0 kernel? It seems that it is forbidden as it is not a menu option in make menuconfig and gets removed if I manually add it to the .config. I want to run a sound server on Dom0 and am having problems with xruns at present, so need to be able to run a preemptive kernel. Thanks, Chris _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2011 Feb 08
4
OK, Where Did My 3.0.4 Patch Go???
When calls were made to test 3.0.4.rc1, I followed up a few days afterward for the latest SQL Server adapter. Santiago was nice enough to pick up on my ticket for a calculation bug [1] and got it committed to master [2] and then 3-0-stable [3] so it can make it in the next release. I just ran my test suite on the tag of the repo and it appears these did not make it in the v3.0.4 release. How did
2023 Jun 12
3
[Bug 3578] New: RFE: forward error correction
...this situation is "try harder". This is particularly challenging when you are trying to remotely debug over such a link, and SSH gets "stuck" even when some pings are getting through. Proposal: I suggest a --flaky option, which would do 3 things: * forward error-correction: preemptively transmit each packet 3x (both from the client-end and the server-end) without waiting to find out whether it was lost. * tweak the TCP timeout-timer for this connection to < 0.5 second, i.e. be much more aggressive about when a packet is deemed to be lost, and is re-requested. * If interact...
2023 Jul 19
1
AD routine testing/verification
...obably be good to check replication daily, perhaps even more often and generate alerts should we see errors. ? Are there other checks that would be good to do too? [I also use "samba-tool dbcheck --cross-ncs" ]? And any suggestions on how often one might suggest doing them? ? And I'll preemptively ask, do these checks return zero when they have no errors? [If I automate these checks, knowing the proper return values would be good.] ? TIA ? -Greg
2001 Sep 19
1
Why is .journal file sometimes visible and sometimes not?
Hi. I recently migrated two machines from ext2 to ext3. Kernels (nearly identical) are 2.4.9-ac9 + preemptivity-patch + wrr-patch. The Installations are based on Mandrake 7.2 + 8.0. Also I have e2fstools-1.23 newly compiled on them. Both machines have two ext3 partitions (root + multimedia-data). On one machine I see a .journal file on both partitions, on the other machine (Mandrake-8.0) it's only...
2014 Feb 27
1
i2c bus access
...ite number of controllers, > and building an I2C subsystem in Syslinux would be a good step toward > making it a fullblown operating system. Since we haven't had that > request before, I would just do an ad hoc implementation for your needs > at this time. Really, you should add a preemptive scheduler and protected-mode virtual memory management, and then we can do away with the need for the whole "Linux" part. :-) -- Jeff
2015 Apr 20
3
[PATCH 3/6] mmu: map small pages into big pages(s) by IOMMU if possible
...t implement both the advantages above, but your > suggestion would take us further away from that than Vince's version. Aha, looks like both Vince and I overlooked this point. So IIUC we would need to make sure a GPU buffer is only ever mapped once by the IOMMU. This means we either need to preemptively entilery map it at some point and just keep a reference count, or keep track of which 128k ranges are already mapped (again, with a reference count to know when to unmap them). First solution is tempting because it is simpler, but surely there is something wrong with it?
2001 Sep 10
0
[RHSA-2001:109-05] Updated xinetd package available for Red Hat Linux 7 and 7.1
...Linux Keywords: xinetd memset segfault audit Cross references: Obsoletes: RHSA-2001:092 --------------------------------------------------------------------- 1. Topic: A security audit has been done by Solar Designer on xinetd, and the results are now being made available as a preemptive measure. 2. Relevant releases/architectures: Red Hat Linux 7.0 - alpha, i386 Red Hat Linux 7.1 - alpha, i386, ia64 3. Problem description: A security audit has been done by Solar Designer on xinetd, and the results are now being made available as a preemptive measure. Also, memsetting too muc...
2011 Jun 13
0
[LLVMdev] Is LLVM expressive enough to represent asynchronous exceptions?
...ent to Italy didn't go through France. I am trying to point out that Italy is not Spain, even though they are both on the Mediterranean, and that you have to drive through France to get to Spain. There is really no alternative to putting EH edges on basic blocks if you're going to support preemptive asynchronous exceptions — some random multiply that gets hoisted out of a loop has to change exception handlers just in case that's where the PC lands during a signal. There isn't much point in complaining that doing so muddies the CFG, which is really just an inherent fact of handling as...
2011 Aug 23
2
Increase transparency: suggestion on how to avoid namespaces and/or unnecessary overwrites of existing functions
...f such scenarios. Suggestions: 1) In order to avoid name clashes/unintended overwrites, how about switching to a coding paradigm that explicitly (and automatically) includes a package's name in all its functions' names once code is turned into a real package? E.g., getting used to "preemptively" type 'package_fun()' or 'package.fun()' instead of just 'fun()'. Better to be save than sorry, right? This could be realized pretty easily (see example below) and, IMHO, would significantly increase transparency. 2) In order to avoid intended (but for the user of...
2015 Aug 17
2
RFC for a design change in LoopStrengthReduce / ScalarEvolution
> To back up for a second, how much of this is self-inflicted damage? > IndVarSimplify likes to preemptively widen induction variables. Is > that why you have the extensions here in the first place? In the specific example I was talking about the zext came from our frontend (our FE used to insert these extensions for reasons that are no longer relevant). But you can easily get the same behavior fr...
2011 Jun 13
4
[LLVMdev] Is LLVM expressive enough to represent asynchronous exceptions?
On Jun 12, 2011, at 4:40 PM, John McCall wrote: > On Jun 12, 2011, at 2:14 PM, Cameron Zwarich wrote: > >> On Jun 12, 2011, at 1:25 AM, Duncan Sands wrote: >> >>> Hi Sohail, >>> >>>> Is LLVM expressive enough to represent asynchronous exceptions? >>> >>> not currently. The first step in this direction is to get rid of the
2003 Jun 03
1
PDC/Roving Profiles/and Password Encryption
...r's shares are not viewable until I run a "NET USE" command that includes a valid username and password. Once that is done, I can view any of the shares fine. If there's a way to circumvent this problem or if I've managed to screw yet another thing up, let me know. And a preemptive thanks to John - you've been a lot of help :) Thanks! Dan --------------------------------- Do you Yahoo!? Free online calendar with sync to Outlook(TM).
2010 Jan 25
1
Stealing ownership: chown user->qemu->root
...e.img. When a domain using qcow.img is created qcow.img is owned to qemu, but base.img is not. Instead of chown'ing, will libvirt provide an error that could cover both these situations? The virt-manager GUI (or virsh TUI) could interpret that error and chmod the proper files transparently, or preemptively chmod the required files. Users of the libvirt API would have to make sure things are setup properly at first and would not have to worry about side-effect changes made by libvirtd. I think the suggestion holds even if is only the qemu driver doing the chown. Best, matt
2011 Jun 13
2
[LLVMdev] Is LLVM expressive enough to represent asynchronous exceptions?
...ly didn't go through France. I am trying to point out that Italy is not Spain, even though they are both on the Mediterranean, and that you have to drive through France to get to Spain. > > There is really no alternative to putting EH edges on basic blocks if you're going to support preemptive asynchronous exceptions — some random multiply that gets hoisted out of a loop has to change exception handlers just in case that's where the PC lands during a signal. There isn't much point in complaining that doing so muddies the CFG, which is really just an inherent fact of handling as...
2008 Aug 01
8
Sharing home directories between two symetric nodes?
Hello, I just discovered Gluster a couple of weeks ago and went through the initial documentation and got it compiled. It looks very promising both for my home network and for work. For now I'm concentrating at home - We have to Ubuntu 8.04 desktops, one for me and one for my wife. We generally try to keep them off when not used but at any time any one of them could be up or down. I was
2011 Dec 06
2
OCFS2 showing "No space left on device" on a device with free space
Hi , I am getting the error "No space left on device" on a device with free space which is ocfs2 filesystem. Additional information is as below, [root at sai93 staging]# debugfs.ocfs2 -n -R "stats" /dev/sdb1 | grep -i "Cluster Size" Block Size Bits: 12 Cluster Size Bits: 15 [root at sai93 ~]# cat /etc/redhat-release Red Hat Enterprise Linux Server release
2008 Oct 11
6
Force backup of files modified outside of puppet's File Type
I''m using the SimpleText recipe and Augeas plugin to modify files in place. I''d like to notify the appropriate File resource that a modification is about to take place so puppet can backup the file. Maybe this is already possible but I haven''t found any examples or documentation on how to accomplish this. I think a natural way to do this would be to use the subscribe