Displaying 20 results from an estimated 59 matches for "amn".
Did you mean:
amd
2019 Oct 29
0
[PATCH v2 13/15] drm/amdgpu: Use mmu_range_insert instead of hmm_mirror
...> -};
> -
> -/**
> - * amdgpu_mn_destroy - destroy the HMM mirror
> - *
> - * @work: previously sheduled work item
> - *
> - * Lazy destroys the notifier from a work item
> - */
> -static void amdgpu_mn_destroy(struct work_struct *work)
> -{
> - struct amdgpu_mn *amn = container_of(work, struct amdgpu_mn, work);
> - struct amdgpu_device *adev = amn->adev;
> - struct amdgpu_mn_node *node, *next_node;
> - struct amdgpu_bo *bo, *next_bo;
> -
> - mutex_lock(&adev->mn_lock);
> - down_write(&amn->lock);
> - hash_del(&amn->...
2019 Oct 28
2
[PATCH v2 13/15] drm/amdgpu: Use mmu_range_insert instead of hmm_mirror
...{
- struct interval_tree_node it;
- struct list_head bos;
-};
-
-/**
- * amdgpu_mn_destroy - destroy the HMM mirror
- *
- * @work: previously sheduled work item
- *
- * Lazy destroys the notifier from a work item
- */
-static void amdgpu_mn_destroy(struct work_struct *work)
-{
- struct amdgpu_mn *amn = container_of(work, struct amdgpu_mn, work);
- struct amdgpu_device *adev = amn->adev;
- struct amdgpu_mn_node *node, *next_node;
- struct amdgpu_bo *bo, *next_bo;
-
- mutex_lock(&adev->mn_lock);
- down_write(&amn->lock);
- hash_del(&amn->node);
- rbtree_postorder_for_each_...
2019 Oct 29
0
[PATCH v2 13/15] drm/amdgpu: Use mmu_range_insert instead of hmm_mirror
...> -};
> -
> -/**
> - * amdgpu_mn_destroy - destroy the HMM mirror
> - *
> - * @work: previously sheduled work item
> - *
> - * Lazy destroys the notifier from a work item
> - */
> -static void amdgpu_mn_destroy(struct work_struct *work)
> -{
> - struct amdgpu_mn *amn = container_of(work, struct amdgpu_mn, work);
> - struct amdgpu_device *adev = amn->adev;
> - struct amdgpu_mn_node *node, *next_node;
> - struct amdgpu_bo *bo, *next_bo;
> -
> - mutex_lock(&adev->mn_lock);
> - down_write(&amn->lock);
> - hash_del(&amn->...
2010 Aug 18
0
info: Retrieving plugin, err: /File[/var/lib/puppet/lib]: Failed to generate additional resources using 'eval_generate': undefined method `closed?' for nil:NilClass
...puppetmaster. I would like to
understand what happen. The errors/warnings messages are not very easy
to understand and sometime i''m lost. thank you for you advice. Eric
Puppet version: 0.25.4-2ubuntu6 "Lucid Ubuntu distrib x64"
The puppetmaster had signed the puppetclient amn-srv-
linux.amn.fu.int.DOMAIN :OK
When i launch the command:
puppetd --server puppetmaster.DOMAIN --test -v
I get this message:
warning: peer certificate won''t be verified in this SSL session
info: Caching certificate for amn-srv-linux.DOMAIN
info: Retrieving plugin
err: /File[/var/lib/...
2019 Oct 29
0
[PATCH v2 14/15] drm/amdgpu: Use mmu_range_notifier instead of hmm_mirror
...+135,6 @@ static const struct mmu_range_notifier_ops amdgpu_mn_hsa_ops = {
> .invalidate = amdgpu_mn_invalidate_hsa,
> };
>
> -static int amdgpu_mn_sync_pagetables(struct hmm_mirror *mirror,
> - const struct mmu_notifier_range *update)
> -{
> - struct amdgpu_mn *amn = container_of(mirror, struct amdgpu_mn, mirror);
> -
> - if (!mmu_notifier_range_blockable(update))
> - return false;
> -
> - down_read(&amn->lock);
> - up_read(&amn->lock);
> - return 0;
> -}
> -
> -/* Low bits of any reasonable mm pointer will be unus...
2019 Oct 28
1
[PATCH v2 14/15] drm/amdgpu: Use mmu_range_notifier instead of hmm_mirror
...t,
range->end))
@@ -143,92 +135,6 @@ static const struct mmu_range_notifier_ops amdgpu_mn_hsa_ops = {
.invalidate = amdgpu_mn_invalidate_hsa,
};
-static int amdgpu_mn_sync_pagetables(struct hmm_mirror *mirror,
- const struct mmu_notifier_range *update)
-{
- struct amdgpu_mn *amn = container_of(mirror, struct amdgpu_mn, mirror);
-
- if (!mmu_notifier_range_blockable(update))
- return false;
-
- down_read(&amn->lock);
- up_read(&amn->lock);
- return 0;
-}
-
-/* Low bits of any reasonable mm pointer will be unused due to struct
- * alignment. Use these bits to...
2019 Nov 12
0
[PATCH v3 12/14] drm/amdgpu: Use mmu_interval_notifier instead of hmm_mirror
...v->notifier_lock);
@@ -137,92 +121,6 @@ static const struct mmu_interval_notifier_ops amdgpu_mn_hsa_ops = {
.invalidate = amdgpu_mn_invalidate_hsa,
};
-static int amdgpu_mn_sync_pagetables(struct hmm_mirror *mirror,
- const struct mmu_notifier_range *update)
-{
- struct amdgpu_mn *amn = container_of(mirror, struct amdgpu_mn, mirror);
-
- if (!mmu_notifier_range_blockable(update))
- return -EAGAIN;
-
- down_read(&amn->lock);
- up_read(&amn->lock);
- return 0;
-}
-
-/* Low bits of any reasonable mm pointer will be unused due to struct
- * alignment. Use these bits t...
2019 Oct 28
32
[PATCH v2 00/15] Consolidate the mmu notifier interval_tree and locking
From: Jason Gunthorpe <jgg at mellanox.com>
8 of the mmu_notifier using drivers (i915_gem, radeon_mn, umem_odp, hfi1,
scif_dma, vhost, gntdev, hmm) drivers are using a common pattern where
they only use invalidate_range_start/end and immediately check the
invalidating range against some driver data structure to tell if the
driver is interested. Half of them use an interval_tree, the others
2019 Oct 29
4
[PATCH v2 14/15] drm/amdgpu: Use mmu_range_notifier instead of hmm_mirror
On Tue, Oct 29, 2019 at 07:22:37PM +0000, Yang, Philip wrote:
> Hi Jason,
>
> I did quick test after merging amd-staging-drm-next with the
> mmu_notifier branch, which includes this set changes. The test result
> has different failures, app stuck intermittently, GUI no display etc. I
> am understanding the changes and will try to figure out the cause.
Thanks! I'm not
2019 Nov 12
20
[PATCH hmm v3 00/14] Consolidate the mmu notifier interval_tree and locking
From: Jason Gunthorpe <jgg at mellanox.com>
8 of the mmu_notifier using drivers (i915_gem, radeon_mn, umem_odp, hfi1,
scif_dma, vhost, gntdev, hmm) drivers are using a common pattern where
they only use invalidate_range_start/end and immediately check the
invalidating range against some driver data structure to tell if the
driver is interested. Half of them use an interval_tree, the others
2009 May 12
1
Baldur's Gate 2: Shadows of Amn - failure to run
To come clean at the very beginning of all this, I'm a very new Linux user - my Windows XP computer decided to destroy itself and so Ubuntu was my only choice in lieu of buying another copy of an already shoddy operating system.
Because the Baldur's Gate 2 CDs do not have copy-protection, I simply copied their contents into a single folder in c: within wine's invisible directory.
2008 Nov 14
1
# values used in a function in tapply
...uld like to have the number of values used for
the calcuation for the functions, sorted by each day of week. A number of
entries in any given column are NAs.
I have tried the following code and simple variants with no luck.
for (i in 1:length(a[1,])){
x<-tapply(a[,i],a[,1],mean, na.rm=TRUE)
amn<-tapply(a[,i],a[,1],colSums(!is.na),na.rm=T)}
Adding an explicit argument to colSums(!is.na) {e.g. colSums(!is.na(a[,i]))}
produced an error that said colSums was not a function. Trying an
imbedded tapply instead of the colSums didn't work either. Using the sum
function added the values, not...
2005 Jun 13
3
Athereos Wireless Domain 0
Hi Folks,
I am trying to get my wireless network card work under dom0 of XEN. I
could successfully install the ndiswrapper drivers and could see it
being associated to
AP.
However I amn''t able to transmit any packets outbound. I could''nt even
ping the AP.
Interestingly when I run a tcpdump I can see few broadcast packets on
the interface. There no rules in iptables for nat or filter or mangle.
Neither did I start /setup any bridge setup.
strace on ping gives me...
2002 Jul 28
2
Fatal Error while Installing Baldur's Gate II
...,
I'm trying to install Baldur's Gate II on a windowsless Wine
configuration and not having much luck.
When I run Setup.exe from /cdrom, I get the Baldur's Gate II splash
screen, the progress bar indicating that InstallShield is preparing to
install Baldur's Gate II - Shadow of Amn and a message box stating
'Error installing iKernel.exe: (0x1400)'. When I click on the Ok
button in the message box, the process terminates.
Has anyone else run across this? Know of any possible work-arounds?
(I'm running Wine CVS from 07-27-2002)
Thanx,
Ian
2003 Sep 05
2
domain join - no sambaSamAccount created
...is my "add machine script": /usr/bin/cpu useradd %u -d /dev/null -f /etc/samba/scripts/machadd.cfg -F %u -L %u -g 511 -p xxx
I've manually tested this script and it's reliably creating a functional user with the necessary posixAccount class attached. When I do a
"smbpasswd -amn" on that user object it becomes a Samba machine account just as it should.
But when I run the "Network ID"-Wizard from the Windows XP client I get a "bad username or password" message when Windows is at the point of
actually requesting the machine account on the DC.
Strang...
1999 May 17
2
DOS to UNIX Conversion
On 17 May 99, Axel Neumann <amn@cromemco.com> had questions about
DOS to UNIX Conversion:
> It seems that a lot of people hate Windoze in such a way that they only
> accept solutions that are not coming from M$.
Maybe that's because the M$ "solutions" are crap, and much better
alternatives already ex...
1999 Jul 26
0
UNSUBSCIBE SAMBA
...samba.org/listproc/
>Topics covered in this issue include:
>
> 1) strange share violation
> by "Marek Les" <marek@ryston.cz>
> 2) Re: Printing from UNIX to WIN?
> by Kevin Ivory <Ivory@SerNet.de>
> 3) AW: SAMBA digest 2177
> by Axel Neumann <amn@cromemco.com>
> 4) Re: Paradox on a Samba share
> by Paulo Almeida <seth@mail.telepac.pt>
> 5) Samba and Quickbooks
> by "Rickey Bell" <RickeyBell@TechnicalSolutionsSC.Com>
> 6) Re: Security preferences with Samba 2.0.5
> by Kevin Ivory <Ivory@...
2010 Aug 25
1
accessing the attr(*,label.table) after importing from spss
...els,labels) thing manually. Is there any remedy to this ??
regards,
M
> str(dat)
'data.frame': 860 obs. of 19 variables:
$ Ag : int 15 15 15 15 15 15 15 15 15 15 ...
$ G : int 2 2 2 1 1 1 1 1 1 2 ...
$ GCQ : int 15 15 15 15 15 15 15 15 15 15 ...
$ Amn : int 2 2 2 2 2 2 1 1 1 1 ...
$ HI : int 1 1 1 1 1 1 2 2 2 2 ...
$ Hos: int 2 2 2 2 2 2 2 2 2 2 ...
$ Risk : int 2 2 2 2 2 2 2 2 2 2 ...
$ CTO : int 2 2 2 2 2 1 1 1 1 1 ...
$ pat : int NA NA NA NA NA 2 2 2 2 2 ...
$ Day : int 7 7 7 5 4 6 5...
1999 Apr 30
0
SAMBA digest 2073
...e http://samba.org/listproc/
> Topics covered in this issue include:
>
> 1) Group-Shares
> by Johannes Scherbaum <scherj@funkhaus.de>
> 2) RE: Samba 2.0.3
> by Johan Roos <roos@byggdok.se>
> 3) Printing Problems / SAMBA Digest 2072
> by Axel Neumann <amn@cromemco.com>
> 4) I just want to thank you
> by "Adilson G. Oliveira" <adilson@unimedsc.com.br>
> 5) Re: An even more strange win95 browsing problem
> by Hongwei Li <hongwei@morpheus.wustl.edu>
> 6) Re: Samba 2.0.3
> by Herb Lewis <herb@chomps...
2005 Jul 06
0
Xen and Ndiswrapper with Athereos chipset
...bug or somthing
stupid.. or more importantly is there a solution?
Thanks! ~Rob
---(Quote From Archives)---
"Hi Folks,
I am trying to get my wireless network card work under
dom0 of XEN. I
could successfully install the ndiswrapper drivers and
could see it
being associated to
AP.
However I amn''t able to transmit any packets outbound.
I could''nt even
ping the AP.
Interestingly when I run a tcpdump I can see few
broadcast packets on
the interface. There no rules in iptables for nat or
filter or mangle.
Neither did I start /setup any bridge setup.
strace on ping gives me...