Questions tagged [apic]

The APIC units are responsible for delivering interrupts from interrupt sources to interrupt destinations throughout the multiprocessor system.

The Advanced Programmable Interrupt Controller (APIC) is based on a distributed architecture in which interrupt control functions are distributed between two basic functional units, the local unit and the I/O unit. The local and I/O units communicate through a bus called the Interrupt Controller Communications (ICC) bus. The local APIC units also provide interprocessor interrupts (IPIs), which allow any processor to interrupt any other processor or set of processors.

More at Intel MultiProcessor Specification - http://www.intel.com/design/pentium/datashts/24201606.pdf

84 questions
0
votes
1 answer

Removing hyphens in form data in DataPower gateway

we are trying to pass a file in form data but we are unable to remove the hyphens, Content-Disposition and Content-Type. ----------------------------376203720009485735911622 Content-Disposition: form-data; name="";…
0
votes
1 answer

streaming pdf files in datapower gateway

i want to download a pdf which is present in datapower local directory i created a serice and wrote a small gateway script but the pdf in downloading in unreadable format i want the pdf to be downloaded in .pdf format var urlopen =…
0
votes
1 answer

I want to read a file which is in datapower through api gateway v10

I'm using url-open() function but I'm getting an empty response.
0
votes
1 answer

Product Subscription in API Connect v2018

How can I check that how many applications have subscribed to a product in a catalog ? One way is to check the subscription of all application in that catalog however in my case there are so many application that why it's very time consuming to use…
0
votes
1 answer

Intel IO APIC "Established APIC Programming Model"

I was reading the Intel Atom® processor Z8000 series: Datasheet, vol. 1. Can be found here https://cdrdv2.intel.com/v1/dl/getContent/332065. For the IO APIC section, it states the IO APIC features an "Established APIC programming model". Neither…
M. Evers
  • 129
  • 11
0
votes
1 answer

How can a 32-bit APIC ID fit inside 4 bits out of an 8-bit IOAPIC destination field?

Reading both the OSDev Wiki article and the Intel documentation about the two different available APIC types that said article links to left me with more questions than answers, specifically when it comes to the length of the fields. According to…
realkstrawn93
  • 722
  • 1
  • 6
  • 13
0
votes
1 answer

XSLT in API connect version 10 Reserved instance

I am new to API connect development, trying to code a XSLT in API connect reserved instance version 10. I have sample input and XSLT, but getting error while doing the same. Request: Below is the sample SOAP request used as input. …
0
votes
0 answers

Ansible fetch module cannot find file although it exists

I simply want to download a file from a remote NXOS device to the ansible 2.9 controller using the fetch module. The xml looks like this: - name: fetch module sux fetch: src: "/tmp/deleteme/deleteme.txt" dest: "/ansibile-vault" …
MaxWasHere
  • 55
  • 1
  • 8
0
votes
1 answer

Javascript dot notation to retrieve certain element on an object

On IBM API Connect's GatewayScript, I'm trying to write a JS script to get object value from the following request payload: {"number": "1234", "type": "type1", "someKey": "SomeValue"} I'm using the following code, but getting a NULL: var apim =…
liam l
  • 3
  • 2
0
votes
0 answers

How to handle external API tokens after logout

This is a higher level conceptual question. I use token authentication on my django - react app and I handle the token by saving, retrieving it, and removing it from local storage as necessary. The flow is sort of like this: user registers-…
Morks
  • 284
  • 3
  • 15
0
votes
1 answer

cobra.mit.request.QueryError: Unable to process the query, result dataset is too big

I try to run a python cobra sdk script to do a query in cisco aci apic database for class l1PhysIf to obtain a port inventory, code seems to be ok, but when I execute code I get error: cobra.mit.request.QueryError: Unable to process the query,…
0
votes
1 answer

Minimalistic Linux Kernel not compiling

I want to compile an own minimalistic Linux Kernel with make tinyconfig and after doing all steps (like here:) I get this error message: arch/x86/kernel/apic/apic.c:2282:6: error: redefinition of ‘apic_id_disabled’ bool apic_id_disabled(unsigned…
loocars
  • 46
  • 2
0
votes
1 answer

Using Redact Policy in API Connect 2018

I have the below message from where I want to remove the field "Status Code" { "Details": { "UT_LL": 22235, "UT_ZZ": 512, "Status Code": 206, "UT_DATE": "2019-10-02-11.36.16.353965", "UT_TOTAL_REC": 132 …
0
votes
1 answer

How does x86 assigns interrupt number for PCI device in Linux?

My understanding is BIOS or EFI detects the hardware during bootup and determines interrupt number, then passes it to Linux once kernel is up and running. And based on my research the lower the interrupt number the higher its priority. My question…
keye
  • 135
  • 1
  • 14
0
votes
1 answer

How to figure out the interrupt source on I/O APIC?

I understand that I/O APIC chip has 24 PINs, usually single chip system will map PIN 0~23 IRQ 32~55 respectively. Furthermore I could edit the related RTEs to allocate interrupt handler functions. But how can I figure out the I/O APIC interrupt…
Shore
  • 827
  • 9
  • 24