search for: chain

Displaying 20 results from an estimated 9187 matches for "chain".

2007 Sep 13
0
2 commits - libswfdec/swfdec_as_function.c test/trace
libswfdec/swfdec_as_function.c | 9 test/trace/Makefile.am | 117 ++++++++++ test/trace/scope-chain-did-you-understand-5.swf |binary test/trace/scope-chain-did-you-understand-5.swf.trace | 1 test/trace/scope-chain-did-you-understand-6.swf |binary test/trace/scope-chain-did-you-understand-6.swf.trace | 1 test/trace/sco...
2005 Jun 08
6
Random seed problem in MCMC coupling of chains
Hello! I am performing coupling of chains in MCMC and I need the same value of seed for two chains. I will show demo of what I want: R code, which might show my example is: niter <- 3 nchain <- 2 tmpSeed <- 123 for (i in 1:niter) { # iterations for (j in 1:nchain) { # chains set.seed(tmpSeed) a <- runif(1) cat(&...
2012 Aug 01
0
chain module updates
This is a set of few chain post-merge patches - mostly revolving around simple adjustments, though a few are somewhat larger and/or introducing new features (nothing particularly complex though). Fetch details at the bottom. I didn't spam the list with mass of mostly banal patches, though of course I can send them any m...
2009 Jul 19
2
Patch for chain.c32: Set default boot drive to CD drive from which ISOLINUX is booted
chain.c32 of SYSLINUX 3.82 does set the boot drive passed to the DL register to 0x80 and not to the boot drive (CD-drive). This can be a problem if you want to chainload grldr (grub4dos bootloader) from a CD and if you want to let grldr search for its menu.lst file on the CD. For more info: http://www.b...
2009 Jun 20
3
chaining support
Hi, An issue that's been cropping up recently is chaining support. We discussed this a bit at FOMS 2008, and there are some open issues. There was talk of making some skeleton-like metadata that spans chain boundaries (or perhaps putting into skeleton a "chain identifier"). Other things that need to be specced out: * edits vs. playlists: ho...
2016 Jul 14
3
[PATCH] : Adding dlabel option to chain.c32
On 07/14/16 05:56, Ady Ady via Syslinux wrote: > > @Peter, Erwan, Gene, Michal, (and anyone else interested)... > > Although I haven't actually tested Erwan's patch, would it be > acceptable by you (all) if I were to send a patch to this Syslinux > Mailing List with the same code while changing the wording as I > previously suggested in a prior email? Would it be
2012 Nov 06
50
chain.c32 (and partiter) updates v2
This is a bit updated set of chain.c32 changes that simplifies a few things (and in partiter part), fixes few minor issues and adds a few new features. Details are in the following commits, below is the summary and pull details at the end. Shao - any chance to peek over them ? Most of those are relatively simple changes and well t...
2018 Dec 01
20
[Bug 1305] New: Rules in second chain same hook ignored if first chain has policy drop
https://bugzilla.netfilter.org/show_bug.cgi?id=1305 Bug ID: 1305 Summary: Rules in second chain same hook ignored if first chain has policy drop Product: nftables Version: unspecified Hardware: x86_64 OS: Debian GNU/Linux Status: NEW Severity: normal Priority: P5 Component: nft...
2020 Jul 17
2
Selection DAG chain question
newbee here. What's the difference between glue and chain? Why can't we add chains to any node we want? On Fri, Jul 17, 2020, 10:25 PM Björn Pettersson A via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Still sounds to me as Glue might help (as already proposed by Craig), but > maybe I’ve misunderstood something. > > > > A...
2014 Jun 29
10
[PATCH 0/6] chain.c32 patches
...ions) and implements strict flag with more fine grained control which should fix issues with sanity checks against disk sizes. If this set is allright I'd want to do what I mentioned in older discussion with Ady - backport missing patches from 6.x to 5.x and 4.x so all versions have up to date chain version. Michal Soltys (6): chain/partiter: fix and improve gpt handling in buggy cases chain/partiter: fix possible non-NULL value returned by pi_begin() on error chain/partiter: adjust error reporting chain: add missing pi_del() in find*() functions chain: implement strict=<0|1|2&g...
2020 Jul 20
2
Selection DAG chain question
...ould work as well. I'm not sure if glue would help, since the nodes A->B, C->D from example above are not necessarily adjacent. More hooks into the selection DAG builder may be an idea for a LLVM extension. For example in this case, custom allowing for a node to be built with an existing chain would have been helpful. On Fri, Jul 17, 2020 at 11:06 AM Craig Topper via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Chains represent a dependency between nodes that can't be represented by a > data dependency. For example a load following a store that might alias with >...
2018 Nov 14
3
[Bug 1295] New: Access decision from previous priority
...OS: Debian GNU/Linux Status: NEW Severity: enhancement Priority: P5 Component: nft Assignee: pablo at netfilter.org Reporter: Vincent.VSmeets at GMail.com Hallo, https://wiki.nftables.org/wiki-nftables/index.php/Configuring_chains#Base_chain_priority describes that all the chains for a hook are executed in the order of the priority. The higher priority chains overrule the decision of the lower priority chains. The example from the wiki: table inet filter { # this chain is evaluated first due to priority cha...
2010 Jun 25
1
chain.c32 GPT Support
Hello all. Here[1] is a branch where chain.c32 can chain-boot a partition on a GPT disk when given the partition index. boot: chain hd1 84 (For example.) - Shao Miller [1] http://git.zytor.com/?p=users/sha0/syslinux.git;a=shortlog;h=refs/heads/ chain_gpt
2020 Jul 16
3
Selection DAG chain question
Re: Do they really need to be chained with each other or anything else Yes. For 2 reasons. Our architecture lowers udivmem into something with 1 producer and 2 consumers. Reason 1) neither the producers nor the consumers must get reordered. Reason 2) one of the consumers might be missing (either the div or mod consumer might not be p...
2020 Jul 16
2
Selection DAG chain question
I need to lower a node into something in the machine that has side effects, i.e. needs a chain. Specifically it's actually UDIVREM. UDIVREM does not have a chain. I can custom lower UDIVREM into the nodes I want, with chain, I can even chain the new nodes and connect them to entry and root with token factors. But then the new nodes are not chained with respect to other nodes, or not chai...
2015 Feb 13
2
[LLVMdev] DAGCombiner::MergeConsecutiveStores
...nd then the code goes like this: // Replace one of the loads with the new load. LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode); DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), SDValue(NewLoad.getNode(), 1)); // Remove the rest of the load chains. for (unsigned i = 1; i < NumElem ; ++i) { // Replace all chain users of the old load nodes with the chain of the new // load node. LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode); DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain()); } And...
2013 Jan 07
2
chain.c32 bug
i`ve found a bug in chain.c32 in v4.06. When i use isolinux it does not run windows7 installation, chainloading bootmgr. the error is: Can't find myself on the drive I booted from. chain.c32 from syslinux 3.xx works like a charm! chain.c32 from syslinux 5 shous tat this is not a com32 app
2013 Dec 12
3
Puppetlabs-firewall and Logging
...{ ''002 accept related established rules INPUT'': proto => ''all'', state => [''RELATED'', ''ESTABLISHED''], action => ''accept'' } firewall { ''003 accept related established rules OUTPUT'': chain => ''OUTPUT'', proto => ''all'', state => [''RELATED'', ''ESTABLISHED''], action => ''accept'' } *This works for new inbound SSH connections:* firewall { ''007 fwd to ssh_in'': chain =&g...
2016 Jul 15
0
[PATCH] : Add diskbypartname option to chain.c32
...with a (Protective) MBR in a GPT scheme booting in BIOS / CSM mode. I am basing this patch on Syslinux 6.04-pre1. At the time of writing this email, it is also equivalent to basing it on the current git master head. If the patch is accepted, it would be helpful for users to also see 'doc/chain.txt' being patched. Additional potential rewording in 'com32/chain/{chain.c,options.c} might be helpful too in future separated patches. I took Erwan's patch and slightly modified it with some rewording and by changing "dlabel" to "diskbypartname". I hope I'v...
2008 Feb 27
6
"no space left on device" related to directory limit
Hello, We have a 3-node cluster setup with ocfs2. Since friday one of the nodes went down and would not become clustermember after a reboot because it was unable to write to the ocfs2 filesystem. Message: no space left on device. There is plenty of diskspace though. No problem whatsoever to create a file / directory on the filesystem using one of the other nodes. Today one of the remaining