search for: lp

Displaying 20 results from an estimated 2673 matches for "lp".

2009 Jan 11
3
A program cant find their DLLs and it really exists
...where to look, and so? I paste here the output of the program using comand line call: I marked the line between when program is responding and not. I put the next text for you locate it: "HERE PROGRAM IS NOT RESPONDING ANYMORE" err:statusbar:StatusWindowProc unknown msg 053d wp=0001 lp=00000000 err:progress:ProgressWindowProc unknown msg 053d wp=0001 lp=00000000 err:trackbar:TRACKBAR_WindowProc unknown msg 053d wp=00000001 lp=00000000 err:trackbar:TRACKBAR_WindowProc unknown msg 053d wp=00000001 lp=00000000 err:listview:LISTVIEW_WindowProc unknown msg 053d wp=00000001 lp=00000000...
2002 Jul 24
1
Print Jobs stuck in queue
...rs, an HP4050 and Ricoh. Everyone can print fine except that, seemingly randomly, printjobs end up in the queue as paused (according to winXPpro and Win98). Nobody can unpause or delete them. The only way to remove them is to restart the original machine which sent the print job. [root@mi etc]# lpq Printer: RICOH@mi (dest PORT1@192.168.1.33) Queue: no printable jobs in queue Server: no server active Status: job 'debbie@mi+521' saved at 09:53:31.613 Rank Owner/ID Class Job Files Size Time done frontdesk@mi+889 A 889 smbprn.005492....
2020 Oct 09
1
[PATCH] drm/nouveau/kms: Fix NULL pointer dereference in nouveau_connector_detect_depth
This oops manifests itself on the following hardware: 01:00.0 VGA compatible controller: NVIDIA Corporation G98M [GeForce G 103M] (rev a1) Oct 09 14:17:46 lp-sasha kernel: BUG: kernel NULL pointer dereference, address: 0000000000000000 Oct 09 14:17:46 lp-sasha kernel: #PF: supervisor read access in kernel mode Oct 09 14:17:46 lp-sasha kernel: #PF: error_code(0x0000) - not-present page Oct 09 14:17:46 lp-sasha kernel: PGD 0 P4D 0 Oct 09 14:17:46 lp-sasha...
2020 Oct 13
1
[PATCH v2] drm/nouveau/kms: Fix NULL pointer dereference in nouveau_connector_detect_depth
This oops manifests itself on the following hardware: 01:00.0 VGA compatible controller: NVIDIA Corporation G98M [GeForce G 103M] (rev a1) Oct 09 14:17:46 lp-sasha kernel: BUG: kernel NULL pointer dereference, address: 0000000000000000 Oct 09 14:17:46 lp-sasha kernel: #PF: supervisor read access in kernel mode Oct 09 14:17:46 lp-sasha kernel: #PF: error_code(0x0000) - not-present page Oct 09 14:17:46 lp-sasha kernel: PGD 0 P4D 0 Oct 09 14:17:46 lp-sasha...
2009 Apr 25
3
Nomogram with stratified cph in Design package
...39;m not sure where. Non-Stratified Nomogram: f<-cph(S~A+B+C+D+E+F+H,x=T,y=T,surv=T,time.inc=10*12,method="breslow") srv=Survival(f) srv120=function(lp) srv(10*12,lp) quant=Quantile(f) med=function(lp) quant(.5,lp) at.surv=c(0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9) at.med=c(120,80,60,40,30,20,15,10,8,6,4,2,0) nomogram(f,lp=F, fun=list(srv120, med),funlabel=c("120-mo Survival","Median Survival"),fun.at=list(at.surv, at.med)) I get...
2011 Aug 05
0
[LLVMdev] RFC: Exception Handling Rewrite
...irst disallow it until proven doable > by someone working in an isolated branch -- although proving it works may be difficult, > since so little code actually uses exceptions (only TableGen in llvm ?). Peter, I think this will be done lazily to avoid excessive splitting as in: Call1 -> LP Call2 -> LP Call3 -> LP => split Call1 Call1 -> LP-split -> LP-remainder Call2 -> LP-split-merge -> LP-remainder Call3 -> LP-split-merge -> LP-remainder But John will know best. -Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: <...
2001 Apr 02
1
SuSE 7.1 timeout problem
Hello, I just moved from SuSE 7.0 to SuSE 7.1 by reinstalling. I use HP 2100TN JetDirect printer. I use kernel-2.4.2, LPRng-3.6.26, ifhp-3.4.4, Samba-2.0.7 Printing from Linux server works just as before. Printing from Windows clients has problems. I set it up just like before but any print job from Windows takes its while and then spits out junk: -------------------------- ERROR: timeout OFFENDING COMMAND: timeout...
2020 Sep 15
0
[PATCH 11/18] lib82596: convert to dma_alloc_noncoherent
Use the new non-coherent DMA API including proper ownership transfers. This includes moving the DMA helpers to lib82596 based of an ifdef to avoid include order problems. Signed-off-by: Christoph Hellwig <hch at lst.de> --- drivers/net/ethernet/i825xx/lasi_82596.c | 25 ++--- drivers/net/ethernet/i825xx/lib82596.c | 114 ++++++++++++++--------- drivers/net/ethernet/i825xx/sni_82596.c | 4...
2020 Sep 15
0
[PATCH 06/18] lib82596: move DMA allocation into the callers of i82596_probe
...fine LIB82596_DMA_ATTR DMA_ATTR_NON_CONSISTENT - #define DMA_WBACK(ndev, addr, len) \ do { dma_cache_sync((ndev)->dev.parent, (void *)addr, len, DMA_TO_DEVICE); } while (0) @@ -155,7 +153,7 @@ lan_init_chip(struct parisc_device *dev) { struct net_device *netdevice; struct i596_private *lp; - int retval; + int retval = -ENOMEM; int i; if (!dev->irq) { @@ -186,12 +184,22 @@ lan_init_chip(struct parisc_device *dev) lp = netdev_priv(netdevice); lp->options = dev->id.sversion == 0x72 ? OPT_SWAP_PORT : 0; + lp->dma = dma_alloc_attrs(&dev->dev, sizeof(struct...
2020 Aug 19
0
[PATCH 06/28] lib82596: move DMA allocation into the callers of i82596_probe
...fine LIB82596_DMA_ATTR DMA_ATTR_NON_CONSISTENT - #define DMA_WBACK(ndev, addr, len) \ do { dma_cache_sync((ndev)->dev.parent, (void *)addr, len, DMA_TO_DEVICE); } while (0) @@ -155,7 +153,7 @@ lan_init_chip(struct parisc_device *dev) { struct net_device *netdevice; struct i596_private *lp; - int retval; + int retval = -ENOMEM; int i; if (!dev->irq) { @@ -186,12 +184,22 @@ lan_init_chip(struct parisc_device *dev) lp = netdev_priv(netdevice); lp->options = dev->id.sversion == 0x72 ? OPT_SWAP_PORT : 0; + lp->dma = dma_alloc_attrs(dev->dev.parent, sizeof(struc...
2006 Jan 30
5
Debian Sarge Server with iptables behind D-Link Router
...tcpdump for port 443: Not working access from inside the lan to the servers external Name / the servers external IP: => no connection ==================================== p54BE15A1.dip0.t-ipconnect.de.https: S 1859848764:1859848764(0) win 65535 <mss 1260,nop,nop,sackOK> 18:43:41.477631 IP lp-java.linkpool.3491 > p54BE15A1.dip0.t-ipconnect.de.https: S 1859848764:1859848764(0) win 65535 <mss 1260,nop,nop,sackOK> 18:43:41.479358 IP p54BE15A1.dip0.t-ipconnect.de.https > lp-java.linkpool.3491: R 0:0(0) ack 1859848765 win 0 18:43:41.967525 IP lp-java.linkpool.3491 > p54BE15A1....
2001 Aug 20
1
Event trail info help request
G'day all, I'm always running the latest wine built locally, daily from CVS. I'm using Xfree 4.0.2 with a microtouch touchscreen, and I'm chasing a mouse event bug. I write my software in Borland Delphi 4. For testing, I have written a program that simply intercepts the application message queue, and filters WM_MOUSEMOVE, WM_LMOUSEDOWN and WM_LMOUSEUP events, and prints them to a memo component complete with hex representation of the hwnd from the message. I'm running the program with win...
2020 Sep 14
2
[PATCH 11/17] sgiseeq: convert to dma_alloc_noncoherent
...quot;big" endian mode */ #define SWAP32(x) (((u32)(x)<<16) | ((((u32)(x)))>>16)) #define SWAP16(x) (x) +#define NONCOHERENT_DMA 1 + #include "lib82596.c" MODULE_AUTHOR("Richard Hirst"); @@ -184,9 +177,9 @@ lan_init_chip(struct parisc_device *dev) lp = netdev_priv(netdevice); lp->options = dev->id.sversion == 0x72 ? OPT_SWAP_PORT : 0; - lp->dma = dma_alloc_attrs(&dev->dev, sizeof(struct i596_dma), - &lp->dma_addr, GFP_KERNEL, - DMA_ATTR_NON_CONSISTENT); + lp->dma = dma_alloc_noncoherent(&dev->d...
2020 Aug 19
0
[PATCH 23/28] lib82596: convert from dma_cache_sync to dma_sync_single_for_device
Use the proper modern API to transfer cache ownership for incoherent DMA. Note that this moves the DMA helpers to the main lib82596.c file, so that they can use virt_to_dma. Signed-off-by: Christoph Hellwig <hch at lst.de> --- drivers/net/ethernet/i825xx/lasi_82596.c | 11 +-- drivers/net/ethernet/i825xx/lib82596.c | 114 ++++++++++++++--------- drivers/net/ethernet/i825xx/sni_82596.c | 4 -...
2010 Nov 28
3
Problems running IE7 with Wine 1.2, Ubuntu 8.04
...5e00187b, 0x5e0155f8, {1fb3f43f-4827-46e5-89e2-b398580357a3}, 1, 0x32da50, (null), (null), 0x5e015600,) fixme:advapi:RegisterTraceGuidsA (0x5e00187b, 0x5e015618, {7c0334a1-4635-4d95-8d76-9cf3171ac618}, 1, 0x32da50, (null), (null), 0x5e015620,) err:rebar:REBAR_WindowProc unknown msg 200b wp=00000000 lp=0050069c fixme:msimtf:DllGetClassObject ({50d5107a-d278-4871-8989-f4ceaaf59cfc} {00000001-0000-0000-c000-000000000046} 0x32dfb4) err:ole:apartment_getclassobject DllGetClassObject returned error 0x80040111 err:ole:CoGetClassObject no class object {50d5107a-d278-4871-8989-f4ceaaf59cfc} could be crea...
2002 Feb 15
1
SAMBA 2.2.3a <-> LPRng 3.8.x
hi you all, I had this problem for a long time and with different versions of SAMBA and LPRng: using '/usr/spool/lp/bin/lpr -r -Fl -m%m -J"%J" -U%U -P%p %s' as 'print command' results in two jobs in the queue window on the NT box, though there is only one job in the unix queue. using '/usr/spool/lp/bin/lpr -r -Fl -m%m -U%U -P%p %s' works fine, but dele...
2006 May 31
1
Phrase Query vs AND Query? Why don't these find the same things?
PHRASE QUERY Xapian::Query((MBOX:12345678-1234-1234-1234-1234567890ab AND (LP:backup:(pos=1) PHRASE 6 LP:c::(pos=2) PHRASE 6 LP:program files:(pos=3) PHRASE 6 LP:Mozilla Firefox:(pos=4) PHRASE 6 LP:res:(pos=5) PHRASE 6 LP: table-add-column-after-hover.gif:(pos=6)))) AND QUERY Xapian::Query((MBOX:12345678-1234-1234-1234-1234567890ab AND LP:backup:(pos=1) AND LP:c::(pos=2) AN...
2011 Dec 14
1
Saving non table object as text file with outputting preserved?
All, Given the following commands: > ag.m35<-read.table("m35.txt",header=TRUE,sep=",") > ag.m35.lp<-subset(ag.m35, race=="lp") > aov.m35.lp=aov(year~time,data=ag.m35.lp) > anova.m35.lp=anova(aov.m35.lp) > anova.m35.lp Analysis of Variance Table Response: year Df Sum Sq Mean Sq F value Pr(>F) time 1 11.56 11.5649 1.7282 0.1929 Residuals 70 468.44 6.691...
2001 Nov 20
4
Problem printing from NT to printer attached to LInux box
I installed Samba 2.2.2 on my Linux box. The smb.conf file is as shown below. The permission on /var/spool/lpd/lp is set to 755; ie, it is writable only by the owner, which is lp. With the setup as is, when I try to print from the NT machine, the smb log on the Linux box indicates the following error: " print_job_start: insufficient permissions to open spool file /var/spool/lpd/lp". If I set the...
2018 Jan 17
1
Assessing calibration of Cox model with time-dependent coefficients
...epended coefficients. I have read this nice article <http://journals.sagepub.com/doi/10.1177/0962280213497434>. In this paper, we can fit three models: fit0 <- coxph(Surv(futime, status) ~ x1 + x2 + x3, data = data0) p <- log(predict(fit0, newdata = data1, type = "expected")) lp <- predict(fit0, newdata = data1, type = "lp") logbase <- p - lp fit1 <- glm(y ~ offset(p), family = poisson, data = data1) fit2 <- glm(y ~ lp + offset(logbase), family = poisson, data = data1) group <- cut(lp, c(-Inf, quantile(lp, (1:9) / 10), Inf)) fit3 <- glm(y ~ -1 +...