search for: id_b

Displaying 11 results from an estimated 11 matches for "id_b".

Did you mean: id_
2016 Aug 24
2
[PATCH 2/3] qemu: Implement virtio-pstore device
...file_prefix[prefix_idx + i]; > + > + if (g_str_has_prefix(de->d_name, prefix)) { > + return 1; > + } > + } > + return 0; > +} > + > +static int sort_pstore(const struct dirent **a, const struct dirent **b) > +{ > + uint64_t id_a, id_b; > + > + qemu_strtoull((*a)->d_name + prefix_len, NULL, 0, &id_a); > + qemu_strtoull((*b)->d_name + prefix_len, NULL, 0, &id_b); > + > + return id_a - id_b; > +} > + > +static int rotate_pstore_file(VirtIOPstore *s, unsigned short type) AFAIK you'...
2016 Aug 24
2
[PATCH 2/3] qemu: Implement virtio-pstore device
...file_prefix[prefix_idx + i]; > + > + if (g_str_has_prefix(de->d_name, prefix)) { > + return 1; > + } > + } > + return 0; > +} > + > +static int sort_pstore(const struct dirent **a, const struct dirent **b) > +{ > + uint64_t id_a, id_b; > + > + qemu_strtoull((*a)->d_name + prefix_len, NULL, 0, &id_a); > + qemu_strtoull((*b)->d_name + prefix_len, NULL, 0, &id_b); > + > + return id_a - id_b; > +} > + > +static int rotate_pstore_file(VirtIOPstore *s, unsigned short type) AFAIK you'...
2010 Jun 08
3
Matrix to "database" -- best practices/efficiency?
I have a matrix of, say, M and N dimensions: my_matrix=matrix(c(1:60),nrow=6,ncol=10) I have two "id" vectors corresponding to the rows and columns, e.g.: id_m=seq(10,60,by=10) id_n=seq(100,1000,by=100) I would like to create a "proper" database (let's say a data.frame for this example -- i'm going to be loading these into an SQLite database, but we'll leave
2016 Aug 26
0
[PATCH 2/3] qemu: Implement virtio-pstore device
...if (g_str_has_prefix(de->d_name, prefix)) { > > + return 1; > > + } > > + } > > + return 0; > > +} > > + > > +static int sort_pstore(const struct dirent **a, const struct dirent **b) > > +{ > > + uint64_t id_a, id_b; > > + > > + qemu_strtoull((*a)->d_name + prefix_len, NULL, 0, &id_a); > > + qemu_strtoull((*b)->d_name + prefix_len, NULL, 0, &id_b); > > + > > + return id_a - id_b; > > +} > > + > > +static int rotate_pstore_file(VirtIOPstore...
2006 Jul 12
0
two-way dictionary
...d go about by declaring something like: has_and_belongs_to_many :peers, :class_name => "Expression", :join_table => "expressions_dictionary", :foreign_key => "id_a", :association_foreign_key => "id_b" Only that this way the dictionary would only work one way ? only finding all the Bs mapped to A but not the Bs that have A mapped to them. What would be the best way to circumvent this default behaviour? Thanks! -Sebastian
2016 Aug 20
0
[PATCH 2/3] qemu: Implement virtio-pstore device
...nt; i++) { + const char *prefix = virtio_pstore_file_prefix[prefix_idx + i]; + + if (g_str_has_prefix(de->d_name, prefix)) { + return 1; + } + } + return 0; +} + +static int sort_pstore(const struct dirent **a, const struct dirent **b) +{ + uint64_t id_a, id_b; + + qemu_strtoull((*a)->d_name + prefix_len, NULL, 0, &id_a); + qemu_strtoull((*b)->d_name + prefix_len, NULL, 0, &id_b); + + return id_a - id_b; +} + +static int rotate_pstore_file(VirtIOPstore *s, unsigned short type) +{ + int ret = 0; + int i, num; + char *filena...
2016 Nov 10
0
[PATCH 2/3] qemu: Implement virtio-pstore device
...ix)) { > > > + return 1; > > > + } > > > + } > > > + return 0; > > > +} > > > + > > > +static int sort_pstore(const struct dirent **a, const struct dirent **b) > > > +{ > > > + uint64_t id_a, id_b; > > > + > > > + qemu_strtoull((*a)->d_name + prefix_len, NULL, 0, &id_a); > > > + qemu_strtoull((*b)->d_name + prefix_len, NULL, 0, &id_b); > > > + > > > + return id_a - id_b; > > > +} > > > + > > > +sta...
2016 Aug 20
7
[RFC/PATCHSET 0/3] virtio: Implement virtio pstore device (v3)
Hello, This is another iteration of the virtio-pstore work. In this patchset I addressed most of feedbacks from previous version and drooped the support for PSTORE_TYPE_CONSOLE for simplicity. It'll be added once the basic implementation * changes in v3) - use QIOChannel API (Stefan, Daniel) - add bound check for malcious guests (Daniel) - drop support PSTORE_TYPE_CONSOLE for now
2016 Aug 20
7
[RFC/PATCHSET 0/3] virtio: Implement virtio pstore device (v3)
Hello, This is another iteration of the virtio-pstore work. In this patchset I addressed most of feedbacks from previous version and drooped the support for PSTORE_TYPE_CONSOLE for simplicity. It'll be added once the basic implementation * changes in v3) - use QIOChannel API (Stefan, Daniel) - add bound check for malcious guests (Daniel) - drop support PSTORE_TYPE_CONSOLE for now
2016 Aug 31
4
[RFC/PATCHSET 0/3] virtio: Implement virtio pstore device (v4)
Hello, This is another iteration of the virtio-pstore work. I've addressed all comments from Daniel Berrange on the qemu side. * changes in v4) - use qio_channel_file_new_path() (Daniel) - rename to delete_old_pstore_file (Daniel) - convert G_REMOVE_SOURCE to FALSE (Daniel) * changes in v3) - use QIOChannel API (Stefan, Daniel) - add bound check for malcious guests
2016 Aug 31
4
[RFC/PATCHSET 0/3] virtio: Implement virtio pstore device (v4)
Hello, This is another iteration of the virtio-pstore work. I've addressed all comments from Daniel Berrange on the qemu side. * changes in v4) - use qio_channel_file_new_path() (Daniel) - rename to delete_old_pstore_file (Daniel) - convert G_REMOVE_SOURCE to FALSE (Daniel) * changes in v3) - use QIOChannel API (Stefan, Daniel) - add bound check for malcious guests