search for: dmr

Displaying 20 results from an estimated 29 matches for "dmr".

Did you mean: dir
2020 Aug 07
0
[PATCH] vdpa/mlx5: Fix uninitialised variable in core/mr.c
On 2020/8/7 ??2:56, Alex Dewar wrote: > If the kernel is unable to allocate memory for the variable dmr then > err will be returned without being set. Set err to -ENOMEM in this > case. > > Fixes: 94abbccdf291 ("vdpa/mlx5: Add shared memory registration code") > Addresses-Coverity: ("Uninitialized variables") > Signed-off-by: Alex Dewar <alex.dewar at gmx.co.u...
2020 Aug 08
0
[PATCH] vdpa/mlx5: Missing error code on allocation failure
...vers/vdpa/mlx5/core/mr.c index f5dec0274133..ef1c550f8266 100644 --- a/drivers/vdpa/mlx5/core/mr.c +++ b/drivers/vdpa/mlx5/core/mr.c @@ -319,8 +319,10 @@ static int add_direct_chain(struct mlx5_vdpa_dev *mvdev, u64 start, u64 size, u8 while (size) { sz = (u32)min_t(u64, MAX_KLM_SIZE, size); dmr = kzalloc(sizeof(*dmr), GFP_KERNEL); - if (!dmr) + if (!dmr) { + err = -ENOMEM; goto err_alloc; + } dmr->start = st; dmr->end = st + sz; -- 2.27.0
2016 Feb 16
2
Pigeonhole and duplicate checking
...t autoonecareers.com>, size=613, class=0, nrcpts=1, msgid=<68895654496651-HLTYGGRLPDJDVTZRHFIKGAON at hverovvxzb.arkansas-email.com>, proto=SMTP, daemon=MTA, relay=117.27.191.61.broad.static.hf.ah.cndata.com [61.191.27.117] (may be forged) Feb 15 00:31:10 myhost dovecot: lmtp(26856, dmr): 7Hj/LoBiwVboaAAACXJZQA: sieve: msgid=<68895654496651-HLTYGGRLPDJDVTZRHFIKGAON at hverovvxzb.arkansas-email.com>: forwarded to <spamuser at mydomain.com> Feb 15 00:31:10 myhost dovecot: lmtp(26856): Disconnect from local: Client quit Feb 15 00:31:10 myhost dovecot: lmtp(26893...
2004 Jun 23
8
[Bug 884] DSA keys (id_dsa.pub) with 8192 bits or more aren't correctly recognized
http://bugzilla.mindrot.org/show_bug.cgi?id=884 dmr at gmx.it changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|DSA keys (id_dsa.pub) with |DSA keys (id_dsa.pub) with |8192 bytes or more aren't |8192 bits or more...
2020 Jul 16
0
[PATCH vhost next 09/10] vdpa/mlx5: Add shared memory registration code
...mtx); 420 err = _mlx5_vdpa_create_mr(mvdev, iotlb); 421 mutex_unlock(&mr->mkey_mtx); 422 return err; 423 } 424 > 425 void mlx5_vdpa_destroy_mr(struct mlx5_vdpa_dev *mvdev) 426 { 427 struct mlx5_vdpa_mr *mr = &mvdev->mr; 428 struct mlx5_vdpa_direct_mr *dmr; 429 struct mlx5_vdpa_direct_mr *n; 430 431 mutex_lock(&mr->mkey_mtx); 432 if (!mr->initialized) 433 goto out; 434 435 destroy_indirect_key(mvdev, mr); 436 list_for_each_entry_safe_reverse(dmr, n, &mr->head, list) { 437 list_del_init(&dmr-&...
2004 Jun 23
1
[Bug 884] DSA keys (id_dsa.pub) with 8192 bytes or more aren't correctly recognized
...ly recognized Product: Portable OpenSSH Version: 3.8.1p1 Platform: All OS/Version: Linux Status: NEW Severity: enhancement Priority: P2 Component: ssh AssignedTo: openssh-bugs at mindrot.org ReportedBy: dmr at gmx.it Hello, this is what I get using ssh with a 8192 bytes DSA key (produced with 'ssh-keygen -t dsa -b 8192'): dmr:nicetas:0:~/openssh-3.8.1p1$ ./ssh bin key_read: uudecode AAAAB3NzaC1kc3MAAAQBAKU+5z15VrrvSBD9q5absauzckc0oinS4DOoOGPHwHoPKdjXU/B2/Z1yxtS7hbafix5gNeHbX5QTPq2f7YVZc/P0x...
2015 Aug 20
3
new laptop: DVD or Blu-ray
...ore, so is there some compelling > reason, as a Linux guy, to want to get Blu-ray? > First of all, is this going to be your desktop or a server? If the > later, can't see the point for blueray. One of the compelling reasons > against is that only movies use it. Second, it has dmr crap in it that I used to use Blu-Ray as backup device. -- Over And Out MoonWolf
2015 Aug 20
9
new laptop: DVD or Blu-ray
One of the build options for a laptop I'm looking at buying is DVD vs Blu-Ray. I've never used Blue-ray before, so is there some compelling reason, as a Linux guy, to want to get Blu-ray?
2015 Aug 20
0
new laptop: DVD or Blu-ray
On 08/20/2015 07:35 AM, Nicolas George wrote: >> Second, it [Blu-ray] has dmr crap in it that >> >might require binary only spyware to work. > DVD-Video has them too, the only difference is that the crypto in the DRM > for DVD is terribly broken. "Broken" in the sense that data is corrupted or in the sense that the DMR is crackable?
2004 Jun 30
2
Question about mesurating time
Hello , Is there any function to mesurate the duration of a procedure (like tic and toc in matlab) ? Tic Source("procedure.R") Toc (toc is the duration between the execution of tic and the execution of toc) Thank you nicolas [[alternative HTML version deleted]]
2015 Aug 20
2
new laptop: DVD or Blu-ray
...>>> reason, as a Linux guy, to want to get Blu-ray? >>> First of all, is this going to be your desktop or a server? If the >>> later, can't see the point for blueray. One of the compelling reasons >>> against is that only movies use it. Second, it has dmr crap in it that >> I used to use Blu-Ray as backup device. > In that case, the concern about drm is null and void. That said, > how did that work out for you? I thought about doing that because of > the sheer capacity but my experience using DL DVDs for backup was not > as g...
2009 Sep 09
3
Problem kernel module DRBD on CentOS 5.3
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000000"> Hi All,<br> I'm just tried to install and build replicate failover PDC using DRBD and HA, but i can't load DRBD kernel module.<br> Now i'm using CentOS 5.3 up to date. This DRBD's
2015 Aug 20
0
new laptop: DVD or Blu-ray
...ed Blue-ray before, so is there some compelling reason, as a Linux guy, to want to get Blu-ray? > First of all, is this going to be your desktop or a server? If the later, can't see the point for blueray. One of the compelling reasons against is that only movies use it. Second, it has dmr crap in it that might require binary only spyware to work. Third, they behave like Android phones in that they keep pushing new releases but no firmware updates for older devices; you have to keep on buying new devices which only change from old one by having brand new spyware. If I were to read in...
2015 Aug 20
0
new laptop: DVD or Blu-ray
...some compelling >> reason, as a Linux guy, to want to get Blu-ray? >> First of all, is this going to be your desktop or a server? If the >> later, can't see the point for blueray. One of the compelling reasons >> against is that only movies use it. Second, it has dmr crap in it that > > I used to use Blu-Ray as backup device. > In that case, the concern about drm is null and void. That said, how did that work out for you? I thought about doing that because of the sheer capacity but my experience using DL DVDs for backup was not as good as the ori...
2015 Aug 20
0
new laptop: DVD or Blu-ray
...nux guy, to want to get Blu-ray? >>>> First of all, is this going to be your desktop or a server? If >>>> the >>>> later, can't see the point for blueray. One of the compelling reasons >>>> against is that only movies use it. Second, it has dmr crap in it that >>> I used to use Blu-Ray as backup device. >> In that case, the concern about drm is null and void. That said, >> how did that work out for you? I thought about doing that because of >> the sheer capacity but my experience using DL DVDs for backup w...
2004 Jun 08
1
Little question
Here I got a function : f<-function(x){ res<-list() res$bool=(x>=0) res$tot=x return(res) } I want that a=res$bool and b=res$tot I know that a possible solution is : Result=f(x) a=Result$bool b=Result$tot But I don't want to use the variable Result. I'd like to write directly something like [a,b]=f(x). Is it possible ? Thank you nicolas [[alternative HTML version
2004 Jun 07
1
Precision for a former question*
I got many answers to the question I asked below , and I thank you all. Several of you told me to use ->> but told also that "it is not a recommendable way of items manipulating in R". I don't really understand what it exactly means : 1) does it mean it's not a very good way of programming , a dangerous way of programming because the variable a can be modified ? , etc Or
2006 Jun 29
6
Real time traffic Grapher
hi all :) anyone knows some Real time traffic grapher application ? faster than mrtg , im not looking for web based ones ... -- You will soon forget this.
2017 Jun 21
0
[PATCH 00/11] improve the fb_setcmap helper
...: > drm/fb-helper: do a generic fb_setcmap helper in terms of crtc > .gamma_set > drm: amd: remove dead code and pointless local lut storage > drm: ast: remove dead code and pointless local lut storage > drm: cirrus: remove dead code and pointless local lut storage > dmr: gma500: remove dead code and pointless local lut storage > drm: i915: remove dead code and pointless local lut storage > drm: mgag200: remove dead code and pointless local lut storage > drm: nouveau: remove dead code and pointless local lut storage > drm: radeon: remove dead co...
2007 Feb 22
0
Error in solve.default
...f(is.null(prior$error)) { prior$error$df <- 1 prior$error$sd <- taumin } s.e..old <- s.e. if(max(s.e.) == Inf) s.e.[s.e. == Inf] <- taumin * 10000 wts <<- s.e.^(-2) # changed 1.10.2007 DMR df.se <- 1/mean(1/df.se) if(df.se == Inf) { if(is.null(prior$tau)) prior$tau <- taumin * sqrt(length(wts)) } fit <- lm(formula, weights = wts, qr = T, x = T, y = T, singular = T, ...) X <- fit$x...