Displaying 20 results from an estimated 116 matches for "_why_".
2016 May 26
2
[PATCH v3 5/6] pv-qspinlock: use cmpxchg_release in __pv_queued_spin_unlock
...sible to have multiple @lock
> * entries, which would be BAD.
> */
> - locked = cmpxchg(&l->locked, _Q_LOCKED_VAL, 0);
> + locked = cmpxchg_release(&l->locked, _Q_LOCKED_VAL, 0);
> if (likely(locked == _Q_LOCKED_VAL))
> return;
This patch fails to explain _why_ it can be relaxed.
And seeing how this cmpxchg() can actually unlock the lock, I don't see
how this can possibly be correct. Maybe cmpxchg_release(), but relaxed
seems very wrong.
2016 May 26
2
[PATCH v3 5/6] pv-qspinlock: use cmpxchg_release in __pv_queued_spin_unlock
...sible to have multiple @lock
> * entries, which would be BAD.
> */
> - locked = cmpxchg(&l->locked, _Q_LOCKED_VAL, 0);
> + locked = cmpxchg_release(&l->locked, _Q_LOCKED_VAL, 0);
> if (likely(locked == _Q_LOCKED_VAL))
> return;
This patch fails to explain _why_ it can be relaxed.
And seeing how this cmpxchg() can actually unlock the lock, I don't see
how this can possibly be correct. Maybe cmpxchg_release(), but relaxed
seems very wrong.
2019 Nov 20
2
[PATCH v4] pci: prevent putting nvidia GPUs into lower device states on certain intel bridges
overall, what I really want to know is, _why_ does it work on windows?
Or what are we doing differently on Linux so that it doesn't work? If
anybody has any idea on how we could dig into this and figure it out
on this level, this would probably allow us to get closer to the root
cause? no?
On Wed, Nov 20, 2019 at 12:54 PM Karol Herbst <...
2016 Jun 23
0
How can I make llvm intrinsic functions declarations survive from optimizations.
Hi Zhengyang,
Do you mind sharing _why_ you need the intrinsic declarations to stay
around? It is possible that there is a better way of solving your
problem.
Thanks!
-- Sanjoy
2018 Jan 30
2
Why R should never move to git
This might be off topic, but if R-core development ever moves to git,
I think it would make sense to have its own git service hosted by a
university, rather than using
github or gitlab. It is possible via https://gogs.io/ project.
Just for the record.
Best,
-m
2006 Dec 04
1
backticks
I noticed just now that
package.skeleton() produces R files in which
the function names are escaped with backticks.
?Quotes says that "The preferred quote is the backtick (`)",
but I don't understand _why_ this is preferred.
?formula gives some clues but points out that there
are no guarantees that formulae using non-syntactic names such as
`like this` will be accepted.
What exactly do backticks do that single or double quotes don't?
Where do I look for documentation on this?
--
Robin Hank...
2007 Oct 06
2
Damaged rpm database?
...ines identical to the one above and finally:
the_last_package_I_installed_yesterday.rpm
all the other rpms in reverse installation order
I've seen via google that this should mean there is a damaged rpm
database and it should be rebuilt with one or two command, however:
1) how can I find out _why_ the damage happened?
2) what are the right command and options to restore the database?
The examples I've found are 5+ years old, so I'm not really inclined
to run them as they are.
TIA,
Marco
2006 Aug 11
1
print command disabled when smbd linked against CUPS - why?
I know the 'print command' directive is disabled when printing via
CUPS,
the man page says so.
Can anybody explain _why_ this is the case?
My situation: I'm administering a package that shares a server with
other
applications. This proprietary unix package needs some help printing
with
the layout etc. so various sed/awk scripts need to take place before
printing. This has been running using a print command in s...
2011 Jan 29
2
On the trail of sigsuspend(2)
...?
root at ara2:~ # cat >t.c
#include <stdio.h>
#include <signal.h>
int main(void) {
printf("%zu\n", sizeof(sigset_t));
return (0);
}
root at ara2:~ # klcc -o tklibc t.c; gcc -o tglibc t.c; ./tklibc; ./tglibc
4
128
No wonder mksh no longer works? any idea _why_, _where_, and how to fix?
Thanks in advance,
//mirabilos
--
?It is inappropriate to require that a time represented as
seconds since the Epoch precisely represent the number of
seconds between the referenced time and the Epoch.?
-- IEEE Std 1003.1b-1993 (POSIX) Section B.2.2.2
2019 Aug 13
1
[RFC PATCH v6 70/92] kvm: x86: filter out access rights only when tracked by the introspection tool
...m_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_PREWRITE) ||
>
If this patch is always needed, then the function should be named
something like kvm_mmu_apply_introspection_access and kvmi_tracked_gfn
should be tested from the moment it is introduced.
But the commit message says nothing about _why_ it is needed, so I
cannot guess. I would very much avoid it however. Is it just an
optimization?
Paolo
2004 May 24
1
Unix directories (was Re: Why isn't everyone compiling wine)
...> I'll be a bit less polite and a bit more to the point.
>
> If Unix systems didn't insist upon scattering files all the hell over
> /etc, /usr/local/bin, /usr/local/lib, /usr/local/include,
> /var/share/mybunghole, /opt/local/stupidlib, etc. etc...
Anyone interested in _why_ un*x systems use this structure, take a look
at the FHS (Filesystem Hierarchy Standard) project at
http://www.pathname.com/fhs/
A lot of it has to do with managing networks of machines in a
professional environment, which is why it seems pointless to a single
workstation installation for a hom...
2016 Jun 23
2
How can I make llvm intrinsic functions declarations survive from optimizations.
Dear LLVM community.
I have a function pass. This pass will insert a llvm intrinsic function
prototype (llvm.memset.p0i8.i32) to the module at the doInitialize
stage. Then at runOnFunction Stage, this pass will find the insert
points and insert calls of this intrinsic function. However, when the
-O2 flag is turned on, the strip unused function optimization will
automatically delete this
2019 Nov 20
4
[PATCH v4] pci: prevent putting nvidia GPUs into lower device states on certain intel bridges
...bst wrote:
> > > On Wed, Nov 20, 2019 at 1:09 PM Mika Westerberg
> > > <mika.westerberg at intel.com> wrote:
> > > >
> > > > On Wed, Nov 20, 2019 at 12:58:00PM +0100, Karol Herbst wrote:
> > > > > overall, what I really want to know is, _why_ does it work on windows?
> > > >
> > > > So do I ;-)
> > > >
> > > > > Or what are we doing differently on Linux so that it doesn't work? If
> > > > > anybody has any idea on how we could dig into this and figure it out
> >...
2019 Nov 20
1
[PATCH v4] pci: prevent putting nvidia GPUs into lower device states on certain intel bridges
On Wed, Nov 20, 2019 at 12:58:00PM +0100, Karol Herbst wrote:
> overall, what I really want to know is, _why_ does it work on windows?
So do I ;-)
> Or what are we doing differently on Linux so that it doesn't work? If
> anybody has any idea on how we could dig into this and figure it out
> on this level, this would probably allow us to get closer to the root
> cause? no?
Have you tried...
2007 Mar 21
1
rbind.data.frame reacts on levels without factor (PR#9578)
...(rather
than by position). Factors have their levels expanded as
necessary [...]"
The behavior has bitten me fairly hard, because I searched for the origin of the
warning in all the wrong places before finding the real one after about 3
hours.
(Although I still have not understood _why_ it results in that warning.)
I believe the behavior of rbind.data.frame should be fixed, so that it ignores
levels attributes when there is no factor class as well.
The alternative would be to just add a warning to the documentation that
'unclass' on factors is insufficient if users want...
2010 Aug 31
2
Making plots in big scatterplot matrix large enough to see
...ice
In addition: Warning messages:
1: In png( "plot.png", width = 4000, height = 4000 ) :
Unable to allocate bitmap
2: In png( "plot.png", width = 4000, height = 4000 ) :
opening device failed
The messages aren't helpful, because they don't tell you _why_ R can't
start the device, allocate it, or open it. The documentation for png says:
Windows imposes limits on the size of bitmaps: these are not documented
in the SDK and may depend on the version of Windows. It seems that width
and height are each limited to 2^15-1.
However, 2^15-1 is...
2002 Nov 28
1
Connection failed with smbclient
...nt whether I could
see/connect to every system.
[root@appgen root]# nmblookup caja
querying caja on 192.168.5.255
192.168.5.42 caja<00>
[root@appgen root]# smbclient //caja/c
added interface ip=192.168.5.50 bcast=192.168.5.255 nmask=255.255.255.0
Connection to caja failed
if I could resolve _why_ some Win systems have _two_ Oteima workgoups (one
to which I can connect to _all_ listed systems and one to which I cannot
connect to any) I could resolve this dilemna.
I've tried: changing workgroup name (all lowercase, all uppercase, mixed
upper/lower case); encrypt passwds yes/no. Changin...
2019 Nov 20
2
[PATCH v4] pci: prevent putting nvidia GPUs into lower device states on certain intel bridges
...n Wed, Nov 20, 2019 at 01:11:52PM +0100, Karol Herbst wrote:
> On Wed, Nov 20, 2019 at 1:09 PM Mika Westerberg
> <mika.westerberg at intel.com> wrote:
> >
> > On Wed, Nov 20, 2019 at 12:58:00PM +0100, Karol Herbst wrote:
> > > overall, what I really want to know is, _why_ does it work on windows?
> >
> > So do I ;-)
> >
> > > Or what are we doing differently on Linux so that it doesn't work? If
> > > anybody has any idea on how we could dig into this and figure it out
> > > on this level, this would probably allow us...
2004 Dec 12
2
Re: [R] Is k equivalent to k:k ?
I asked:
> In this discussion of seq(), can anyone explain to
> me _why_ seq(to=n) and seq(length=3) have different
> types?
Martin Maechler <maechler@stat.math.ethz.ch> replied:
well, the explantion isn't hard: look at seq.default :-)
That's the "efficient cause", I was after the "final cause".
That is, I wasn't asking...
2016 Jun 30
1
How can I make llvm intrinsic functions declarations survive from optimizations.
..._________
From: Sanjoy Das <sanjoy at playingwithpointers.com>
Sent: Thursday, June 23, 2016 3:44:09 PM
To: Zhengyang Liu
Cc: llvm-dev at lists.llvm.org
Subject: Re: [llvm-dev] How can I make llvm intrinsic functions declarations survive from optimizations.
Hi Zhengyang,
Do you mind sharing _why_ you need the intrinsic declarations to stay
around? It is possible that there is a better way of solving your
problem.
Thanks!
-- Sanjoy
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160630/9a8604a6/attac...