search for: 180,7

Displaying 20 results from an estimated 245 matches for "180,7".

Did you mean: 100,7
2011 May 06
1
[PATCH/trivial] Fix numbering in PROTOCOL.mux
diff --git i/PROTOCOL.mux w/PROTOCOL.mux index 05bb146..b53af19 100644 PROTOCOL.mux --- i/PROTOCOL.mux +++ w/PROTOCOL.mux @@ -180,7 +180,7 @@ The MUX_S_PERMISSION_DENIED and MUX_S_FAILURE include a reason: uint32 client request id string reason -9. Protocol numbers +10. Protocol numbers #define MUX_MSG_HELLO 0x00000001 #define MUX_C_NEW_SESSION 0x10000002
2009 Jan 22
2
"latex" in Hmisc: cell formating
Hi list, Could you explain the error I see here? Thanks! ## I'm using R 2.8.0 on WinXP, Hmisc_3.4-3 > table1 <- matrix(10, 180,7) > cell.format <- matrix("", ncol=7, nrow=180) > cell.format[c(seq(3,180,6),seq(4,180,6)),] <- "color{red}" > cell.format[c(seq(5,180,6),seq(6,180,6)),] <- "color{green}" > > latex(table1, where='htbp', long=TRUE, lines.page=1000, s...
2013 Dec 25
3
[LLVMdev] lsan for LLVM bootstrap; leaks in TableGen
...ble lsan for TableGen so that we can enable lsan on the bootstrap bot soon. Objections? --kcc Index: utils/TableGen/TableGen.cpp =================================================================== --- utils/TableGen/TableGen.cpp (revision 198007) +++ utils/TableGen/TableGen.cpp (working copy) @@ -180,3 +180,7 @@ return TableGenMain(argv[0], &LLVMTableGenMain); } + +extern "C" { +int __lsan_is_turned_off() { return 1; } +} // extern "C" Index: tools/clang/utils/TableGen/TableGen.cpp =================================================================== --- tools/clang/...
2006 Aug 24
1
AMD64 bug
...00000000 +0200 +++ libtheora-pdw/lib/toplevel.c 2006-08-19 16:55:30.000000000 +0200 @@ -172,7 +172,7 @@ static int _theora_unpack_comment(theora_comment *tc, oggpack_buffer *opb){ int i; - long len; + long len,tmp; _tp_readlsbint(opb,&len); if(len<0)return(OC_BADHEADER); @@ -180,7 +180,8 @@ _tp_readbuffer(opb,tc->vendor, len); tc->vendor[len]='\0'; - _tp_readlsbint(opb,(long *) &tc->comments); + _tp_readlsbint(opb,&tmp); + tc->comments=tmp; if(tc->comments<0)goto parse_err; tc->user_comments=_ogg_calloc(tc->comments,...
2015 Dec 11
1
[PATCH] ttm/drm: constify ttm_backend_func structures
...tic const struct ttm_backend_func ast_tt_backend_func = { .destroy = &ast_ttm_backend_destroy, }; diff --git a/drivers/gpu/drm/bochs/bochs_mm.c b/drivers/gpu/drm/bochs/bochs_mm.c index d812ad0..b5b782d 100644 --- a/drivers/gpu/drm/bochs/bochs_mm.c +++ b/drivers/gpu/drm/bochs/bochs_mm.c @@ -180,7 +180,7 @@ static void bochs_ttm_backend_destroy(struct ttm_tt *tt) kfree(tt); } -static struct ttm_backend_func bochs_tt_backend_func = { +static const struct ttm_backend_func bochs_tt_backend_func = { .destroy = &bochs_ttm_backend_destroy, }; diff --git a/drivers/gpu/drm/cirrus/cir...
2015 Dec 11
1
[PATCH] ttm/drm: constify ttm_backend_func structures
...tic const struct ttm_backend_func ast_tt_backend_func = { .destroy = &ast_ttm_backend_destroy, }; diff --git a/drivers/gpu/drm/bochs/bochs_mm.c b/drivers/gpu/drm/bochs/bochs_mm.c index d812ad0..b5b782d 100644 --- a/drivers/gpu/drm/bochs/bochs_mm.c +++ b/drivers/gpu/drm/bochs/bochs_mm.c @@ -180,7 +180,7 @@ static void bochs_ttm_backend_destroy(struct ttm_tt *tt) kfree(tt); } -static struct ttm_backend_func bochs_tt_backend_func = { +static const struct ttm_backend_func bochs_tt_backend_func = { .destroy = &bochs_ttm_backend_destroy, }; diff --git a/drivers/gpu/drm/cirrus/cir...
2013 Dec 15
0
[Bug 58378] [NV86] Distorted graphics on NVIDIA GeForce 8400M G after upgrade the kernel to 3.7.0 version
...x-3.12.4.orig/drivers/gpu/drm/nouveau/nouveau_drm.c linux-3.12.4/drivers/gpu/drm/nouveau/nouveau_drm.c --- linux-3.12.4.orig/drivers/gpu/drm/nouveau/nouveau_drm.c 2013-12-08 17:18:58.000000000 +0100 +++ linux-3.12.4/drivers/gpu/drm/nouveau/nouveau_drm.c 2013-12-15 16:37:25.000000000 +0100 @@ -180,7 +180,7 @@ nouveau_accel_init(struct nouveau_drm *d else if (device->chipset < 0x17) ret = nv10_fence_create(drm); else if (device->card_type < NV_50) ret = nv17_fence_create(drm); else if (device->chipset < 0x84) ret = nv50_fence_create(drm); - else if (d...
2001 Dec 28
1
(patch) memory leak in loadparm.c
...rm.c.~1.40.~ Sun Dec 2 03:16:15 2001 +++ loadparm.c Fri Dec 28 07:22:25 2001 @@ -108,7 +108,8 @@ /* - * This structure describes a single service. + * This structure describes a single service. If you update this, be + * sure to update init_globals below! */ typedef struct { @@ -179,6 +180,7 @@ static int iNumServices = 0; static int iServiceIndex = 0; static BOOL bInGlobalSection = True; +static BOOL bsDefaultInitialized = False; #define NUMPARAMETERS (sizeof(parm_table) / sizeof(struct parm_struct)) @@ -297,6 +299,28 @@ #ifdef LOG_DAEMON Globals.syslog_facility = LOG_DAE...
2016 Dec 15
6
[PATCH 0/8] enable endian checks for all sparse builds
This is just a reposting of the patch that enables endian checks, with addition of trivial patches that drop __bitwise__ and __CHECK_ENDIAN__ everywhere. I plan to include this in my pull request unless I hear otherwise. Michael S. Tsirkin (8): linux/types.h: enable endian checks for all sparse builds tools: enable endian checks for all sparse builds Documentation/sparse: drop __bitwise__
2016 Dec 15
6
[PATCH 0/8] enable endian checks for all sparse builds
This is just a reposting of the patch that enables endian checks, with addition of trivial patches that drop __bitwise__ and __CHECK_ENDIAN__ everywhere. I plan to include this in my pull request unless I hear otherwise. Michael S. Tsirkin (8): linux/types.h: enable endian checks for all sparse builds tools: enable endian checks for all sparse builds Documentation/sparse: drop __bitwise__
2013 Dec 25
2
[LLVMdev] [cfe-dev] lsan for LLVM bootstrap; leaks in TableGen
...otstrap bot soon. Objections? > > --kcc > > Index: utils/TableGen/TableGen.cpp > > =================================================================== > > --- utils/TableGen/TableGen.cpp (revision 198007) > > +++ utils/TableGen/TableGen.cpp (working copy) > > @@ -180,3 +180,7 @@ > > > > return TableGenMain(argv[0], &LLVMTableGenMain); > > } > > + > > +extern "C" { > > +int __lsan_is_turned_off() { return 1; } > > +} // extern "C" > > Index: tools/clang/utils/TableGen/TableGen.cpp >...
2018 Sep 18
2
HTTP DoveAdm API - Possible bug?
Hi all, It seems that setting userMask in the doveadm http api's "user" command to anything involving wildcards ?s or *s causes the API to fail. When using the API with a userMask set to the fully qualified email address, I get the expected fields back. From a python shell, with an asterisk causes the following behaviour (note that doveadm is a python module that wrappers the
2009 Jul 21
1
[PATCH node-image] Moved all temporary files into a single work directory to clean up.
...e-tftp --tftp-root=${tftproot} - --log-facility=/tmp/dnsmasq-${nodename}.log + --log-facility=$WORKDIR/dnsmasq-${nodename}.log --log-queries --log-dhcp --pid-file=${pidfile}" @@ -180,7 +181,7 @@ start_networking () { local workdir=$5 local definition="" local network=$NETWORK - local xmlfile=$(mktemp) + local xmlfile=$WORKDIR/$nodename-$ifacename.xml debug "start_networking ()" for var in nodename ifacename use_dhcp start_dns...
2016 Dec 15
0
[PATCH 5/8] linux: drop __bitwise__ everywhere
...1_BSS_VALID_ERP = BIT(3) }; -typedef unsigned __bitwise__ ieee80211_tx_result; +typedef unsigned __bitwise ieee80211_tx_result; #define TX_CONTINUE ((__force ieee80211_tx_result) 0u) #define TX_DROP ((__force ieee80211_tx_result) 1u) #define TX_QUEUED ((__force ieee80211_tx_result) 2u) @@ -180,7 +180,7 @@ struct ieee80211_tx_data { }; -typedef unsigned __bitwise__ ieee80211_rx_result; +typedef unsigned __bitwise ieee80211_rx_result; #define RX_CONTINUE ((__force ieee80211_rx_result) 0u) #define RX_DROP_UNUSABLE ((__force ieee80211_rx_result) 1u) #define RX_DROP_MONITOR ((__forc...
2013 Oct 25
0
[PATCH] Btrfs: return an error from btrfs_wait_ordered_range
...lock_page(pages[i]); page_cache_release(pages[i]); } - btrfs_wait_ordered_range(inode, start_pos, - last_pos - start_pos); + err = btrfs_wait_ordered_range(inode, start_pos, + last_pos - start_pos); + if (err) + goto fail; goto again; } if (ordered) @@ -1808,8 +1811,13 @@ int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync) atomic_inc(&root->log_batch); full_sync = test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags); - if (full_sync) - btrfs_wait_ordered_range(inode, start, end -...
2014 Sep 26
0
[RFC PATCH 6/7] drm/nouveau: Support marking buffers for explicit sync
...drm/nouveau_ttm.c | 8 ++++---- drm/nv50_display.c | 2 +- drm/uapi/drm/nouveau_drm.h | 5 ++++- 8 files changed, 60 insertions(+), 21 deletions(-) diff --git a/drm/nouveau_bo.c b/drm/nouveau_bo.c index 534734a..68b7bdd 100644 --- a/drm/nouveau_bo.c +++ b/drm/nouveau_bo.c @@ -180,7 +180,7 @@ nouveau_bo_fixup_align(struct nouveau_bo *nvbo, u32 flags, int nouveau_bo_new(struct drm_device *dev, int size, int align, - uint32_t flags, uint32_t tile_mode, uint32_t tile_flags, + uint32_t flags, uint32_t tile_mode, uint32_t bo_flags, struct sg_table *sg,...
2013 Dec 26
2
[LLVMdev] [cfe-dev] lsan for LLVM bootstrap; leaks in TableGen
...leGen/TableGen.cpp >> > >> > =================================================================== >> > >> > --- utils/TableGen/TableGen.cpp (revision 198007) >> > >> > +++ utils/TableGen/TableGen.cpp (working copy) >> > >> > @@ -180,3 +180,7 @@ >> > >> > >> > >> > return TableGenMain(argv[0], &LLVMTableGenMain); >> > >> > } >> > >> > + >> > >> > +extern "C" { >> > >> > +int __lsan_is_turned_off() { retu...
2007 Apr 18
0
[RFC/PATCH PV_OPS X86_64 08/17] paravirt_ops - memory managment
...teven Rostedt srostedt@redhat.com Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> Index: clean-start/arch/x86_64/mm/fault.c =================================================================== --- clean-start.orig/arch/x86_64/mm/fault.c +++ clean-start/arch/x86_64/mm/fault.c @@ -180,7 +180,7 @@ void dump_pagetable(unsigned long addres pmd_t *pmd; pte_t *pte; - asm("movq %%cr3,%0" : "=r" (pgd)); + pgd = (pgd_t *)read_cr3(); pgd = __va((unsigned long)pgd & PHYSICAL_PAGE_MASK); pgd += pgd_index(address); @@ -347,7 +347,7 @@ asmlinkage void __k...
2007 Apr 18
0
[RFC/PATCH PV_OPS X86_64 08/17] paravirt_ops - memory managment
...teven Rostedt srostedt@redhat.com Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> Index: clean-start/arch/x86_64/mm/fault.c =================================================================== --- clean-start.orig/arch/x86_64/mm/fault.c +++ clean-start/arch/x86_64/mm/fault.c @@ -180,7 +180,7 @@ void dump_pagetable(unsigned long addres pmd_t *pmd; pte_t *pte; - asm("movq %%cr3,%0" : "=r" (pgd)); + pgd = (pgd_t *)read_cr3(); pgd = __va((unsigned long)pgd & PHYSICAL_PAGE_MASK); pgd += pgd_index(address); @@ -347,7 +347,7 @@ asmlinkage void __k...
2014 May 26
2
[PATCH] builder: support aliases for images (RHBZ#1098718).
...compressed_size = compressed_size; notes = notes; + aliases = aliases; hidden = hidden }) -> printf " {\n"; printf " \"os-version\": \"%s\",\n" name; @@ -164,6 +180,7 @@ and list_entries_json ~sources index = printf " \"size\": %Ld,\n" size; json_optional_printf_int64 "compressed-size" compressed_size; print_notes notes; + json_optional_printf_stringlist "aliases" aliases; printf &quot...