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
1
vote
1 answer

Adding Two Versions of Same API to Product in APIC

I am using IBM API Connect v5. We have an API with two different versions, 1.0.0 and 2.0.0. We have both APIs inside a single Product. From APIMgr we are able to stage and deploy the Product to Marketplace. However, when running CLI we get an error…
geewalk
  • 11
  • 1
1
vote
1 answer

How can I read and write to the IMCR register?

I'm currently programming an x86-64 kernel and need to set the APIC mode to symmetric I/O Mode. The Multiprocessor Specification from Intel at Page 31 says that to enable this mode you have to write 01H to the IMCR register. The problem is that this…
Qubasa
  • 183
  • 8
1
vote
0 answers

Empty namespace being skipped while mapping JSON to an XML SOAP webservice in IBM APIConnect

We have a requirement to map the incoming JSON request into a SOAP XML request to invoke back-end web-service. The schema definition of the XML request has the namespace configured as given below: The "Field2" field has an empty namespace defined…
hssrp
  • 11
  • 1
1
vote
0 answers

What is the difference between initial_apicid and apicid in cpuinfo_x86 struct?

What is the difference between initial_apicid and apicid in struct cpuinfo_x86? I just saw that in case x2apic is not enable those fields may not contain the same value but is not written any else.
Yonatan Amir
  • 85
  • 1
  • 11
1
vote
1 answer

How to read/write LAPIC Registers from Kernel Module?

I'm trying to disable all Interrupts. Most of them are easy, but I have problems with the Non-Maskable Interrupts (NMIs). To disable them, I want to manipulate the LVT Registers in the Local APIC. Currently I am testing inside a Kernel Module, cause…
MatzeWi
  • 31
  • 2
1
vote
1 answer

Facing issue in publishing product in API Connect CLI

While executing apic products publish climb-on.yaml --server mgmnthost.com --org climbon --catalog sandbox i am getting You do not have sufficient permissions to perform this operation. I executed apic orgs --server mgmnthost.com but, i am…
Aman
  • 159
  • 2
  • 15
1
vote
3 answers

Accessing IBM API Connect endpoint through Postman

I just created an REST API in API Connect and the endpoint works when I test it in the APIC assemble tab. It requires a client id and client secret. When I send a request through Postman, I currently get a “Could not get any response” message from…
Artanis
  • 561
  • 1
  • 7
  • 26
1
vote
0 answers

URL inaccessible in local machine but accessible in deployed machine

I have made an api using api connect, When i deploy API on the AWS instance and access it using CURL, it gives me the html code of the page residing there. But when I access the same url from my local machine (by using the address of deployed…
Rezwan
  • 1,203
  • 1
  • 7
  • 22
1
vote
3 answers

Date in input is different from the one saved in database

I am using a type date to get the date but the date that i picked and the date that is saved inside the database is different. The date that is saved will always be the one day before the date that i picked. For example, in my input the date is 8…
sxxxxxxx
  • 565
  • 2
  • 6
  • 17
1
vote
1 answer

Differentiating the different result by background colour

I want to differentiate the values using different colours. Here's a rough idea of what i want to do. I was able to do it for a button but not in a table. When the values are retrieved from the database I want to place a background colour according…
sxxxxxxx
  • 565
  • 2
  • 6
  • 17
1
vote
0 answers

Logical Cluster Mode and using Destination Shorthand to send IPIs

If the OS writes to the APIC's ICR using one of the destination shorthand (All Excluding Self e.g.), then the destination mode is ignored when APIC delivers the message on APIC bus and ALL the processor's will receive the IPI. Does this mean…
JackBauer
  • 11
  • 1
1
vote
1 answer

how single irq line is shared at physical hardware among multiple devices

I want to know how one single irq line is shared among multiple devices, i mean how they are physically connected at hardware level, do they use multiple APIC controllers for this, or what other methods are used.
valmiki
  • 701
  • 9
  • 24
0
votes
1 answer

store image in id3v2 frame apic

I want to find some command line utility (Linux), that can store images in ID3v2 APIC frame but cant find anything, Tried using ID3v2 util but id doesn't support it.
skovrec
  • 131
  • 1
  • 1
  • 11
0
votes
0 answers

Finding whether the input is json or xml without using content-type header in gateway script

Here I am trying to find whether the input payload is a json or xml without using the content type header. In XSLT we have "contains" functions, is there any function that does the same functionality in gateway script?
0
votes
0 answers

How to get header information in API Connect Analytics with out using Activity-log policy

Currently we are using "writeToSpulnk" custom policy to export API transaction logs in API Connect. This custom policy we have designed in such a way that it will send request and response headers to Splunk. So here we are not logging header…