search for: _val

Displaying 20 results from an estimated 70 matches for "_val".

2023 Apr 19
3
bash test ?
Hi guys. I cannot wrap my hear around this: -> $ unset _Val; test -z ${_Val}; echo $? 0 -> $ unset _Val; test -n ${_Val}; echo $? 0 -> $ _Val=some; test -n ${_Val}; echo $? 0 What is this!? How should two different, opposite tests give the same result Is there some bash option which affects that and if so, then what would be the purpose of such nons...
2023 Apr 19
2
bash test ?
On 19/04/2023 08:04, wwp wrote: > Hello lejeczek, > > > On Wed, 19 Apr 2023 07:50:29 +0200 lejeczek via CentOS <centos at centos.org> wrote: > >> Hi guys. >> >> I cannot wrap my hear around this: >> >> -> $ unset _Val; test -z ${_Val}; echo $? >> 0 >> -> $ unset _Val; test -n ${_Val}; echo $? >> 0 >> -> $ _Val=some; test -n ${_Val}; echo $? >> 0 >> >> What is this!? >> How should two different, opposite tests give the same result >> Is there some bash o...
2007 Apr 18
2
[RFC, PATCH 17/24] i386 Vmi msr patch
...SR_H +#define MACH_MSR_H + +#include <vmi.h> + +static inline u64 vmi_rdmsr(const u32 msr) +{ + u64 ret; + vmi_wrap_call( + RDMSR, "rdmsr", + VMI_OREG64 (ret), + 1, "c" (msr), + VMI_CLOBBER(TWO_RETURNS)); + return ret; +} + +#define rdmsr(msr,val1,val2) \ +do { \ + u64 _val = vmi_rdmsr(msr); \ + val1 = (u32)_val; \ + val2 = (u32)(_val >> 32); \ +} while (0) + +static inline void wrmsr(const u32 msr, const u32 valLo, const u32 valHi) +{ + vmi_wrap_call( + WRMSR, "wrmsr", + VMI_NO_OUTPUT, + 3, XCONC("a"(valLo), "d"(valHi), "c&...
2007 Apr 18
2
[RFC, PATCH 17/24] i386 Vmi msr patch
...SR_H +#define MACH_MSR_H + +#include <vmi.h> + +static inline u64 vmi_rdmsr(const u32 msr) +{ + u64 ret; + vmi_wrap_call( + RDMSR, "rdmsr", + VMI_OREG64 (ret), + 1, "c" (msr), + VMI_CLOBBER(TWO_RETURNS)); + return ret; +} + +#define rdmsr(msr,val1,val2) \ +do { \ + u64 _val = vmi_rdmsr(msr); \ + val1 = (u32)_val; \ + val2 = (u32)(_val >> 32); \ +} while (0) + +static inline void wrmsr(const u32 msr, const u32 valLo, const u32 valHi) +{ + vmi_wrap_call( + WRMSR, "wrmsr", + VMI_NO_OUTPUT, + 3, XCONC("a"(valLo), "d"(valHi), "c&...
2009 Nov 19
1
[PATCH libguestfs] syntax-check: expand TABs in generator.ml
...nst char *caller) pr " /* caller will free this */\n"; pr " return safe_memdup (g, &ret.%s, sizeof (ret.%s));\n" n n | RBufferOut n -> - pr " /* RBufferOut is tricky: If the buffer is zero-length, then\n"; - pr " * _val might be NULL here. To make the API saner for\n"; - pr " * callers, we turn this case into a unique pointer (using\n"; - pr " * malloc(1)).\n"; - pr " */\n"; - pr " if (ret.%s.%s_len > 0) {\n" n n; + pr " /* RBuffer...
2011 Mar 03
0
[PATCH] Eliminate the ec_int32 and ec_uint32 typedefs.
...its; if(_fl>0){ _this->val+=_this->rng-IMUL32(r,((1<<_bits)-_fl)); @@ -154,9 +154,9 @@ void ec_encode_bin(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _bits){ /*The probability of having a "one" is 1/(1<<_logp).*/ void ec_enc_bit_logp(ec_enc *_this,int _val,unsigned _logp){ - ec_uint32 r; - ec_uint32 s; - ec_uint32 l; + celt_uint32 r; + celt_uint32 s; + celt_uint32 l; r=_this->rng; l=_this->val; s=r>>_logp; @@ -167,7 +167,7 @@ void ec_enc_bit_logp(ec_enc *_this,int _val,unsigned _logp){ } void ec_enc_icdf(ec_enc *_this,i...
2013 Jul 09
1
[PATCH V3] xen: arm: introduce Cortex-A7 support
...rm/arm32/asm-offsets.c index 776c974..263fff3 100644 --- a/xen/arch/arm/arm32/asm-offsets.c +++ b/xen/arch/arm/arm32/asm-offsets.c @@ -11,6 +11,7 @@ #include <xen/bitops.h> #include <public/xen.h> #include <asm/current.h> +#include <asm/procinfo.h> #define DEFINE(_sym, _val) \ __asm__ __volatile__ ( "\n->" #_sym " %0 " #_val : : "i" (_val) ) @@ -62,6 +63,12 @@ void __dummy__(void) DEFINE(CPUINFO_sizeof, sizeof(struct cpu_info)); OFFSET(VCPU_arch_saved_context, struct vcpu, arch.saved_context); + + BLANK(); + DEFINE(P...
2005 Jul 18
0
why $cdr{'CALLERID'} and $cdr{'DNID'} are empty in perl agi connected with asterisk manager
...TCODE'} = $event{'AppData'} if defined $event{'Application'} && $event{'Application'} eq 'SetAccount'; if( defined $event{'Application'} && $event{'Application'} eq 'SetVar') { my ( $_var, $_val ) = split(/=/, $event{'AppData'}); $channels{$event{'Channel'}}{$_var} = $_val; } }; /Newcallerid/i && do { $channels{$event{'Channel'}}{'CALLERID'} = $event{'Callerid'} if defined $event{'Callerid...
2009 Nov 18
1
[PATCH] generator: Fix API of functions that return RBufferOut
..., const char *caller) pr " /* caller will free this */\n"; pr " return safe_memdup (g, &ret.%s, sizeof (ret.%s));\n" n n | RBufferOut n -> - pr " *size_r = ret.%s.%s_len;\n" n n; - pr " return ret.%s.%s_val; /* caller will free */\n" n n + pr " /* RBufferOut is tricky: If the buffer is zero-length, then\n"; + pr " * _val might be NULL here. To make the API saner for\n"; + pr " * callers, we turn this case into a unique pointer (using\n"; + pr "...
2007 Apr 18
0
[PATCH] paravirt_ops x86_64 , take 2
...- (*b) = _l >> 32; \ - _err; }) - #define rdtsc(low,high) do { \ u64 _l = paravirt_ops.read_tsc(); \ low = (u32)_l; \ @@ -299,6 +311,14 @@ static inline void halt(void) #define rdtscll(val) (val = paravirt_ops.read_tsc()) +#define rdtscp(low,high,aux) do { \ + u64 _val = paravirt_ops.read_tscp(&aux); \ + low = (int)_val; \ + high = _val >> 32; \ +} while (0) + +#define rdtscpll(val, aux) (val) = paravirt_ops.read_tscp(&aux) + #define write_tsc(val1,val2) wrmsr(0x10, val1, val2) #define rdpmc(counter,low,high) do { \ @@ -375,7 +395,6...
2007 Apr 18
0
[PATCH] paravirt_ops x86_64 , take 2
...- (*b) = _l >> 32; \ - _err; }) - #define rdtsc(low,high) do { \ u64 _l = paravirt_ops.read_tsc(); \ low = (u32)_l; \ @@ -299,6 +311,14 @@ static inline void halt(void) #define rdtscll(val) (val = paravirt_ops.read_tsc()) +#define rdtscp(low,high,aux) do { \ + u64 _val = paravirt_ops.read_tscp(&aux); \ + low = (int)_val; \ + high = _val >> 32; \ +} while (0) + +#define rdtscpll(val, aux) (val) = paravirt_ops.read_tscp(&aux) + #define write_tsc(val1,val2) wrmsr(0x10, val1, val2) #define rdpmc(counter,low,high) do { \ @@ -375,7 +395,6...
2007 Apr 18
0
[RFC/PATCH PV_OPS X86_64 01/17] paravirt_ops - core changes
...et_pgd = native_set_pgd, + + .pte_update = (void *)native_nop, + .pte_update_defer = (void *)native_nop, + + .ptep_get_and_clear = native_ptep_get_and_clear, + + .pte_clear = native_pte_clear, + .pmd_clear = native_pmd_clear, + .pud_clear = native_pud_clear, + .pgd_clear = native_pgd_clear, + + .pte_val = native_pte_val, + .pud_val = native_pud_val, + .pmd_val = native_pmd_val, + .pgd_val = native_pgd_val, + + .make_pte = native_make_pte, + .make_pmd = native_make_pmd, + .make_pud = native_make_pud, + .make_pgd = native_make_pgd, + + .swapgs = native_swapgs, + .sysret = native_sysret, + .iret = na...
2007 Apr 18
0
[RFC/PATCH PV_OPS X86_64 01/17] paravirt_ops - core changes
...et_pgd = native_set_pgd, + + .pte_update = (void *)native_nop, + .pte_update_defer = (void *)native_nop, + + .ptep_get_and_clear = native_ptep_get_and_clear, + + .pte_clear = native_pte_clear, + .pmd_clear = native_pmd_clear, + .pud_clear = native_pud_clear, + .pgd_clear = native_pgd_clear, + + .pte_val = native_pte_val, + .pud_val = native_pud_val, + .pmd_val = native_pmd_val, + .pgd_val = native_pgd_val, + + .make_pte = native_make_pte, + .make_pmd = native_make_pmd, + .make_pud = native_make_pud, + .make_pgd = native_make_pgd, + + .swapgs = native_swapgs, + .sysret = native_sysret, + .iret = na...
2013 Jan 21
6
[PATCH v3 0/4] nested vmx: enable VMCS shadowing feature
Changes from v2 to v3: - Use pfn_to_paddr() to get the address from frame number instead of doing shift directly. - Remove some unnecessary initialization code and add "static" to vmentry_fields and gpdptr_fields. - Enable the VMREAD/VMWRITE bitmap only if nested hvm is enabled. - Use clear_page() to set all 0 to the page instead of memset(). - Use domheap to allocate the
2015 Jun 17
0
[PATCH v3 03/18] x86/tsc/paravirt: Remove the read_tsc and read_tscp paravirt hooks
...+ > +#define rdtscl(low) \ > + ((low) = (u32)native_read_tsc()) > + > +#define rdtscll(val) \ > + ((val) = native_read_tsc()) > + > #define rdtscp(low, high, aux) \ > do { \ > unsigned long long _val = native_read_tscp(&(aux)); \ > @@ -202,8 +204,6 @@ do { \ > > #define rdtscpll(val, aux) (val) = native_read_tscp(&(aux)) > > -#endif /* !CONFIG_PARAVIRT */ > - > /* > * 64-bit version of wrmsr_s...
2015 Jun 17
0
[PATCH v3 03/18] x86/tsc/paravirt: Remove the read_tsc and read_tscp paravirt hooks
...+ > +#define rdtscl(low) \ > + ((low) = (u32)native_read_tsc()) > + > +#define rdtscll(val) \ > + ((val) = native_read_tsc()) > + > #define rdtscp(low, high, aux) \ > do { \ > unsigned long long _val = native_read_tscp(&(aux)); \ > @@ -202,8 +204,6 @@ do { \ > > #define rdtscpll(val, aux) (val) = native_read_tscp(&(aux)) > > -#endif /* !CONFIG_PARAVIRT */ > - > /* > * 64-bit version of wrmsr_s...
2013 Apr 04
1
[PATCH RFC] kvm: add PV MMIO EVENTFD
...fied address. + * If not - it's a Guest bug. + * Can not be used together with either PIO or DATAMATCH. + */ +#define KVM_IOEVENTFD_FLAG_PV_MMIO (1 << kvm_ioeventfd_flag_nr_pv_mmio) #define KVM_IOEVENTFD_FLAG_DEASSIGN (1 << kvm_ioeventfd_flag_nr_deassign) #define KVM_IOEVENTFD_VALID_FLAG_MASK ((1 << kvm_ioeventfd_flag_nr_max) - 1) @@ -665,6 +673,7 @@ struct kvm_ppc_smmu_info { #define KVM_CAP_PPC_EPR 86 #define KVM_CAP_ARM_PSCI 87 #define KVM_CAP_ARM_SET_DEVICE_ADDR 88 +#define KVM_CAP_IOEVENTFD_PV_MMIO 89 #ifdef KVM_CAP_IRQ_ROUTING diff --git a/virt/kvm/event...
2013 Apr 04
1
[PATCH RFC] kvm: add PV MMIO EVENTFD
...fied address. + * If not - it's a Guest bug. + * Can not be used together with either PIO or DATAMATCH. + */ +#define KVM_IOEVENTFD_FLAG_PV_MMIO (1 << kvm_ioeventfd_flag_nr_pv_mmio) #define KVM_IOEVENTFD_FLAG_DEASSIGN (1 << kvm_ioeventfd_flag_nr_deassign) #define KVM_IOEVENTFD_VALID_FLAG_MASK ((1 << kvm_ioeventfd_flag_nr_max) - 1) @@ -665,6 +673,7 @@ struct kvm_ppc_smmu_info { #define KVM_CAP_PPC_EPR 86 #define KVM_CAP_ARM_PSCI 87 #define KVM_CAP_ARM_SET_DEVICE_ADDR 88 +#define KVM_CAP_IOEVENTFD_PV_MMIO 89 #ifdef KVM_CAP_IRQ_ROUTING diff --git a/virt/kvm/event...
2005 Mar 14
4
[patch/unstable] page table cleanups
...mfn, sl1ss; + l1_pgentry_t *gpl1e, *spl1e; + l2_pgentry_t gl2e, sl2e; + unsigned long gl1pfn, sl1mfn, sl1ss; struct pfn_info *sl1mfn_info; int i; __guest_get_l2e(ed, va, &gl2e); - gl1pfn = gl2e >> PAGE_SHIFT; + gl1pfn = l2_pgentry_val(gl2e) >> PAGE_SHIFT; sl1ss = __shadow_status(d, gl1pfn); if ( !(sl1ss & PSH_shadowed) ) @@ -561,10 +563,10 @@ static void shadow_map_l1_into_current_l __guest_set_l2e(ed, va, gl2e); __shadow_set_l2e(ed, va, sl2e); - gpl1e = (unsigned long *) &(li...
2007 May 09
1
[patch 3/9] lguest: the host code
...ed flags:12, pfn:20; }; + struct { unsigned long val; } raw; +} spte_t; +typedef union { + struct { unsigned flags:12, pfn:20; }; + struct { unsigned long val; } raw; +} gpgd_t; +typedef union { + struct { unsigned flags:12, pfn:20; }; + struct { unsigned long val; } raw; +} gpte_t; +#define mkgpte(_val) ((gpte_t){.raw.val = _val}) +#define mkgpgd(_val) ((gpgd_t){.raw.val = _val}) + +struct pgdir +{ + unsigned long cr3; + spgd_t *pgdir; +}; + +/* This is a guest-specific page (mapped ro) into the guest. */ +struct lguest_ro_state +{ + /* Host information we need to restore when we switch back. */...