search for: horder

Displaying 4 results from an estimated 4 matches for "horder".

Did you mean: order
2010 Aug 05
2
try-error within for loop
...dataframe with 1000 rows some of which would be empty, but instead I get a dataframe with 995 rows. In this case missing 5 rows were omitted. Any suggestions? Thanks, Olga ---------------- result<-list() for(i in 1:1000)try({ hclass<-mydata2$tclass[mydata2$tspecies%in%com[[i]][[5]][[1]]] horder<-mydata2$torder[mydata2$tspecies%in%com[[i]][[5]][[1]]] hfamily<-mydata2$tfamily[mydata2$tspecies%in%com[[i]][[5]][[1]]] hgenus<-mydata2$tgenus[mydata2$tspecies%in%com[[i]][[5]][[1]]] hspecies<-mydata2$tspecies[mydata2$tspecies%in%com[[i]][[5]][[1]]] hier<-cbind(hspecies,hgenus,hfami...
2020 Jul 01
0
[PATCH v3 2/5] mm/hmm: add hmm_mapping order
...ID | HMM_PFN_WRITE) : + HMM_PFN_VALID; } static int hmm_vma_walk_pud(pud_t *pudp, unsigned long start, unsigned long end, @@ -468,13 +474,15 @@ static int hmm_vma_walk_hugetlb_entry(pte_t *pte, unsigned long hmask, unsigned long cpu_flags; spinlock_t *ptl; pte_t entry; + unsigned long horder = huge_page_order(hstate_vma(vma)); ptl = huge_pte_lock(hstate_vma(vma), walk->mm, pte); entry = huge_ptep_get(pte); i = (start - range->start) >> PAGE_SHIFT; pfn_req_flags = range->hmm_pfns[i]; - cpu_flags = pte_to_hmm_pfn_flags(range, entry); + cpu_flags = pte_to_hmm_pf...
2008 Jul 04
5
Samba v2.2.12 NTLM versions?
...me1/DEP create mode = 0775 # restrict to listed users. no-one else can connect. valid users = laiptc2, laiptc3, laiptc5, laiptc6, laiptc7 # restrict to listed PCs. hosts allow = 25.167.169.200, 25.167.167.174, 25.167.167.193, 25.167.172.207, 25.167.169.178, 25.167.170.9 Phil Horder Teradata Developer
2020 Jul 01
8
[PATCH v3 0/5] mm/hmm/nouveau: add PMD system memory mapping
The goal for this series is to introduce the hmm_pfn_to_map_order() function. This allows a device driver to know that a given 4K PFN is actually mapped by the CPU using a larger sized CPU page table entry and therefore the device driver can safely map system memory using larger device MMU PTEs. The series is based on 5.8.0-rc3 and is intended for Jason Gunthorpe's hmm tree. These were