Displaying 7 results from an estimated 7 matches for "unneccessarily".
Did you mean:
unnecessarily
2009 Aug 25
0
[LLVMdev] std::cout << *MyModule does not work anymore
...exists, but std::ofstream does not. The
> changes include using new names for flags that already exist on the
> standard namespace (F_Force instead of O_TRUNC, etc).
Also, each of LLVM <=2.5, 2.6 and 2.7(svn) provide their own,
incompatible llvm::raw_fd_ostream constructors. This makes it
unneccessarily hard to support different LLVM versions in a frontend.
I understand why the llvm::raw_fd_ostream interface was changed, but it
would have been nice if the old constructors were kept and implemented
in terms of the new ones. That's completely trivial in this case and
shouldn't cause any har...
2017 Sep 23
0
drivers/gpu/drm/nouveau/nvkm/subdev/therm/temp.c: broken emergency poweroff handling
Hi!
Not only it is unneccessarily complex, it is also broken; GFP_ATOMIC
allocation can fail.. and then you fail to shut down the machine.
Someone please fix this.
Thanks,
Pavel
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/therm/temp.c
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/therm/temp.c
@@ -120,6 +120,11 @@ nvkm_therm_se...
2007 Mar 15
2
simply_helpful's form_for not respecting default_url_options (only_path)
...ptions (specifically only_path) is a side-effect of some
other default behavior choices?
Personally, I set only_path to true as my default as I think except
were you are dealing with https it makes life much easier (especially
in testing) and is just cleaner all around. I''ve always hated
unneccessarily qualified links, as they can bite you in the ass.
If I could track down and modify this behavior, would there be enough
interest in it (it may be right at the edge of my ruby-fu) to get it
patched in? I know the usual answer is "make a plugin," but I don''t
know if I really woul...
2009 Jan 08
0
Wrong behaviour in pdb_get_set.c: pdb_get_pass_can_change_time?
...'s of preventing password changes in general.
Now following some 3 stange lines of code:
if (sampass->pass_can_change_time == get_time_t_max() &&
pdb_get_init_flags(sampass, PDB_CANCHANGETIME) == PDB_CHANGED)
return sampass->pass_can_change_time;
Here (again, unneccessarily) the time is checked against get_time_t_max
and it's checked wether the flag that the sambaPwdCanChange time was
changed (which doesn't makes much sense to me at all, because this line
will never be reached, at least from change_oem_password) and then
returns the value which must be get_tim...
2008 Jan 31
16
Hardware RAID vs. ZFS RAID
Hello,
I have a Dell 2950 with a Perc 5/i, two 300GB 15K SAS drives in a RAID0 array. I am considering going to ZFS and I would like to get some feedback about which situation would yield the highest performance: using the Perc 5/i to provide a hardware RAID0 that is presented as a single volume to OpenSolaris, or using the drives separately and creating the RAID0 with OpenSolaris and ZFS? Or
2005 Jul 22
0
Bug in 0.99.14 mbox handling - mail UIDs are renumbered without bumping UIDVALIDITY
...ader in the first message of that mbox and is typically the
uid-invalidation time expressed in unix timestamp format (ie the number
of seconds elapsed since the epoch.)
--- 8< --------------------------------------------------------------
Okay, the actual bug: Dovecot routinely (and apparently unneccessarily)
renumbers all of the UIDs in our mbox-backed mailboxes without updating
the UIDVALIDITY count. This results in caching mail clients (such as
Evolution and Thunderbird) presenting the incorrect email to the user
when browsing their mail.
Configuration:
We are using Dovecot as a standalone daemon...
2009 Aug 25
4
[LLVMdev] std::cout << *MyModule does not work anymore
It seems that support for dumping text representation of LLVM objects to
standard channels and C++ output streams was removed. My guess is that
now we must use errs() instead of std::cerr, llvm::raw_fd_ostream
instead of std::ofstream, etc.
The changes are not trivial, as for instance llvm::raw_fd_ostream
without flags fails if the file exists, but std::ofstream does not. The
changes include