search for: oridinary

Displaying 14 results from an estimated 14 matches for "oridinary".

Did you mean: ordinary
2008 Dec 25
0
[LLVMdev] Questions on Parallelism and Data Dependence Analysis
...ther words, can I get the task graph(node: task viewed as basic > block or more coarse grain, edge: real data dependence) > from sequential program using llvm to explore task-level parallelism by > some proposed task scheduling algorithm? Waht is the exact values you mean? If you means oridinary "values" in llvm , you can construct the task graph in a straightforward way with Use-def chains. > > thanks. > > 2008-12-25 > > > > Wenzhi Tao >
2016 Jun 21
0
[RFC PATCH V3 0/3] basic device IOTLB support
...independent. It should be > easily ported to any architecture. > > Stress tested with l2fwd/vfio in guest with 4K/2M/1G page size. On 1G > hugepage case, 100% TLB hit rate were noticed. > > Changes from V2: > - introduce memory accessors for vhost > - switch from ioctls to oridinary file read/write for iotlb miss and > updating > - do not assume virtqueue were virtually mapped contiguously, all > virtqueue access were done throug IOTLB > - verify memory access during IOTLB update and fail early > - introduce a module parameter for the size of IOTLB > &gt...
2020 Feb 29
0
idmap range and xidNumber
...com/en-us/openspecs/windows_protocols/ms-dtyp/81d92bba-d22b-4a8c-908a-554ab29148ab > > As on unix domain member I get: > UDM# wbinfo -S S-1-5-32-544 > failed to call wbcSidToUid: WBC_ERR_DOMAIN_NOT_FOUND > Could not convert sid S-1-5-32-544 to uid > I shoud mention that for "oridinary" domain users this commands work > in both directions UID <--> SID Good. > > UDM# wbinfo -U 3000 > failed to call wbcUidToSid: WBC_ERR_DOMAIN_NOT_FOUND > Could not convert uid 3000 to sid That doesn't work for me either and I don't worry about it ;-) > > UDM...
2005 May 31
0
custom network script for SuSE boxes
...The existing script, by default, uses eth0 and xen-br0 for the device and bridge respectively. The custom script just takes one parameter, say eth0. It move eth0 to one side by renaming it to eth0slv (eth0 slave) . Then it create a bridge with the name eth0. Thus eth0 is magicallly changed from an oridinary network device to a bridge. This idea is shamelessly stolen from the /usr/lib/YaST2/bin/start-uml . (I used the names eth0 / eth0slv . This might have been a mistake. The start-uml script used eth0 / hweth0 . ) Doing things this way means that your firewall and routing settings work both before...
2013 Mar 27
0
chan_mobile: FXS
...e that the BT-link is up, and remains stable up. Seems good, but it looks like asterisk is seeing the BB as a trunk/FXO. However, i want to use the phone as an FXS. Before ending up in trying something that was never foreseen and perhaps even impossible, i was hoping that i could use the BB as an oridinary "audio device" and still use the keys on the phone for starting/ending calls, and the dialpad for selecting phone numbers. And having the connections go (via BT) through asterisk instead of GSM. Is this possible at all, or am i embarking on a "mission impossible" ;-) Hans
2014 May 10
2
some trouble when devising skiplist
Hi, I was confronted with some trouble, I describe the trouble in my journal http://trac.xapian.org/wiki/GSoC2014/Posting%20list%20encoding%20improvements/Journal#May10 And corresponding code is in my git. Would you like to give me some help? ------------------ Shangtong Zhang,Second Year Undergraduate, School of Computer Science, Fudan University, China. -------------- next part
2020 Feb 29
4
idmap range and xidNumber
Hello, There recommended range in Samba4 share for BUILTIN users is usually (from Samba wiki) # Default ID mapping configuration for local BUILTIN accounts # and groups on a domain member. The default (*) domain: # - must not overlap with any domain ID mapping configuration! # - must use a read-write-enabled back end, such as tdb. idmap config * : backend = tdb idmap config * : range = 3000-7999
2007 Jan 16
3
Realtime Voicemail Password Change Not Working
Hi All, I'm using asterisk 1.2.9.1 and mysql 3.23, asterisk add-ons 1.2.3. All seems to work normally with realtime voicemail, reads vmbox parameters from the db fine. When I try to change the password, asterisk operates normally, "enter new password" ok, "re-enter new password" ok, "password has been changed" There are no entries in the mysql.log setting the
2016 May 24
6
[RFC PATCH V3 0/3] basic device IOTLB support
...codes were designed to be architecture independent. It should be easily ported to any architecture. Stress tested with l2fwd/vfio in guest with 4K/2M/1G page size. On 1G hugepage case, 100% TLB hit rate were noticed. Changes from V2: - introduce memory accessors for vhost - switch from ioctls to oridinary file read/write for iotlb miss and updating - do not assume virtqueue were virtually mapped contiguously, all virtqueue access were done throug IOTLB - verify memory access during IOTLB update and fail early - introduce a module parameter for the size of IOTLB Changes from V1: - support any si...
2016 May 24
6
[RFC PATCH V3 0/3] basic device IOTLB support
...codes were designed to be architecture independent. It should be easily ported to any architecture. Stress tested with l2fwd/vfio in guest with 4K/2M/1G page size. On 1G hugepage case, 100% TLB hit rate were noticed. Changes from V2: - introduce memory accessors for vhost - switch from ioctls to oridinary file read/write for iotlb miss and updating - do not assume virtqueue were virtually mapped contiguously, all virtqueue access were done throug IOTLB - verify memory access during IOTLB update and fail early - introduce a module parameter for the size of IOTLB Changes from V1: - support any si...
2016 Jun 23
3
[PATCH V2 0/3] basic device IOTLB support for vhost_net
...itch to use atomic userspace access helper in vhost_get/put_user() - remove debug codes in vhost_iotlb_miss() - use FIFO instead of FILO when doing TLB replacement - fix unbalanced lock in vhost_process_iotlb_msg() Changes from RFC V2: - introduce memory accessors for vhost - switch from ioctls to oridinary file read/write for iotlb miss and updating - do not assume virtqueue were virtually mapped contiguously, all virtqueue access were done throug IOTLB - verify memory access during IOTLB update and fail early - introduce a module parameter for the size of IOTLB Changes from RFC V1: - support an...
2016 Jun 23
3
[PATCH V2 0/3] basic device IOTLB support for vhost_net
...itch to use atomic userspace access helper in vhost_get/put_user() - remove debug codes in vhost_iotlb_miss() - use FIFO instead of FILO when doing TLB replacement - fix unbalanced lock in vhost_process_iotlb_msg() Changes from RFC V2: - introduce memory accessors for vhost - switch from ioctls to oridinary file read/write for iotlb miss and updating - do not assume virtqueue were virtually mapped contiguously, all virtqueue access were done throug IOTLB - verify memory access during IOTLB update and fail early - introduce a module parameter for the size of IOTLB Changes from RFC V1: - support an...
2016 Jun 22
4
[PATCH 0/3] basic device IOTLB support
...itch to use atomic userspace access helper in vhost_get/put_user() - remove debug codes in vhost_iotlb_miss() - use FIFO instead of FILO when doing TLB replacement - fix unbalanced lock in vhost_process_iotlb_msg() Changes from RFC V2: - introduce memory accessors for vhost - switch from ioctls to oridinary file read/write for iotlb miss and updating - do not assume virtqueue were virtually mapped contiguously, all virtqueue access were done throug IOTLB - verify memory access during IOTLB update and fail early - introduce a module parameter for the size of IOTLB Changes from RFC V1: - support an...
2016 Jun 22
4
[PATCH 0/3] basic device IOTLB support
...itch to use atomic userspace access helper in vhost_get/put_user() - remove debug codes in vhost_iotlb_miss() - use FIFO instead of FILO when doing TLB replacement - fix unbalanced lock in vhost_process_iotlb_msg() Changes from RFC V2: - introduce memory accessors for vhost - switch from ioctls to oridinary file read/write for iotlb miss and updating - do not assume virtqueue were virtually mapped contiguously, all virtqueue access were done throug IOTLB - verify memory access during IOTLB update and fail early - introduce a module parameter for the size of IOTLB Changes from RFC V1: - support an...