search for: _reset

Displaying 14 results from an estimated 14 matches for "_reset".

Did you mean: reset
2023 Feb 15
1
[libnbd PATCH v3 05/29] vector: (mostly) factor out DEFINE_VECTOR_EMPTY
...e, in all 11 cases, the freeing of the vector's strings is > immediately followed by the release of the vector's array-of-pointers too. > (This additional step is not expressed consistently across libnbd: it's > sometimes spelled as free(vec.ptr), sometimes as > string_vector_reset(&vec).) As Rich pointed out, just because libnbd is always passing 'free' does not mean that nbdkit is doing likewise, and we want to keep this file shared between the two projects. Being able to conditionally add the cleanup function (where we don't want it on non-pointer vectors...
2023 Feb 22
2
[libnbd PATCH v3 05/29] vector: (mostly) factor out DEFINE_VECTOR_EMPTY
...;> > >>> DEFINE_VECTOR_TYPE (int_vector, int, noop); > >> > >> My counter-arguments: > >> > >> - this requires updates to all existent DEFINE_VECTOR_TYPE macro > >> invocations, > >> > >> - with "noop" passed to _reset, _reset and _empty become effectively the > >> same, so we get (at least partially) duplicate APIs, > >> > >> - this would be a step towards combinatorial explosion > >> > >> - if "noop" does nothing, then why call it on each element of the vec...
2006 Jun 19
0
EVE Online support
...that manualy creates the directories http://bugs.winehq.org/show_bug.cgi?id=4872 workaround for Nvidia users in the patchfile (there where several proposed fixes for this bug on the patch list) http://bugs.winehq.org/show_bug.cgi?id=5168 workaround in the patchfile (added some cleanup stuff in the _Reset function but there are still resources bound after completing the function and the strangest thing is that returning an error seems to work better for Eve than returning OK) http://bugs.winehq.org/show_bug.cgi?id=5169 a workaround is also in the patch (makes the window managed and allows managed wi...
2003 Mar 04
6
[Bug 22] Linux kernel crashes when incoming/outgoing interfaces differ
https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=22 laforge@netfilter.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bowles@ambisys.com Component|unknown |ip_tables (kernel) OS/Version|other
2020 Oct 27
0
[PATCH libnbd 1/5] common/utils: Copy simple vector library from nbdkit.
...\ + \ + /* Remove all elements and deallocate the vector. */ \ + static inline void \ + name##_reset (name *v) \ + { \ + free (v->ptr); \ + v->ptr = NULL; \ + v-&g...
2017 Jul 20
0
Wine release 2.0.2
...ls 42559 Adobe Reader DC: No longer installs (Unimplemented function msi.dll.MsiGetComponentPathExW) 42575 Multiple applications need msvcp140.dll.?_LogScheduleTask at _TaskEventLogger@details at Concurrency@@QAEX_N at Z 42576 Poedit crashes on start on unimplemented function msvcp140.dll.?_Reset at _ContextCallback@details at Concurrency@@AAEXXZ 42578 WSAStringToAddress fails to parse IP v6 addresses with port number 42626 unimplemented function msvcr110.dll.__crtUnhandledException 42651 ViStart: fails to install, needs ntoskrnl.exe.IoReportResourceForDetection 42655 Aliens vs....
2008 Feb 08
0
Wine release 0.9.55
...f non-standard fixed function attrib types. wined3d: Correct the srgb reading check. wined3d: Fix dxtn format check. wined3d: Move the float format check to the big switch statement. wined3d: Move vertex buffer vbo creation to PreLoad. wined3d: Recreate the contexts on _Reset. wined3d: Restore the stateblock after Reset. wined3d: Tear down the dummy textures before resetting. wined3d: Move the highpart of the driver version to the gl structure. wined3d: Separate OpenGL and driver version. wined3d: Create VBOs. ddraw: Some drivers retu...
2017 Mar 17
0
Wine release 2.4
...70 42559 Adobe Reader DC: No longer installs (Unimplemented function msi.dll.MsiGetComponentPathExW) 42575 Multiple applications need msvcp140.dll.?_LogScheduleTask at _TaskEventLogger@details at Concurrency@@QAEX_N at Z 42576 Poedit crashes on start on unimplemented function msvcp140.dll.?_Reset at _ContextCallback@details at Concurrency@@AAEXXZ 42578 WSAStringToAddress fails to parse IP v6 addresses with port number 42586 Adobe Reader DC crashes on startup (needs GetCurrentPackageFullName stub) 42603 Steep (Ubisoft) needs iphlpapi.dll.NotifyUnicastIpAddressChange 42625 Flushin...
2020 Jul 14
3
[PATCH nbdkit RFC 0/2] curl: Implement authorization scripts.
This is an RFC only, at the very least it lacks tests. This implements a rather complex new feature in nbdkit-curl-plugin allowing you to specify an external shell script that can be used to fetch an authorization token for services which requires a token or cookie for access, especially if that token must be renewed periodically. The motivation can be seen in the changes to the docs in patch 2.
2020 Oct 27
6
[PATCH libnbd 0/5] info: --map: Coalesce adjacent extents of the same type.
This adds coalescing of adjacent extents of the same type, as mentioned by Eric Blake in the commit message here: https://github.com/libguestfs/libnbd/commit/46072f6611f80245846a445766da071e457b00cd The patch series is rather long because it detours through adding the <vector.h> library from nbdkit into libnbd and replacing ad hoc uses of realloc, char ** etc in various places. Rich.
2013 Aug 21
10
[PATCH v3 0/7] Enable Drivers for Intel MIC X100 Coprocessors.
ChangeLog: ========= v2 => v3: a) Patch 1 data structure cleanups, header file include cleanups, IDA interface reuse and switching to device_create_with_groups(..) as per feedback from Greg Kroah-Hartman. b) Patch 7 signal documentation, sleep workaround removal and sysfs access API cleanups as per feedback from Michael S. Tsirkin. v1 => v2: @ http://lwn.net/Articles/563131/ a)
2013 Aug 21
10
[PATCH v3 0/7] Enable Drivers for Intel MIC X100 Coprocessors.
ChangeLog: ========= v2 => v3: a) Patch 1 data structure cleanups, header file include cleanups, IDA interface reuse and switching to device_create_with_groups(..) as per feedback from Greg Kroah-Hartman. b) Patch 7 signal documentation, sleep workaround removal and sysfs access API cleanups as per feedback from Michael S. Tsirkin. v1 => v2: @ http://lwn.net/Articles/563131/ a)
2013 Sep 05
16
[PATCH RESEND v3 0/7] Enable Drivers for Intel MIC X100 Coprocessors.
ChangeLog: ========= v2 => v3: a) Patch 1 data structure cleanups, header file include cleanups, IDA interface reuse and switching to device_create_with_groups(..) as per feedback from Greg Kroah-Hartman. b) Patch 7 signal documentation, sleep workaround removal and sysfs access API cleanups as per feedback from Michael S. Tsirkin. v1 => v2: @ http://lwn.net/Articles/563131/ a)
2013 Sep 05
16
[PATCH RESEND v3 0/7] Enable Drivers for Intel MIC X100 Coprocessors.
ChangeLog: ========= v2 => v3: a) Patch 1 data structure cleanups, header file include cleanups, IDA interface reuse and switching to device_create_with_groups(..) as per feedback from Greg Kroah-Hartman. b) Patch 7 signal documentation, sleep workaround removal and sysfs access API cleanups as per feedback from Michael S. Tsirkin. v1 => v2: @ http://lwn.net/Articles/563131/ a)