search for: hmpf

Displaying 20 results from an estimated 20 matches for "hmpf".

Did you mean: hmp
2007 Apr 18
3
r1000 Driver
I'd like to add a page for the Realtek r1000 NIC driver for the RTL8110SC (and others) chipset. This driver is not included in the kernel. I've previously posted to the general mail list: http://lists.centos.org/pipermail/centos/2007-February/075383.html I'm guessing this would go in the HardwareList section. Otherwise a page titled 'Realtek r1000 Driver' would work. my
2007 Jan 27
1
Conditional Selection of Columns for Tables
...these flat contingency tables? How can I get the results without much hazzle in one list/ table? i did read the ?ftable and what I was able to derive so far is: flat.df <- ftable(df[c("name", "revenue", "status")]) but I am unable to further agglomerate the data. hmpf. Good God, what would I do without my R-help forum? Thank you again Cheers and a relaxing weekend mark
2016 Nov 22
2
shared libraries: missing soname
...g, will not register shared library dependencies if the shared library does not have a soname. If the library > | gets changed and is no longer compatible with the previous version, and there is no soname to check, pkg will not know that all its dependencies > | need to be reinstalled. > Hmpf. No mechanism for fallback / default soname? In that case you (or > whoever acts as FreeBSD maintainer) may have to supply one. Using a fallback or default soname would defeat the purpose, which is to detect when the library's interface has changed, so that the proper action can be taken....
2016 Nov 21
2
shared libraries: missing soname
Hello Dirk, Dirk Eddelbuettel <edd at debian.org> writes: > On 20 November 2016 at 19:28, Joseph Mingrone wrote: > | Hello, > | > | R's shared libraries are linked without setting the soname. This is causing problems for some consumers. > | > | Error: /usr/local/lib/R/library/tseries/libs/tseries.so is linked to > |
2014 Dec 03
2
[PATCH RFC v5 07/19] virtio: allow virtio-1 queue layout
...Huck wrote: > > void virtio_queue_set_num(VirtIODevice *vdev, int n, int num) > > { > > + /* > > + * For virtio-1 devices, the number of buffers may only be > > + * updated if the ring addresses have not yet been set up. > > Where does it say that? Hmpf, may have imagined that. This means we either need to track whether used/avail have been specified or calculated or move responsibility for re-calculation of used/avail for the old layout into the callers. > > > + */ > > + if (virtio_has_feature(vdev, VIRTIO_F_VERSION_1) &am...
2014 Dec 03
2
[PATCH RFC v5 07/19] virtio: allow virtio-1 queue layout
...Huck wrote: > > void virtio_queue_set_num(VirtIODevice *vdev, int n, int num) > > { > > + /* > > + * For virtio-1 devices, the number of buffers may only be > > + * updated if the ring addresses have not yet been set up. > > Where does it say that? Hmpf, may have imagined that. This means we either need to track whether used/avail have been specified or calculated or move responsibility for re-calculation of used/avail for the old layout into the callers. > > > + */ > > + if (virtio_has_feature(vdev, VIRTIO_F_VERSION_1) &am...
2016 Nov 21
0
shared libraries: missing soname
...D. Our apt-get, pkg, will not register shared library dependencies if the shared library does not have a soname. If the library gets changed and is no longer compatible with the previous version, and there is no soname to check, pkg will not know that all its dependencies need to be reinstalled. Hmpf. No mechanism for fallback / default soname? In that case you (or whoever acts as FreeBSD maintainer) may have to supply one. Dirk -- http://dirk.eddelbuettel.com | @eddelbuettel | edd at debian.org
2008 Oct 17
2
Reporting NFS quotas via IMAP
I'm confident that the question has been asked before, but I can't remember the answer. I have -- dovecot 1.1.2 -- Mail storage (maildir format) on NFS -- Quotas on that file system -- A working rquotad -- mail_plugins = quota imap_quota in the protocol imap section -- quota=fs in the plugin section I get (using Apple Mail as a client) -- Notification that the account supports quotas
2008 Jun 20
4
Regression since 1.0RC5
Hi there, I've found a regression in wine. Some wine versions ago (sorry don't know the exact version but it must be wine1.0RC1 or wine1.0RC2) there was a "bug" that caused Steam to be extremly ressource hungry (processor is at 95% to 100% -> 2.4 GHz dualcore) and it took much time until you could see your games in Steam or a website is displayed. Now the bug is back (in
2016 Nov 22
0
shared libraries: missing soname
...not register shared library dependencies if the shared library does not have a soname. If the library | > | gets changed and is no longer compatible with the previous version, and there is no soname to check, pkg will not know that all its dependencies | > | need to be reinstalled. | | > Hmpf. No mechanism for fallback / default soname? In that case you (or | > whoever acts as FreeBSD maintainer) may have to supply one. | | Using a fallback or default soname would defeat the purpose, which is to detect | when the library's interface has changed, so that the proper action can be...
2001 Apr 07
2
Assertion `hdc' failed
i've compiled my own wine from source and have had the same problem twice. can anyone tellme what this means. how to fix it? $ wine icad.exe Could not stat /mnt/fd0 (No such file or directory), ignoring drive A: Could not stat /cdrom (No such file or directory), ignoring drive D: For language 'en' several language ids were found: en_US - 0409; en_GB - 0809; en_AU - 0C09; en_CA -
2008 Mar 17
1
hifn(4) causing system lockup
Hi all, can someone comment on the state of the hifn(4) driver? I've recently upgraded my 6.2-STABLE workstation to RELENG_7, and I'm now experiencing system lockups that seem to be caused by the hifn(4) driver. I've got a Soekris vpn1401 card to help with GELI disk en- cryption. Reading from a GELI volume is causing the system to freeze completely, which does not happen if
2014 Dec 03
0
[PATCH RFC v5 07/19] virtio: allow virtio-1 queue layout
..._set_num(VirtIODevice *vdev, int n, int num) > > > { > > > + /* > > > + * For virtio-1 devices, the number of buffers may only be > > > + * updated if the ring addresses have not yet been set up. > > > > Where does it say that? > > Hmpf, may have imagined that. > > This means we either need to track whether used/avail have been > specified or calculated or move responsibility for re-calculation of > used/avail for the old layout into the callers. What about this one instead? diff --git a/hw/virtio/virtio-mmio.c b/hw...
2014 Dec 03
0
[PATCH RFC v5 07/19] virtio: allow virtio-1 queue layout
..._set_num(VirtIODevice *vdev, int n, int num) > > > { > > > + /* > > > + * For virtio-1 devices, the number of buffers may only be > > > + * updated if the ring addresses have not yet been set up. > > > > Where does it say that? > > Hmpf, may have imagined that. > > This means we either need to track whether used/avail have been > specified or calculated or move responsibility for re-calculation of > used/avail for the old layout into the callers. What about this one instead? diff --git a/hw/virtio/virtio-mmio.c b/hw...
2014 Dec 02
2
[PATCH RFC v5 07/19] virtio: allow virtio-1 queue layout
On Tue, 2 Dec 2014 15:54:44 +0100 Cornelia Huck <cornelia.huck at de.ibm.com> wrote: > On Tue, 2 Dec 2014 16:46:28 +0200 > "Michael S. Tsirkin" <mst at redhat.com> wrote: > > pa == -1ULL tricks look quite ugly. > > Can't we set desc/avail/used unconditionally, and drop > > the pa value? > > And have virtio_queue_get_addr() return desc? Let
2014 Dec 02
2
[PATCH RFC v5 07/19] virtio: allow virtio-1 queue layout
On Tue, 2 Dec 2014 15:54:44 +0100 Cornelia Huck <cornelia.huck at de.ibm.com> wrote: > On Tue, 2 Dec 2014 16:46:28 +0200 > "Michael S. Tsirkin" <mst at redhat.com> wrote: > > pa == -1ULL tricks look quite ugly. > > Can't we set desc/avail/used unconditionally, and drop > > the pa value? > > And have virtio_queue_get_addr() return desc? Let
2016 Nov 22
2
shared libraries: missing soname
...library dependencies if the shared library does not have a soname. If the library > | > | gets changed and is no longer compatible with the previous version, and there is no soname to check, pkg will not know that all its dependencies > | > | need to be reinstalled. > | > | > Hmpf. No mechanism for fallback / default soname? In that case you (or > | > whoever acts as FreeBSD maintainer) may have to supply one. > | > | Using a fallback or default soname would defeat the purpose, which is to detect > | when the library's interface has changed, so that the...
2009 Feb 21
10
Problem with test_truth
hello all, i have a problem with test_truth. require ''test_helper'' class MyDataTest < ActiveSupport::TestCase def test_truth assert true end end this should ok without failures or errors. but it failure: 1) Error: test_truth(MyDataTest): ActiveRecord::StatementInvalid: Mysql::Error: Table ''alldataserver_test.members'' doesn''t exist: DELETE
2014 Dec 03
2
[PATCH RFC v5 07/19] virtio: allow virtio-1 queue layout
...num) > > > > { > > > > + /* > > > > + * For virtio-1 devices, the number of buffers may only be > > > > + * updated if the ring addresses have not yet been set up. > > > > > > Where does it say that? > > > > Hmpf, may have imagined that. > > > > This means we either need to track whether used/avail have been > > specified or calculated or move responsibility for re-calculation of > > used/avail for the old layout into the callers. > > What about this one instead? Looks ok ov...
2014 Dec 03
2
[PATCH RFC v5 07/19] virtio: allow virtio-1 queue layout
...num) > > > > { > > > > + /* > > > > + * For virtio-1 devices, the number of buffers may only be > > > > + * updated if the ring addresses have not yet been set up. > > > > > > Where does it say that? > > > > Hmpf, may have imagined that. > > > > This means we either need to track whether used/avail have been > > specified or calculated or move responsibility for re-calculation of > > used/avail for the old layout into the callers. > > What about this one instead? Looks ok ov...