search for: deferr

Displaying 20 results from an estimated 72 matches for "deferr".

Did you mean: defer
2006 Mar 15
3
softirq bound to vcpus
In "Understanding the Linux Kernel" 3rd edition, section 4.7 "Softirqs and Tasklets" it states: "Activation and execution [of defferable functions] are bound together: a deferrable function that has been activated by a given CPU must be executed on the same CPU. There is no self-evident reason suggesting that this rule is beneficial for system performance. Binding the deferrable function to the activating CPU could in theory make better use of the CPU hardware cache. Afte...
2013 Jun 14
0
Support for deferrable constraints in PostgreSQLAdapter#disable_referential_integrity
...This means the foreign key constraints are still being enforced, and while #disable_referential_integrity doesn''t raise any errors, referential integrity is not being disabled! There is another approach that doesn''t require superuser privs, and that is to use SET CONSTRAINTS ALL DEFERRED, which defers evaluation of constraints until the end of the current transaction. This approach has two requirements. First, it must be issued within a transaction - if there is no current transaction, the statement has no effect. Second, the constraints must have been created with the DEFERRABLE...
2018 May 25
0
Wine release 3.9
...ure paths in MsiGetPropertyA(). msi: Handle the remote case directly in MsiGetTargetPathA(). msi: Avoid using awstring in MsiGetTargetPathW(). msi: Handle the remote case directly in MsiGetSourcePathA(). msi: Avoid using awstring in MsiGetSourcePathW(). msi/tests: Test deferral of CreateFolders and RemoveFolders. msi/tests: Test deferral of CreateShorcuts and RemoveShortcuts. msi/tests: Test deferral of DeleteServices. msi/tests: Test deferral of InstallServices. msi/tests: Test deferral of StartServices and StopServices. winedbg: Use gdb...
2018 Jun 11
0
Wine release 3.10
...to 1.1.76. Stefan Leichter (2): ntdll: Partly implement RtlDosPathNameToRelativeNtPathName_U_WithStatus. ntdll: Implement RtlReleaseRelativeName. Thomas Faber (2): jscript: Fix MSVC build. ole32/tests: Store GUIDs by reference. Zebediah Figura (50): msi/tests: Test deferral of RegisterClassInfo and UnregisterClassInfo. msi/tests: Test deferral of RegisterExtensionInfo and UnregisterExtensionInfo. msi/tests: Test deferral of RegisterFonts and UnregisterFonts. msi/tests: Test deferral of RegisterMimeInfo and UnregisterMimeInfo. msi/tests: Simpl...
2009 Nov 19
1
lda deliver + vpopmail
Hi all, I'm enjoying using dovecot deliver with qmail+vpopmail+dspam. It works mostly fine, I like the indexing and sieve features with dovecot deliver. I would like to get more details on trouble, the log entry is just : " 2009-11-18_20:38:55.64778 delivery 50833: deferral: " As you see, there no reason for the deferral. How can I make deliver more verbose ? I also have a vpopmail alias issue. Because some domains (sadly) needs a catchall, and to keep using the useful vpopmail alias features, I'm using the following ugly script : " #!/bin/sh email=...
2012 Feb 08
18
[PATCH 0 of 4] Prune outdated/impossible preprocessor symbols, and update VIOAPIC emulation
Patch 1 removes CONFIG_SMP Patch 2 removes separate smp_{,r,w}mb()s as a result of patch 1 Patch 4 removes __ia64__ defines from the x86 arch tree Patch 3 is related to patch 4 and changes the VIOAPIC to emulate version 0x20 as a performance gain. It preceeds Patch 4 so as to be more clear about the functional change. Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
2004 Jan 19
18
Hi
Test =) soddsjbmshdwqwu -- Test, yep.
2008 Aug 06
6
Event loop responsiveness + client
Hello, on the application that I''m working on, we are using Thin. The server implements long polling and commands that alter its internal state. Connecting to the long poll is a very fast operation, while updating the state of the server is a relatively slow operation. The long poll connection is held open until there is a change to be sent to the connection. Here is my current
2008 Aug 22
6
EventMachine website down?
Hi all Is the EventMachine website (www.rubyeventmachine.com) down? I can''t access it from South Africa, and have tried using tor as well with no luck. I''m kinda new to EventMachine, so I first have a lot of examples to work through and reading to do before I start pestering the mailing list with questions. Thanks to everyone who partook in creating the library, so far
2008 Dec 01
6
My God, it is full of stars
...server is, which coincidentally also hosts the mailing lists you are reading right now. After three short hours and (AFAICS) no lost mail we now have the following situation: The mailq on the old mail server now is empty, while the new one is already fighting with stale dns info, unknown users, deferrals and so on. Normal insanity, I'd say. One word to our moderators and/or mailing list administrators: Everything should work as it did on the old machine. If your list *admin* password isn't working anymore, please drop me a mail so we can clear that up. Everybody else: Send even more m...
2008 Dec 01
6
My God, it is full of stars
...server is, which coincidentally also hosts the mailing lists you are reading right now. After three short hours and (AFAICS) no lost mail we now have the following situation: The mailq on the old mail server now is empty, while the new one is already fighting with stale dns info, unknown users, deferrals and so on. Normal insanity, I'd say. One word to our moderators and/or mailing list administrators: Everything should work as it did on the old machine. If your list *admin* password isn't working anymore, please drop me a mail so we can clear that up. Everybody else: Send even more m...
2006 Jan 11
0
Easy Question, I Think
...-------------- CREATE TABLE part_names ( id serial primary key, part_name character varying NOT NULL, group_id integer not null, description character varying, idx_part_name tsvector ); ALTER TABLE part_names ADD CONSTRAINT pn_group FOREIGN KEY (group_id) REFERENCES groups(id) DEFERRABLE INITIALLY DEFERRED; CREATE TABLE part_numbers ( id serial primary key, part_number integer NOT NULL, constraint chk_part_number check (part_number ~''[0-9]*'') ); CREATE TABLE parts ( id serial primary key, part_number_id integer NOT NULL, part_name_id...
2006 Jan 12
0
Easy Question, I Think [re-post, sorry if dupe]
...-------------- CREATE TABLE part_names ( id serial primary key, part_name character varying NOT NULL, group_id integer not null, description character varying, idx_part_name tsvector ); ALTER TABLE part_names ADD CONSTRAINT pn_group FOREIGN KEY (group_id) REFERENCES groups(id) DEFERRABLE INITIALLY DEFERRED; CREATE TABLE part_numbers ( id serial primary key, part_number integer NOT NULL, constraint chk_part_number check (part_number ~''[0-9]*'') ); CREATE TABLE parts ( id serial primary key, part_number_id integer NOT NULL, part_name_id...
2008 Jan 29
1
std::runtime_error when calling EM::stop
When I call EM::stop from within a Deferrable callback, I''m getting the following: terminate called after throwing an instance of ''std::runtime_error'' what(): already initialized Abort trap Is there any way to trace this a little further? -- Duane Johnson
2006 Jan 19
1
[Newbie] undefined method `useremail'' error
...ONSTRAINT "tblUser_UserID_key" UNIQUE("UserID"), CONSTRAINT "FK_PersonTitleID" FOREIGN KEY ("PersonTitleID") REFERENCES "public"."tblPersonTitle"("PersonTitleID") ON DELETE NO ACTION ON UPDATE NO ACTION NOT DEFERRABLE, CONSTRAINT "FK_SecretQuestionID" FOREIGN KEY ("SecretQuestionID") REFERENCES "public"."tblSecretQuestion"("SecretQuestionID") ON DELETE NO ACTION ON UPDATE NO ACTION NOT DEFERRABLE ) WITH OIDS;
2005 Oct 15
1
general shaping rules
...could someone be so kind to expleain me it? Any router performing a shaping function should be the bottleneck on the link, and should be shaping slightly below the maximum available link bandwidth. This prevents queues from forming in other routers, affording maximum control of packet latency/deferral to the shaping device.
2019 May 12
0
[PATCH v7 0/7] Add virtio-iommu driver
...driver and future changes should go via the IOMMU tree. > > You can find Linux driver and kvmtool device on v0.9.2 branches [3], > module and x86 support on virtio-iommu/devel. Also tested with Eric's > QEMU device [4]. Please note that the series depends on Robin's > probe-deferral fix [5], which will hopefully land in v5.0. > > [1] Virtio-iommu specification v0.9, sources and pdf > git://linux-arm.org/virtio-iommu.git virtio-iommu/v0.9 > http://jpbrucker.net/virtio-iommu/spec/v0.9/virtio-iommu-v0.9.pdf > > [2] [PATCH v6 0/7] Add virtio-iommu dri...
2006 Mar 09
0
[LLVMdev] Re: Garbage collection questions
...ogic/magic? The problem I'm currently unsure of, is how roots would affect refcounts. Should the gcread/gcwrite not be used with stack refs, etc? 1. If root refs are NOT included in the count, then objects of refcount 0 must be tracked in a list of scheduled deletions, but will be continually deferred until the root goes out of scope (the deletion list is filtered during a collection by the roots callback). 2. If root refs ARE included in the count, then this deferral overhead is avoided, at the expense of more refcount increment/decrement costs (on entry and exit from each function). I'...
2019 May 12
2
[PATCH v7 0/7] Add virtio-iommu driver
...driver and future changes should go via the IOMMU tree. > > You can find Linux driver and kvmtool device on v0.9.2 branches [3], > module and x86 support on virtio-iommu/devel. Also tested with Eric's > QEMU device [4]. Please note that the series depends on Robin's > probe-deferral fix [5], which will hopefully land in v5.0. > > [1] Virtio-iommu specification v0.9, sources and pdf > git://linux-arm.org/virtio-iommu.git virtio-iommu/v0.9 > http://jpbrucker.net/virtio-iommu/spec/v0.9/virtio-iommu-v0.9.pdf > > [2] [PATCH v6 0/7] Add virtio-iommu dri...
2019 May 12
2
[PATCH v7 0/7] Add virtio-iommu driver
...driver and future changes should go via the IOMMU tree. > > You can find Linux driver and kvmtool device on v0.9.2 branches [3], > module and x86 support on virtio-iommu/devel. Also tested with Eric's > QEMU device [4]. Please note that the series depends on Robin's > probe-deferral fix [5], which will hopefully land in v5.0. > > [1] Virtio-iommu specification v0.9, sources and pdf > git://linux-arm.org/virtio-iommu.git virtio-iommu/v0.9 > http://jpbrucker.net/virtio-iommu/spec/v0.9/virtio-iommu-v0.9.pdf > > [2] [PATCH v6 0/7] Add virtio-iommu dri...