search for: extrainfo

Displaying 16 results from an estimated 16 matches for "extrainfo".

2003 Nov 17
2
[LLVMdev] Packages
...ist in its maintenance (see below). To LLVM its a name and a chunk of data. 2. The name of the section is to allow information from different compilers to be distinguished. 3. LLVM provides a C++ class that represents the named blob. I'll call this class "ExtraInfo". 4. Source compiler writers can subclass ExtraInfo to their heart's content. 5. The ExtraInfo class supports pure virtual methods that are invoked by LLVM to notify its subclass(es) when an optimization causes a function, type or global variable to be de...
2003 Nov 17
0
[LLVMdev] Packages
...maintenance (see below). To LLVM its a name and a chunk of data. > 2. The name of the section is to allow information from different > compilers to be distinguished. > 3. LLVM provides a C++ class that represents the named blob. I'll > call this class "ExtraInfo". > 4. Source compiler writers can subclass ExtraInfo to their heart's > content. > 6. During compilation, any ExtraInfo subclasses created by the > source compiler are attached to the Module object and the > maintenance provided in 5 is inv...
2003 Nov 17
2
[LLVMdev] Packages
On Mon, 2003-11-17 at 21:42, Chris Lattner wrote: > > > 5. The ExtraInfo class supports pure virtual methods that are > > invoked by LLVM to notify its subclass(es) when an optimization > > causes a function, type or global variable to be deleted. No > > other notifications should be necessary. > > This sounds _extremely_...
2023 Aug 03
3
feature request: optim() iteration of functions that return multiple values
Dear all, I have used optim a lot in contexts where it would useful to be able to iterate function myfun that, in addition to the primary objective to be minimized ('minimize.me'), could return other values such as alternative metrics of the minimization, informative intermediate values from the calculations, etc. myfun <- function() { ... return(list(minimize.me = minimize.me, R2 =
2015 Jul 09
2
Constant error messages about failure to remove oplock
...0080 .... .... .... .... .... .... 1... .... = Read Attributes: READ ATTRIBUTES access Create Options: 0x00200000 .... .... ..1. .... .... .... .... .... = Open Reparse Point: Open a Reparse Point File Attributes: 0x00000000 Share Access: 0x00000007 SHARE_DELETE SHARE_WRITE SHARE_READ ExtraInfo DHnQ MxAc QFid This fails with object-not-found 222.667599 10.6.0.101 10.48.66.95 SMB2 131 Create Response, Error: STATUS_OBJECT_NAME_NOT_FOUND SMB2 create request comes to create the file with batch-oplock/request durable handle 222.681571 10.48.66.95 10.6.0.101 SMB2 386 Create Request F...
2023 Feb 22
1
Logon Script is not executed: STATUS_ACCESS_DENIED
...am: Does NOT have Integrity Support .... .... .... ..0. .... .... .... .... = No Scrub Data: Is not excluded from the data integrity scan Reserved: 00000000 GUID handle File: meyert.bat File Id: 89d7e97c-0000-0000-85be-57fa00000000 [Frame handle opened: 147] Blob Offset: 0x00000098 Blob Length: 164 ExtraInfo SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST SMB2_CREATE_QUERY_ON_DISK_ID SMB2_CREATE_REQUEST_LEASE Chain Element: SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST "MxAc" Chain Element: SMB2_CREATE_QUERY_ON_DISK_ID "QFid" Chain Element: SMB2_CREATE_REQUEST_LEASE "RqLs" All seems...
2020 May 01
0
Windows 10 client opens a folder as a file and asks for SMB2 GetInfo SMB2_FILE_STREAM_INFO
...x00000000 Share Access: 0x00000007, Read, Write, Delete Disposition: Open (if file exists open it, else fail) (1) Create Options: 0x00000021 Filename: PathName\Modified\To\Protect\Customer\Sensitive\Data Blob Offset: 0x000001f0 Blob Length: 48 ExtraInfo SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST SMB2_CREATE_QUERY_ON_DISK_ID SMB2 (Server Message Block Protocol version 2) ----------------- Then the client does a SMB2_FIND_ID_BOTH_DIRECTORY_INFO to list the contents of the directory...followed by this...It opens the same path without explicitly asking...
2015 Jul 09
2
Constant error messages about failure to remove oplock
...smbtorture/smb2 test that I wrote is, in the > tcpdump I see that when the original problem happened, in SMB2/create > response, samba returned allocation-size=1MB whereas in my test, this is > not returned. I am not sure how this can happen as SMB2 create request in > tcpdump has > ExtraInfo DHnQ MxAc QFid > (i.e. no ALSI specified in it). Any thoughts? > > Thanks for your inputs! No, sorry, not really. If I had a reproducer I'd probably very quickly be able to see what's going on. The things I'd look at are the debug level 10 log together with the strace. With...
2003 Nov 16
0
[LLVMdev] Packages
On Sun, 2003-11-16 at 17:13, Chris Lattner wrote: > > The point here is that XPL needs to keep track of what a given variable > > represents at the source level. If the compiler sees a map that is > > initially small it might represent it in LLVM assembly as a vector of > > pairs. Later on, it gets optimized into being a hash table. In order to > > do that and keep
2015 Jul 09
0
Constant error messages about failure to remove oplock
...o one difference b/n the smbtorture/smb2 test that I wrote is, in the tcpdump I see that when the original problem happened, in SMB2/create response, samba returned allocation-size=1MB whereas in my test, this is not returned. I am not sure how this can happen as SMB2 create request in tcpdump has ExtraInfo DHnQ MxAc QFid (i.e. no ALSI specified in it). Any thoughts? Thanks for your inputs! --Shyam -----Original Message----- From: Volker Lendecke [mailto:Volker.Lendecke at SerNet.DE] Sent: Thursday, July 09, 2015 12:51 PM To: Shyam Kaushik Cc: samba at lists.samba.org Subject: Re: [Samba] Constant...
2015 Jul 09
1
Constant error messages about failure to remove oplock
On Thu, Jul 09, 2015 at 10:39:58AM +0530, Shyam Kaushik wrote: > Hi All, > > Need your help/inputs on what could be the probable cause/how to debug > this further. > > We are using samba-4.0.25 & expose a share that has oplocks enabled & no > kernel-oplocks set. We constantly see these messages in samba logs > > [2015/06/25 03:05:30.593150, 0, pid=1581,
2003 Nov 16
3
[LLVMdev] Packages
> The point here is that XPL needs to keep track of what a given variable > represents at the source level. If the compiler sees a map that is > initially small it might represent it in LLVM assembly as a vector of > pairs. Later on, it gets optimized into being a hash table. In order to > do that and keep track of things, I need to know that the vector of > pairs is
2003 Nov 18
0
[LLVMdev] Packages
> Yeah, you're right. I thought about it some more after I posted and it > boils down to ExtraInfo actually needing to be notified about EVERY > change. Not fun. Yup. > I've managed to get myself completely confused on this subject, but have > just shed some "old think" from previous compilers. The "old think" is > that the source level symbol stuff must be...
2015 Jul 10
0
Constant error messages about failure to remove oplock
...smbtorture/smb2 test that I wrote is, in the > tcpdump I see that when the original problem happened, in SMB2/create > response, samba returned allocation-size=1MB whereas in my test, this is > not returned. I am not sure how this can happen as SMB2 create request in > tcpdump has > ExtraInfo DHnQ MxAc QFid > (i.e. no ALSI specified in it). Any thoughts? > > Thanks for your inputs! No, sorry, not really. If I had a reproducer I'd probably very quickly be able to see what's going on. The things I'd look at are the debug level 10 log together with the strace. With b...
2012 Apr 20
1
DAHDI-Linux 2.6.1, 2.5.1 and DAHDI-Tools 2.6.1, 2.5.1 Now Available
...pp_dahdi.h | 1 + drivers/dahdi/xpp/xproto.c | 12 +- include/dahdi/kernel.h | 95 +- 35 files changed, 24625 insertions(+), 2612 deletions(-) The DAHDI-Tools short log from 2.6.0 is: Tzafrir Cohen (13): xpp: clean 'Extrainfo' EEPROM field xpp: xpp_fxloader: improve output new build_tools/dahdi_sysfs_copy improve build_tools/dump_sys_state xpp: echo_loader.c: add AB id to messages xpp: bugfix: handle echo_loader errors xpp: Customizable license markers xpp: fix...
2012 Apr 20
1
DAHDI-Linux 2.6.1, 2.5.1 and DAHDI-Tools 2.6.1, 2.5.1 Now Available
...pp_dahdi.h | 1 + drivers/dahdi/xpp/xproto.c | 12 +- include/dahdi/kernel.h | 95 +- 35 files changed, 24625 insertions(+), 2612 deletions(-) The DAHDI-Tools short log from 2.6.0 is: Tzafrir Cohen (13): xpp: clean 'Extrainfo' EEPROM field xpp: xpp_fxloader: improve output new build_tools/dahdi_sysfs_copy improve build_tools/dump_sys_state xpp: echo_loader.c: add AB id to messages xpp: bugfix: handle echo_loader errors xpp: Customizable license markers xpp: fix...