search for: 137,22

Displaying 7 results from an estimated 7 matches for "137,22".

Did you mean: 127,22
2005 Sep 06
3
Misbehavior with Dovecot and Mulberry
I'm having a bit of misbehavior wherein Dovecot seems to refuse to cooperate with my Mulberry MUA. By and large, everything works great. I can move mail back and forth happily. I can compose a note and copy the outgoing mail to my Dovecot "Sent" folder using my default Mulberry settings. But if I reply or forward a mail, I get a Mulberry error popup saying that it
2007 Mar 21
0
5 commits - README libswfdec/jpeg libswfdec/swfdec_image.c
...ose(file); + } +#endif + offset = dec->bits.ptr - dec->data; dec->data = realloc (dec->data, dec->data_len + len); diff --git a/libswfdec/swfdec_image.c b/libswfdec/swfdec_image.c index dc96fb6..79e353a 100644 --- a/libswfdec/swfdec_image.c +++ b/libswfdec/swfdec_image.c @@ -137,8 +137,22 @@ swfdec_image_jpeg_load (SwfdecImage *ima dec = jpeg_decoder_new (); - jpeg_decoder_addbits (dec, image->jpegtables->data, - image->jpegtables->length); + if (image->jpegtables) { + if (image->jpegtables->data[0] != 0xff || image->jpegtables->...
2009 Oct 27
0
[PATCH 1/4] Add 'raid' interface class
...3 100644 --- a/hw/scsi-disk.c +++ b/hw/scsi-disk.c @@ -41,6 +41,7 @@ do { fprintf(stderr, "scsi-disk: " fmt , ## __VA_ARGS__); } while (0) #define SCSI_DMA_BUF_SIZE 131072 #define SCSI_MAX_INQUIRY_LEN 256 +#define SCSI_SENSE_LEN 18 #define SCSI_REQ_STATUS_RETRY 0x01 @@ -136,6 +137,22 @@ static SCSIRequest *scsi_find_request(SCSIDiskState *s, uint32_t tag) return r; } +/* Helper function to build a sense block */ +int32_t scsi_build_sense(uint8_t *sense_buf, uint32_t sense) +{ + memset(sense_buf, 0, SCSI_SENSE_LEN); + if (!sense) + return 0; + + sense_b...
2009 Oct 27
0
[PATCH 1/4] Add 'raid' interface class
...3 100644 --- a/hw/scsi-disk.c +++ b/hw/scsi-disk.c @@ -41,6 +41,7 @@ do { fprintf(stderr, "scsi-disk: " fmt , ## __VA_ARGS__); } while (0) #define SCSI_DMA_BUF_SIZE 131072 #define SCSI_MAX_INQUIRY_LEN 256 +#define SCSI_SENSE_LEN 18 #define SCSI_REQ_STATUS_RETRY 0x01 @@ -136,6 +137,22 @@ static SCSIRequest *scsi_find_request(SCSIDiskState *s, uint32_t tag) return r; } +/* Helper function to build a sense block */ +int32_t scsi_build_sense(uint8_t *sense_buf, uint32_t sense) +{ + memset(sense_buf, 0, SCSI_SENSE_LEN); + if (!sense) + return 0; + + sense_b...
2012 Jul 05
14
[net-next RFC V5 0/5] Multiqueue virtio-net
...101% 2 64 3338.83 3379.97 101% 83.61 64.82 77% 4 64 6613.65 6619.11 100% 131.00 97.19 74% 8 64 6553.07 6418.31 97% 141.35 98.27 69% 1 256 3938.40 4068.52 103% 125.21 123.76 98% 2 256 9215.57 9210.88 99% 185.31 154.27 83% 4 256 9407.29 9008.13 95% 186.72 150.01 80% 8 256 9377.17 9385.57 100% 190.28 137.59 72% 1 512 7360.19 6984.80 94% 214.09 211.66 98% 2 512 9392.91 9401.88 100% 193.92 173.11 89% 4 512 9382.64 9394.34 100% 189.27 145.80 77% 8 512 9308.60 9094.08 97% 189.70 141.26 74% 1 1024 9153.26 9066.06 99% 223.07 219.95 98% 2 1024 9393.38 9398.43 100% 194.02 173.82 89% 4 1024 9395.92 8960.73...
2012 Jul 05
14
[net-next RFC V5 0/5] Multiqueue virtio-net
...101% 2 64 3338.83 3379.97 101% 83.61 64.82 77% 4 64 6613.65 6619.11 100% 131.00 97.19 74% 8 64 6553.07 6418.31 97% 141.35 98.27 69% 1 256 3938.40 4068.52 103% 125.21 123.76 98% 2 256 9215.57 9210.88 99% 185.31 154.27 83% 4 256 9407.29 9008.13 95% 186.72 150.01 80% 8 256 9377.17 9385.57 100% 190.28 137.59 72% 1 512 7360.19 6984.80 94% 214.09 211.66 98% 2 512 9392.91 9401.88 100% 193.92 173.11 89% 4 512 9382.64 9394.34 100% 189.27 145.80 77% 8 512 9308.60 9094.08 97% 189.70 141.26 74% 1 1024 9153.26 9066.06 99% 223.07 219.95 98% 2 1024 9393.38 9398.43 100% 194.02 173.82 89% 4 1024 9395.92 8960.73...
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...host => $uri->host, - output => $msg))); - } - - return $vol; -} - -sub _connect -{ - my ($host, $username, $path) = @_; + my $self = {}; + bless($self, $class); my ($stdin_read, $stdin_write); my ($stdout_read, $stdout_write); @@ -137,22 +44,8 @@ sub _connect my @command; push(@command, 'ssh'); push(@command, '-l', $username) if (defined($username)); - push(@command, $host); - - # Return the size of the remote path on the first line, followed by its - # contents. -...