search for: insb

Displaying 20 results from an estimated 49 matches for "insb".

Did you mean: ins
2007 Apr 30
0
[LLVMdev] Boostrap Failure -- Expected Differences?
...gs > 3e2: 2f das > 3e3: 63 6f 6d arpl %bp,0x6d(%edi) > - 3e6: 70 69 jo 451 <__FUNCTION__.21323+0x1> > + 3e6: 70 69 jo 451 <__FUNCTION__.21236+0x1> > 3e8: 6c insb (%dx),%es:(%edi) > 3e9: 65 gs > - 3ea: 72 2f jb 41b <__FUNCTION__.20810+0xf> > + 3ea: 72 2f jb 41b <__FUNCTION__.20724+0xf> > 3ec: 6c insb (%dx),%es:(%edi) > 3ed: 6c...
2007 Apr 27
2
[LLVMdev] Boostrap Failure -- Expected Differences?
The saga continues. I've been tracking the interface changes and merging them with the refactoring work I'm doing. I got as far as building stage3 of llvm-gcc but the object files from stage2 and stage3 differ: warning: ./cc1-checksum.o differs warning: ./cc1plus-checksum.o differs (Are the above two ok?) The list below is clearly bad. I think it's every object file in the
2023 Aug 01
0
[linux-next:master] BUILD REGRESSION a734662572708cf062e974f659ae50c24fc1ad17
...of 'inl_p' include/asm-generic/io.h:660:16: error: redefinition of 'outb_p' include/asm-generic/io.h:668:16: error: redefinition of 'outw_p' include/asm-generic/io.h:676:16: error: redefinition of 'outl_p' include/asm-generic/io.h:689:14: error: redefinition of 'insb' include/asm-generic/io.h:697:14: error: redefinition of 'insw' include/asm-generic/io.h:705:14: error: redefinition of 'insl' include/asm-generic/io.h:713:15: error: redefinition of 'outsb' include/asm-generic/io.h:722:15: error: redefinition of 'outsw' include/...
2007 Apr 18
1
[RFC, PATCH 16/24] i386 Vmi io header
...INT16 port, VMI_UINT32 count) +{ + vmi_wrap_call( + INS, "rep; insl", + VMI_NO_OUTPUT, + 3, XCONC("D"(addr), "c"(count), "d"(port)), + VMI_CLOBBER_EXTENDED(ZERO_RETURNS, "edi", "ecx", "memory")); +} + +static inline void vmi_insb(VMI_UINT8 *addr, const VMI_UINT16 port, VMI_UINT32 count) +{ + vmi_wrap_call( + INSB, "rep; insb", + VMI_NO_OUTPUT, + 3, XCONC("D"(addr), "c"(count), "d"(port)), + VMI_CLOBBER_EXTENDED(ZERO_RETURNS, "edi", "ecx", "memory"));...
2007 Apr 18
1
[RFC, PATCH 16/24] i386 Vmi io header
...INT16 port, VMI_UINT32 count) +{ + vmi_wrap_call( + INS, "rep; insl", + VMI_NO_OUTPUT, + 3, XCONC("D"(addr), "c"(count), "d"(port)), + VMI_CLOBBER_EXTENDED(ZERO_RETURNS, "edi", "ecx", "memory")); +} + +static inline void vmi_insb(VMI_UINT8 *addr, const VMI_UINT16 port, VMI_UINT32 count) +{ + vmi_wrap_call( + INSB, "rep; insb", + VMI_NO_OUTPUT, + 3, XCONC("D"(addr), "c"(count), "d"(port)), + VMI_CLOBBER_EXTENDED(ZERO_RETURNS, "edi", "ecx", "memory"));...
2012 Jul 24
1
Problems with HVM S3
...(XEN) HVM14: pci dev 01:2 bar 20 size 00000020: 0000c201 (XEN) HVM14: pci dev 01:1 bar 20 size 00000010: 0000c221 (XEN) HVM14: Multiprocessor initialisation: (XEN) HVM14: - CPU0 ... 36-bit phys ... fixed MTRRs ... var MTRRs [2/8] ... done. (XEN) HVM14: Testing HVM environment: (XEN) HVM14: - REP INSB across page boundaries ... passed (XEN) HVM14: - GS base MSRs and SWAPGS ... passed (XEN) HVM14: Passed 2 of 2 tests (XEN) HVM14: Writing SMBIOS tables ... (XEN) HVM14: Loading ROMBIOS ... (XEN) HVM14: 12604 bytes of ROMBIOS high-memory extensions: (XEN) HVM14: Relocating to 0xfc001000-0xfc00413...
2016 Apr 13
0
[PATCH 1/1] x32 support
...ot;+S" (__d), "+c"(__n) + : "d"(__p)); +} + +static __inline__ void outsl(__u16 __p, const void *__d, __u64 __n) +{ + asm volatile ("cld; rep; outsl" + : "+S" (__d), "+c"(__n) + : "d"(__p)); +} + +static __inline__ void insb(__u16 __p, void *__d, __u64 __n) +{ + asm volatile ("cld; rep; insb" + : "+D" (__d), "+c"(__n) + : "d"(__p)); +} + +static __inline__ void insw(__u16 __p, void *__d, __u64 __n) +{ + asm volatile ("cld; rep; insw" + : "+D" (_...
2007 Apr 18
4
[RFC, PATCH 3/24] i386 Vmi interface definition
...a page should be shadowed */ \ + VDEF(AllocatePage) \ + /* Release shadowed parts of a page */ \ + VDEF(ReleasePage) \ + VDEF(InvalPage) \ + VDEF(FlushTLB) \ + VDEF(FlushDeferredCalls) \ + VDEF(SetLinearMapping) \ + VDEF(IN) \ + VDEF(INB) \ + VDEF(INW) \ + VDEF(INS) \ + VDEF(INSB) \ + VDEF(INSW) \ + VDEF(OUT) \ + VDEF(OUTB) \ + VDEF(OUTW) \ + VDEF(OUTS) \ + VDEF(OUTSB) \ + VDEF(OUTSW) \ + VDEF(SetIOPLMask) \ + VDEF(DeactivatePxELongAtomic) \ + VDEF(TestAndSetPxELongBit) \ + VDEF(TestAndClearPxELongBit) \ + VDEF(SetInitialAPState) \ + VDEF(APICWrite...
2007 Apr 18
4
[RFC, PATCH 3/24] i386 Vmi interface definition
...a page should be shadowed */ \ + VDEF(AllocatePage) \ + /* Release shadowed parts of a page */ \ + VDEF(ReleasePage) \ + VDEF(InvalPage) \ + VDEF(FlushTLB) \ + VDEF(FlushDeferredCalls) \ + VDEF(SetLinearMapping) \ + VDEF(IN) \ + VDEF(INB) \ + VDEF(INW) \ + VDEF(INS) \ + VDEF(INSB) \ + VDEF(INSW) \ + VDEF(OUT) \ + VDEF(OUTB) \ + VDEF(OUTW) \ + VDEF(OUTS) \ + VDEF(OUTSB) \ + VDEF(OUTSW) \ + VDEF(SetIOPLMask) \ + VDEF(DeactivatePxELongAtomic) \ + VDEF(TestAndSetPxELongBit) \ + VDEF(TestAndClearPxELongBit) \ + VDEF(SetInitialAPState) \ + VDEF(APICWrite...
2015 Dec 04
0
[PATCH 1/6] x86: Add VMWare Host Communication Macros
..., \ + "d"(port_num) : \ + "memory", "cc"); \ +}) + + +#define VMW_PORT_HB_IN(cmd, in1, port_num, magic, \ + eax, ebx, ecx, edx, si, di, bp) \ +({ \ + asm volatile ("push %%rbp;" \ + "xchgq %6, %%rbp;" \ + "rep insb;" \ + "xchgq %%rbp, %6;" \ + "pop %%rbp" : \ + "=a"(eax), \ + "=b"(ebx), \ + "=c"(ecx), \ + "=d"(edx), \ + "+S"(si), \ + "+D"(di), \ + "+r"(bp) : \ + &quot...
2015 Dec 04
0
[PATCH 1/6] x86: Add VMWare Host Communication Macros
..., \ + "d"(port_num) : \ + "memory", "cc"); \ +}) + + +#define VMW_PORT_HB_IN(cmd, in1, port_num, magic, \ + eax, ebx, ecx, edx, si, di, bp) \ +({ \ + asm volatile ("push %%rbp;" \ + "xchgq %6, %%rbp;" \ + "rep insb;" \ + "xchgq %%rbp, %6;" \ + "pop %%rbp" : \ + "=a"(eax), \ + "=b"(ebx), \ + "=c"(ecx), \ + "=d"(edx), \ + "+S"(si), \ + "+D"(di), \ + "+r"(bp) : \ + &quot...
2006 Jun 26
0
[klibc 37/43] x86_64 support for klibc
...;+c"(__n) + : "d"(__p)); +} + +static __inline__ void +outsl(unsigned short __p, const void *__d, unsigned long __n) +{ + asm volatile ("cld; rep; outsl" + : "+S" (__d), "+c"(__n) + : "d"(__p)); +} + +static __inline__ void insb(unsigned short __p, void *__d, unsigned long __n) +{ + asm volatile ("cld; rep; insb" + : "+D" (__d), "+c"(__n) + : "d"(__p)); +} + +static __inline__ void insw(unsigned short __p, void *__d, unsigned long __n) +{ + asm volatile ("cld; rep;...
2017 Jun 12
0
issues in plm using random effect model
...he individual effect is negative Millo Giovanni Giovanni_Millo at Generali.com Sat Jan 5 10:10:01 CET 2013 You can find the posts in the archive by rseek.org. Kind regards, Nina Sch?nfelder ----- FernUniversit?t in Hagen Fakult?t f?r Wirtschaftswissenschaft Lehrstuhl f?r Volkswirtschaftslehre, insbes. Makro?konomik 58084 Hagen E-Mail: Nina.Schoenfelder at FernUni-Hagen.de Telefon: +49 2331 987 - 2379 Fax: +49 2331 987 - 391 Hausanschrift: Informationszentrum (IZ, ehemals TGZ) Universit?tsstr. 11 Raum B110 Am 06.06.2017 um 12:00 schrieb r-help-request at r-project.org: > Message: 1 >...
2016 Jan 19
0
[PATCH 1/6] x86: Add VMWare Host Communication Macros
...(in_di) : \ + "memory", "cc"); \ +}) + + +#define VMW_PORT_HB_IN(cmd, in_ecx, in_si, in_di, \ + port_num, magic, \ + eax, ebx, ecx, edx, si, di, bp) \ +({ \ + asm volatile ("push %%rbp;" \ + "xchgq %6, %%rbp;" \ + "rep insb;" \ + "xchgq %%rbp, %6;" \ + "pop %%rbp" : \ + "=a"(eax), \ + "=b"(ebx), \ + "=c"(ecx), \ + "=d"(edx), \ + "=S"(si), \ + "=D"(di), \ + "+r"(bp) : \ + "a"(m...
2016 Jan 19
0
[PATCH 1/6] x86: Add VMWare Host Communication Macros
...(in_di) : \ + "memory", "cc"); \ +}) + + +#define VMW_PORT_HB_IN(cmd, in_ecx, in_si, in_di, \ + port_num, magic, \ + eax, ebx, ecx, edx, si, di, bp) \ +({ \ + asm volatile ("push %%rbp;" \ + "xchgq %6, %%rbp;" \ + "rep insb;" \ + "xchgq %%rbp, %6;" \ + "pop %%rbp" : \ + "=a"(eax), \ + "=b"(ebx), \ + "=c"(ecx), \ + "=d"(edx), \ + "=S"(si), \ + "=D"(di), \ + "+r"(bp) : \ + "a"(m...
2006 Aug 06
2
Windows Explorer hangs when clicking on a samba share
I am new to samba and Linux. I mapped a drive from my Windows XP workstation to the /opt directory on the Linux box. When I am in Windows Explorer and I am viewing the samba drive, I can click on any directory or file on that drive, and the speed is very fast (like a local drive). If I click on another drive and click on the samba drive again after five minutes or so, my workstation hangs
2011 Feb 18
1
VF passthrough problems
...009000 (XEN) HVM1: pci dev 01:2 bar 20 size 00000020: 0000c201 (XEN) HVM1: pci dev 01:1 bar 20 size 00000010: 0000c221 (XEN) HVM1: Multiprocessor initialisation: (XEN) HVM1:  - CPU0 ... 40-bit phys ... fixed MTRRs ... var MTRRs [2/8] ... done. (XEN) HVM1: Testing HVM environment: (XEN) HVM1:  - REP INSB across page boundaries ... passed (XEN) HVM1:  - GS base MSRs and SWAPGS ... passed (XEN) HVM1: Passed 2 of 2 tests (XEN) HVM1: Writing SMBIOS tables ... (XEN) HVM1: Loading ROMBIOS ... (XEN) HVM1: 9628 bytes of ROMBIOS high-memory extensions: (XEN) HVM1:   Relocating to 0xfc000000-0xfc00259c ... d...
2012 Aug 30
1
[PATCH 04/11] vmci_driver.patch: VMCI device driver.
...InPort, + uint8_t *dgInBuffer, + size_t dgInBufferSize) +{ + struct vmci_datagram *dg; + size_t currentDgInBufferSize = PAGE_SIZE; + size_t remainingBytes; + + ASSERT(dgInBufferSize >= PAGE_SIZE); + + insb(dgInPort, dgInBuffer, currentDgInBufferSize); + dg = (struct vmci_datagram *)dgInBuffer; + remainingBytes = currentDgInBufferSize; + + while (dg->dst.resource != VMCI_INVALID_ID || + remainingBytes > PAGE_SIZE) { + unsigned dgInSize; + +...
2012 Aug 30
1
[PATCH 04/11] vmci_driver.patch: VMCI device driver.
...InPort, + uint8_t *dgInBuffer, + size_t dgInBufferSize) +{ + struct vmci_datagram *dg; + size_t currentDgInBufferSize = PAGE_SIZE; + size_t remainingBytes; + + ASSERT(dgInBufferSize >= PAGE_SIZE); + + insb(dgInPort, dgInBuffer, currentDgInBufferSize); + dg = (struct vmci_datagram *)dgInBuffer; + remainingBytes = currentDgInBufferSize; + + while (dg->dst.resource != VMCI_INVALID_ID || + remainingBytes > PAGE_SIZE) { + unsigned dgInSize; + +...
2020 Jan 08
0
[PATCH v2 1/9] iomap: Constify ioreadX() iomem argument (as in generic implementation)
...8-bit bytes from port PORT into memory starting at SRC. */ -void ioread8_rep(void __iomem *port, void *dst, unsigned long count) +void ioread8_rep(const void __iomem *port, void *dst, unsigned long count) { while ((unsigned long)dst & 0x3) { if (!count) @@ -254,7 +254,7 @@ EXPORT_SYMBOL(insb); * the interfaces seems to be slow: just using the inlined version * of the inw() breaks things. */ -void ioread16_rep(void __iomem *port, void *dst, unsigned long count) +void ioread16_rep(const void __iomem *port, void *dst, unsigned long count) { if (unlikely((unsigned long)dst & 0...