search for: cmd_map

Displaying 8 results from an estimated 8 matches for "cmd_map".

Did you mean: md_map
2009 Sep 30
1
SCSI driver for VMware's virtual HBA - V5.
...ne SGL_SIZE PAGE_SIZE > + > +#define pvscsi_dev(adapter) (&(adapter->dev->dev)) > + > +struct pvscsi_sg_list { > + struct PVSCSISGElement sge[PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT]; > +}; > + > +struct pvscsi_ctx { > + /* > + * The index of the context in cmd_map serves as the context ID for a > + * 1-to-1 mapping completions back to requests. > + */ > + struct scsi_cmnd *cmd; > + struct pvscsi_sg_list *sgl; > + struct list_head list; > + dma_addr_t dataPA; > + dma_addr_t sensePA; > + dma_addr_t sglPA; > +}; > + > +stru...
2009 Sep 30
1
SCSI driver for VMware's virtual HBA - V5.
...ne SGL_SIZE PAGE_SIZE > + > +#define pvscsi_dev(adapter) (&(adapter->dev->dev)) > + > +struct pvscsi_sg_list { > + struct PVSCSISGElement sge[PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT]; > +}; > + > +struct pvscsi_ctx { > + /* > + * The index of the context in cmd_map serves as the context ID for a > + * 1-to-1 mapping completions back to requests. > + */ > + struct scsi_cmnd *cmd; > + struct pvscsi_sg_list *sgl; > + struct list_head list; > + dma_addr_t dataPA; > + dma_addr_t sensePA; > + dma_addr_t sglPA; > +}; > + > +stru...
2009 Oct 13
1
SCSI driver for VMware's virtual HBA - V6.
...T_NUM_PAGES_PER_RING 8 +#define PVSCSI_DEFAULT_NUM_PAGES_MSG_RING 1 +#define PVSCSI_DEFAULT_QUEUE_DEPTH 64 +#define SGL_SIZE PAGE_SIZE + +struct pvscsi_sg_list { + struct PVSCSISGElement sge[PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT]; +}; + +struct pvscsi_ctx { + /* + * The index of the context in cmd_map serves as the context ID for a + * 1-to-1 mapping completions back to requests. + */ + struct scsi_cmnd *cmd; + struct pvscsi_sg_list *sgl; + struct list_head list; + dma_addr_t dataPA; + dma_addr_t sensePA; + dma_addr_t sglPA; +}; + +struct pvscsi_adapter { + char *mmioBase; + unsigned int...
2009 Oct 13
1
SCSI driver for VMware's virtual HBA - V6.
...T_NUM_PAGES_PER_RING 8 +#define PVSCSI_DEFAULT_NUM_PAGES_MSG_RING 1 +#define PVSCSI_DEFAULT_QUEUE_DEPTH 64 +#define SGL_SIZE PAGE_SIZE + +struct pvscsi_sg_list { + struct PVSCSISGElement sge[PVSCSI_MAX_NUM_SG_ENTRIES_PER_SEGMENT]; +}; + +struct pvscsi_ctx { + /* + * The index of the context in cmd_map serves as the context ID for a + * 1-to-1 mapping completions back to requests. + */ + struct scsi_cmnd *cmd; + struct pvscsi_sg_list *sgl; + struct list_head list; + dma_addr_t dataPA; + dma_addr_t sensePA; + dma_addr_t sglPA; +}; + +struct pvscsi_adapter { + char *mmioBase; + unsigned int...
2017 Nov 25
2
PSA: debuginfo-tests workflow changing slightly
...ARGV[0]; +my $executable_file = $ARGV[1]; + +my $input_filename = basename $testcase_file; +my $output_dir = dirname $executable_file; + +my $debugger_script_file = "$output_dir/$input_filename.debugger.script"; +my $output_file = "$output_dir/$input_filename.gdb.output"; + +my %cmd_map = (); +# Assume lldb to be the debugger on Darwin. +my $use_lldb = 0; +$use_lldb = 1 if ($Config{osname} eq "darwin"); + +# Extract debugger commands from testcase. They are marked with DEBUGGER: +# at the beginning of a comment line. +open(INPUT, $testcase_file); +open(OUTPUT, ">...
2017 Dec 06
3
PSA: debuginfo-tests workflow changing slightly
..._filename = basename $testcase_file; >> +my $output_dir = dirname $executable_file; >> + >> +my $debugger_script_file = "$output_dir/$input_filename.debugger.script"; >> +my $output_file = "$output_dir/$input_filename.gdb.output"; >> + >> +my %cmd_map = (); >> +# Assume lldb to be the debugger on Darwin. >> +my $use_lldb = 0; >> +$use_lldb = 1 if ($Config{osname} eq "darwin"); >> + >> +# Extract debugger commands from testcase. They are marked with DEBUGGER: >> +# at the beginning of a comment line....
2017 Dec 06
2
PSA: debuginfo-tests workflow changing slightly
...; > + > +my $input_filename = basename $testcase_file; > +my $output_dir = dirname $executable_file; > + > +my $debugger_script_file = "$output_dir/$input_filename.debugger.script"; > +my $output_file = "$output_dir/$input_filename.gdb.output"; > + > +my %cmd_map = (); > +# Assume lldb to be the debugger on Darwin. > +my $use_lldb = 0; > +$use_lldb = 1 if ($Config{osname} eq "darwin"); > + > +# Extract debugger commands from testcase. They are marked with DEBUGGER: > +# at the beginning of a comment line. > +open(INPUT, $testc...
2017 Nov 22
2
PSA: debuginfo-tests workflow changing slightly
I sorta enjoy debugging stuff like this, so if you don't mind, I'll dig into it once I get a chance -- traveling so, my access is a bit sketchy right now. I'll see if I can grab the logs and let you know if I find anything interesting. On Tue, Nov 21, 2017 at 7:04 PM, Zachary Turner <zturner at google.com> wrote: > That change was added specifically to workaround a failure