search for: 241,7

Displaying 20 results from an estimated 195 matches for "241,7".

Did you mean: 24,7
2015 Feb 17
1
[PATCH] graph/nvc0: Fix engine pointer retrieval
...rm/nouveau/nvkm/engine/gr/gf100.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drm/nouveau/nvkm/engine/gr/gf100.c b/drm/nouveau/nvkm/engine/gr/gf100.c index b751d0dc4bf3..34b6d4baea16 100644 --- a/drm/nouveau/nvkm/engine/gr/gf100.c +++ b/drm/nouveau/nvkm/engine/gr/gf100.c @@ -241,7 +241,7 @@ static int gf100_gr_set_shader_exceptions(struct nvkm_object *object, u32 mthd, void *pdata, u32 size) { - struct gf100_gr_priv *priv = (void *)nv_engine(object); + struct gf100_gr_priv *priv = (void *)object->engine; if (size >= sizeof(u32)) { u32 data = *(u32 *...
2020 Aug 20
0
[klibc:master] klcc: Treat CC, LD, STRIP as multiple words
...opt = ('-o', $output) if ( defined($output) ); - $rv = mysystem($CC, @ccopt, @outopt, files_with_lang(\@files, \%flang)); + $rv = mysystem(@CC, @ccopt, @outopt, files_with_lang(\@files, \%flang)); } else { if ( scalar(@files) == 0 ) { die "$0: No input files!\n"; @@ -241,7 +241,7 @@ if ( $operation ne '' ) { push(@objs, $fo); push(@rmobjs, $fo) unless ( $save_temps ); - $rv = mysystem($CC, @ccopt, '-c', '-o', $fo, '-x', $flang{$f}, $f); + $rv = mysystem(@CC, @ccopt, '-c', '-o', $fo, '-x',...
2019 May 22
0
[libnbd PATCH v2 1/5] lib: Refactor state event into command_common
...uint64_t offset, + uint64_t count, void *data); + /* socket.c */ struct socket *nbd_internal_socket_create (int fd); diff --git a/lib/rw.c b/lib/rw.c index 9dfce97..a7587e9 100644 --- a/lib/rw.c +++ b/lib/rw.c @@ -241,7 +241,7 @@ nbd_unlocked_block_status (struct nbd_handle *h, return r == -1 ? -1 : 0; } -static struct command_in_flight * +struct command_in_flight * command_common (struct nbd_connection *conn, uint16_t flags, uint16_t type, uint64_t offset, uint64_t count,...
2006 Nov 13
0
[730] trunk/wxruby2/samples/etc/system_settings.rb: The call to message_box in on_about needed to be prefixed with Wx::
...;nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp2006-11-12 23:50:05 UTC (rev 729) +++ trunk/wxruby2/samples/etc/system_settings.rb&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp2006-11-13 06:32:02 UTC (rev 730) </span><span class="lines">@@ -241,7 +241,7 @@ </span><span class="cx"> def on_about() </span><span class="cx"> msg = sprintf("This is the About dialog of the minimal sample.\n" \ </span><span class="cx"> "Welcome to %s",...
2009 Jul 09
1
apcsmart and dual environmental sensors
..."ambient.temperature.dual", + APC_POLL|APC_F_LEAVE, 'T' }, { "ambient.temperature.alarm.maximum", APC_F_CELSIUS, '[' }, { "ambient.temperature.alarm.minimum", @@ -241,7 +245,7 @@ }; /* things to ignore in protocol_verify - useless variables, etc. */ -#define CMD_IGN_CHARS "\032-78 at .,~\047\177QHRTYayz)1IJ" +#define CMD_IGN_CHARS "\032-78 at .,~\047\177QRYayz)1IJ" /* compatibility with hardware that doesn't do APC_CMDSET ('a...
2016 Oct 25
0
[GIT PULL v2 4/5] processor.h: Remove cpu_relax_lowlatency users
...inter is set */ while (!(next = READ_ONCE(node->next))) - cpu_relax_lowlatency(); + cpu_relax(); } /* Pass lock to next waiter. */ diff --git a/kernel/locking/mutex.c b/kernel/locking/mutex.c index a70b90d..4463405 100644 --- a/kernel/locking/mutex.c +++ b/kernel/locking/mutex.c @@ -241,7 +241,7 @@ bool mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner) break; } - cpu_relax_lowlatency(); + cpu_relax(); } rcu_read_unlock(); @@ -377,7 +377,7 @@ static bool mutex_optimistic_spin(struct mutex *lock, * memory barriers as we'll eventually observe...
2018 May 30
2
[PATCH v3 1/2] ARM: dma-mapping: Implement arm_dma_iommu_detach_device()
...t; static inline bool is_device_dma_coherent(struct device *dev) > { > diff --git a/arch/arm/mm/dma-mapping-nommu.c b/arch/arm/mm/dma-mapping-nommu.c > index f448a0663b10..eb781369377b 100644 > --- a/arch/arm/mm/dma-mapping-nommu.c > +++ b/arch/arm/mm/dma-mapping-nommu.c > @@ -241,3 +241,7 @@ void arch_setup_dma_ops(struct device *dev, u64 dma_base, u64 size, > void arch_teardown_dma_ops(struct device *dev) > { > } > + > +void arm_dma_iommu_detach_device(struct device *dev) > +{ > +} > diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-map...
2003 Mar 12
1
patch: typo's and gcc warnings
...omparison between signed and unsigned". Paul Slootman -------------- next part -------------- diff -ru orig/rsync-2.5.6/generator.c rsync-2.5.6/generator.c --- orig/rsync-2.5.6/generator.c 2002-08-29 16:44:55.000000000 +0200 +++ rsync-2.5.6/generator.c 2003-03-07 12:06:57.000000000 +0100 @@ -241,7 +241,7 @@ !preserve_perms && (S_ISDIR(st.st_mode) == S_ISDIR(file->mode))) { /* if the file exists already and we aren't perserving - presmissions then act as though the remote end sent + permissions then act as though the remote...
2018 May 30
2
[PATCH v3 1/2] ARM: dma-mapping: Implement arm_dma_iommu_detach_device()
...*dev) > > > { > > > diff --git a/arch/arm/mm/dma-mapping-nommu.c b/arch/arm/mm/dma-mapping-nommu.c > > > index f448a0663b10..eb781369377b 100644 > > > --- a/arch/arm/mm/dma-mapping-nommu.c > > > +++ b/arch/arm/mm/dma-mapping-nommu.c > > > @@ -241,3 +241,7 @@ void arch_setup_dma_ops(struct device *dev, u64 dma_base, u64 size, > > > void arch_teardown_dma_ops(struct device *dev) > > > { > > > } > > > + > > > +void arm_dma_iommu_detach_device(struct device *dev) > > > +{ > > &gt...
2020 Mar 20
0
[PATCH 2/2] mm/thp: Rename pmd_mknotpresent() as pmd_mknotvalid()
...te_mkclean(pmd_pte(pmd))) #define pmd_write(pmd) pte_write(pmd_pte(pmd)) diff --git a/arch/arm/include/asm/pgtable-3level.h b/arch/arm/include/asm/pgtable-3level.h index ad55ab068dbf..2943cdf2828b 100644 --- a/arch/arm/include/asm/pgtable-3level.h +++ b/arch/arm/include/asm/pgtable-3level.h @@ -241,7 +241,7 @@ PMD_BIT_FUNC(mkyoung, |= PMD_SECT_AF); #define pmdp_establish generic_pmdp_establish /* represent a notpresent pmd by faulting entry, this is used by pmdp_invalidate */ -static inline pmd_t pmd_mknotpresent(pmd_t pmd) +static inline pmd_t pmd_mknotvalid(pmd_t pmd) { return __pm...
2020 Nov 06
2
[PATCH 2/3] drm/nouveau: manage nouveau_drm lifetime with devres
...nouveau_cli master; > struct nouveau_cli client; > - struct drm_device *dev; > + > + /** > + * @drm_dev: The parent DRM device object. > + */ > + struct drm_device drm_dev; > > struct list_head clients; > > @@ -237,7 +241,7 @@ struct nouveau_drm { > static inline struct nouveau_drm * > nouveau_drm(struct drm_device *dev) > { > - return dev->dev_private; > + return container_of(dev, struct nouveau_drm, drm_dev); > } > > /** > @@ -251,7 +255,7 @@ nouveau_drm(struct drm_de...
2003 May 22
1
[LLVMdev] allow gcc .... /full/path/to/libfoo.a
...bjects, isArchive)) return false; - - if (NextLibPathIdx == LibPaths.size()) break; - Directory = LibPaths[NextLibPathIdx++]+"/"; } - ErrorMessage = "error linking library '-l" + LibName+ "': library not found!"; return true; } @@ -231,7 +241,7 @@ static void GetAllUndefinedSymbols(Modul static bool LinkLibrary(Module *M, const std::string &LibName, - std::string &ErrorMessage) { + bool search, std::string &ErrorMessage) { std::set<std::string> UndefinedSymbols;...
2004 Jul 20
3
Bug? 1.0.0-test28 NFS locking problems
...aildir/maildir-util.c dovecot-1.0-test28/src/lib-storage/index/maildir/maildir-util.c--- dovecot-1.0-test28.orig/src/lib-storage/index/maildir/maildir-util.c 2004-06-16 01:50:41.000000000 +0100+++ dovecot-1.0-test28/src/lib-storage/index/maildir/maildir-util.c 2004-07-20 14:51:25.000000000 +0100@@ -241,7 +241,7 @@ if (stat(path, &st) < 0 && errno == ENOENT) { /* doesn't exist */ mode_t old_mask = umask(0); - fd = open(path, O_WRONLY | O_CREAT | O_EXCL, mode); + fd = open(path, O_WRONLY | O_CREAT, mode); umask(old_mask); if (fd != -1 || errno != EEXIST)...
2016 Oct 19
2
[PATCH v2 1/1] s390/spinlock: Provide vcpu_is_preempted
...rwlock_t *rw, unsigned int prev) > owner = 0; > while (1) { > if (count-- <= 0) { > - if (owner && cpu_is_preempted(~owner)) > + if (owner && arch_vcpu_is_preempted(~owner)) > smp_yield_cpu(~owner); > count = spin_retry; > } > @@ -241,7 +232,7 @@ void _raw_write_lock_wait(arch_rwlock_t *rw) > owner = 0; > while (1) { > if (count-- <= 0) { > - if (owner && cpu_is_preempted(~owner)) > + if (owner && arch_vcpu_is_preempted(~owner)) > smp_yield_cpu(~owner); > count = spin_r...
2016 Oct 19
2
[PATCH v2 1/1] s390/spinlock: Provide vcpu_is_preempted
...rwlock_t *rw, unsigned int prev) > owner = 0; > while (1) { > if (count-- <= 0) { > - if (owner && cpu_is_preempted(~owner)) > + if (owner && arch_vcpu_is_preempted(~owner)) > smp_yield_cpu(~owner); > count = spin_retry; > } > @@ -241,7 +232,7 @@ void _raw_write_lock_wait(arch_rwlock_t *rw) > owner = 0; > while (1) { > if (count-- <= 0) { > - if (owner && cpu_is_preempted(~owner)) > + if (owner && arch_vcpu_is_preempted(~owner)) > smp_yield_cpu(~owner); > count = spin_r...
2020 Apr 30
2
[PATCH] vhost: vsock: don't send pkt when vq is not started
...++ > > > 1 file changed, 8 insertions(+) > > > > > > diff --git a/drivers/vhost/vsock.c b/drivers/vhost/vsock.c > > > index e36aaf9ba7bd..67474334dd88 100644 > > > --- a/drivers/vhost/vsock.c > > > +++ b/drivers/vhost/vsock.c > > > @@ -241,6 +241,7 @@ vhost_transport_send_pkt(struct virtio_vsock_pkt > > *pkt) > > > { > > > struct vhost_vsock *vsock; > > > int len = pkt->len; > > > +struct vhost_virtqueue *vq; > > > > > > rcu_read_lock(); > > > > > >...
2020 Apr 30
2
[PATCH] vhost: vsock: don't send pkt when vq is not started
...++ > > > 1 file changed, 8 insertions(+) > > > > > > diff --git a/drivers/vhost/vsock.c b/drivers/vhost/vsock.c > > > index e36aaf9ba7bd..67474334dd88 100644 > > > --- a/drivers/vhost/vsock.c > > > +++ b/drivers/vhost/vsock.c > > > @@ -241,6 +241,7 @@ vhost_transport_send_pkt(struct virtio_vsock_pkt > > *pkt) > > > { > > > struct vhost_vsock *vsock; > > > int len = pkt->len; > > > +struct vhost_virtqueue *vq; > > > > > > rcu_read_lock(); > > > > > >...
2002 May 22
0
[PATCH] connect() timeout
...val != 0) + { + errno = optval; + return -1; + } + return 0; + + default: + /* Should not occur */ + return -1; + break; + } + + return -1; + +} + /* * Opens a TCP/IP connection to the remote server on the given host. * The address of the remote host will be returned in hostaddr. @@ -241,7 +298,7 @@ */ int ssh_connect(const char *host, struct sockaddr_storage * hostaddr, - u_short port, int family, int connection_attempts, + u_short port, int family, int connection_attempts, int connection_timeout, int anonymous, struct passwd *pw, const char *proxy_command) { int...
2002 May 04
1
A simpler move-files patch
...---8<---cut here--->8------>8------>8------>8--- Index: options.c --- save/options.c Sat May 4 11:22:22 2002 +++ options.c Sat May 4 11:27:17 2002 @@ -86,6 +86,7 @@ int modify_window=0; #endif int blocking_io=-1; +int move_files=0; /** Network address family. **/ @@ -240,6 +241,7 @@ rprintf(F," --delete-after delete after transferring, not before\n"); rprintf(F," --ignore-errors delete even if there are IO errors\n"); rprintf(F," --max-delete=NUM don't delete more than NUM files\n"); + rprintf...
2017 May 31
6
[PATCH 1/4] efi/udp: core_udp_connect should use SubnetMask not StationAddress for netmask
Signed-off-by: Julien Viard de Galbert <jviarddegalbert at online.net> --- efi/udp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/efi/udp.c b/efi/udp.c index 1088f47..b0f13ad 100644 --- a/efi/udp.c +++ b/efi/udp.c @@ -163,7 +163,7 @@ void core_udp_connect(struct pxe_pvt_inode *socket, uint32_t ip, } else { udata.UseDefaultAddress = FALSE;