CEPH filesystem development
 help / color / mirror / Atom feed
From: scan-admin@coverity.com
To: ceph-devel@vger.kernel.org
Subject: New Defects reported by Coverity Scan for ceph
Date: Thu, 19 Oct 2017 03:54:05 +0000 (UTC)	[thread overview]
Message-ID: <59e821dcc29cc_381740932c353a1@ss1435.mail> (raw)


Hi,

Please find the latest report on new defect(s) introduced to ceph found with Coverity Scan.

13 new defect(s) introduced to ceph found with Coverity Scan.
46 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 13 of 13 defect(s)


** CID 1419851:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/db/db_iter.cc: 136 in rocksdb::DBIter::DBIter(rocksdb::Env *, const rocksdb::ReadOptions &, const rocksdb::ImmutableCFOptions &, const rocksdb::Comparator *, rocksdb::InternalIterator *, unsigned long, bool, unsigned long, rocksdb::ReadCallback *, bool)()


________________________________________________________________________________________________________
*** CID 1419851:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/db/db_iter.cc: 136 in rocksdb::DBIter::DBIter(rocksdb::Env *, const rocksdb::ReadOptions &, const rocksdb::ImmutableCFOptions &, const rocksdb::Comparator *, rocksdb::InternalIterator *, unsigned long, bool, unsigned long, rocksdb::ReadCallback *, bool)()
130         if (pin_thru_lifetime_) {
131           pinned_iters_mgr_.StartPinning();
132         }
133         if (iter_) {
134           iter_->SetPinnedItersMgr(&pinned_iters_mgr_);
135         }
>>>     CID 1419851:  Uninitialized members  (UNINIT_CTOR)
>>>     Non-static class member "is_blob_" is not initialized in this constructor nor in any functions that it calls.
136       }
137       virtual ~DBIter() {
138         // Release pinned data if any
139         if (pinned_iters_mgr_.PinningEnabled()) {
140           pinned_iters_mgr_.ReleasePinnedData();
141         }

** CID 1419852:  Resource leaks  (CTOR_DTOR_LEAK)
/home/brad/working/src/ceph/src/rocksdb/db/compaction_job.cc: 276 in rocksdb::CompactionJob::CompactionJob(int, rocksdb::Compaction *, const rocksdb::ImmutableDBOptions &, rocksdb::EnvOptions, rocksdb::VersionSet *, const std::atomic<bool> *, rocksdb::LogBuffer *, rocksdb::Directory *, rocksdb::Directory *, rocksdb::Statistics *, rocksdb::InstrumentedMutex *, rocksdb::Status *, std::vector<unsigned long, std::allocator<unsigned long>>, unsigned long, const rocksdb::SnapshotChecker *, std::shared_ptr<rocksdb::Cache>, rocksdb::EventLogger *, bool, bool, const std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> &, rocksdb::CompactionJobStats *)()


________________________________________________________________________________________________________
*** CID 1419852:  Resource leaks  (CTOR_DTOR_LEAK)
/home/brad/working/src/ceph/src/rocksdb/db/compaction_job.cc: 276 in rocksdb::CompactionJob::CompactionJob(int, rocksdb::Compaction *, const rocksdb::ImmutableDBOptions &, rocksdb::EnvOptions, rocksdb::VersionSet *, const std::atomic<bool> *, rocksdb::LogBuffer *, rocksdb::Directory *, rocksdb::Directory *, rocksdb::Statistics *, rocksdb::InstrumentedMutex *, rocksdb::Status *, std::vector<unsigned long, std::allocator<unsigned long>>, unsigned long, const rocksdb::SnapshotChecker *, std::shared_ptr<rocksdb::Cache>, rocksdb::EventLogger *, bool, bool, const std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> &, rocksdb::CompactionJobStats *)()
270         std::vector<SequenceNumber> existing_snapshots,
271         SequenceNumber earliest_write_conflict_snapshot,
272         const SnapshotChecker* snapshot_checker, std::shared_ptr<Cache> table_cache,
273         EventLogger* event_logger, bool paranoid_file_checks, bool measure_io_stats,
274         const std::string& dbname, CompactionJobStats* compaction_job_stats)
275         : job_id_(job_id),
>>>     CID 1419852:  Resource leaks  (CTOR_DTOR_LEAK)
>>>     The constructor allocates field "compact_" of "rocksdb::CompactionJob" but the destructor and whatever functions it calls do not free it.
276           compact_(new CompactionState(compaction)),
277           compaction_job_stats_(compaction_job_stats),
278           compaction_stats_(1),
279           dbname_(dbname),
280           db_options_(db_options),
281           env_options_(env_options),

** CID 1419853:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/db/flush_job.cc: 93 in rocksdb::FlushJob::FlushJob(const std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> &, rocksdb::ColumnFamilyData *, const rocksdb::ImmutableDBOptions &, const rocksdb::MutableCFOptions &, rocksdb::EnvOptions, rocksdb::VersionSet *, rocksdb::InstrumentedMutex *, std::atomic<bool> *, std::vector<unsigned long, std::allocator<unsigned long>>, unsigned long, rocksdb::SnapshotChecker *, rocksdb::JobContext *, rocksdb::LogBuffer *, rocksdb::Directory *, rocksdb::Directory *, rocksdb::CompressionType, rocksdb::Statistics *, rocksdb::EventLogger *, bool)()


________________________________________________________________________________________________________
*** CID 1419853:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/db/flush_job.cc: 93 in rocksdb::FlushJob::FlushJob(const std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> &, rocksdb::ColumnFamilyData *, const rocksdb::ImmutableDBOptions &, const rocksdb::MutableCFOptions &, rocksdb::EnvOptions, rocksdb::VersionSet *, rocksdb::InstrumentedMutex *, std::atomic<bool> *, std::vector<unsigned long, std::allocator<unsigned long>>, unsigned long, rocksdb::SnapshotChecker *, rocksdb::JobContext *, rocksdb::LogBuffer *, rocksdb::Directory *, rocksdb::Directory *, rocksdb::CompressionType, rocksdb::Statistics *, rocksdb::EventLogger *, bool)()
87           event_logger_(event_logger),
88           measure_io_stats_(measure_io_stats),
89           pick_memtable_called(false) {
90       // Update the thread status to indicate flush.
91       ReportStartedFlush();
92       TEST_SYNC_POINT("FlushJob::FlushJob()");
>>>     CID 1419853:  Uninitialized members  (UNINIT_CTOR)
>>>     Non-static class member "base_" is not initialized in this constructor nor in any functions that it calls.
93     }
94     
95     FlushJob::~FlushJob() {
96       ThreadStatusUtil::ResetThreadStatus();
97     }
98     

** CID 1419854:    (RESOURCE_LEAK)
/home/brad/working/src/ceph/src/test/bufferlist.cc: 399 in TestRawPipe_buffer_list_write_fd_zero_copy_Test::TestBody()()
/home/brad/working/src/ceph/src/test/bufferlist.cc: 403 in TestRawPipe_buffer_list_write_fd_zero_copy_Test::TestBody()()


________________________________________________________________________________________________________
*** CID 1419854:    (RESOURCE_LEAK)
/home/brad/working/src/ceph/src/test/bufferlist.cc: 399 in TestRawPipe_buffer_list_write_fd_zero_copy_Test::TestBody()()
393     TEST_F(TestRawPipe, buffer_list_write_fd_zero_copy) {
394       ::unlink(FILENAME);
395       bufferlist bl;
396       EXPECT_EQ(0, bl.read_fd_zero_copy(fd, len));
397       EXPECT_TRUE(bl.can_zero_copy());
398       int out_fd = ::open(FILENAME, O_RDWR|O_CREAT|O_TRUNC, 0600);
>>>     CID 1419854:    (RESOURCE_LEAK)
>>>     Handle variable "out_fd" going out of scope leaks the handle.
399       ASSERT_NE(-1, out_fd);
400       EXPECT_EQ(0, bl.write_fd_zero_copy(out_fd));
401       struct stat st;
402       memset(&st, 0, sizeof(st));
403       ASSERT_EQ(0, ::stat(FILENAME, &st));
404       EXPECT_EQ(len, st.st_size);
/home/brad/working/src/ceph/src/test/bufferlist.cc: 403 in TestRawPipe_buffer_list_write_fd_zero_copy_Test::TestBody()()
397       EXPECT_TRUE(bl.can_zero_copy());
398       int out_fd = ::open(FILENAME, O_RDWR|O_CREAT|O_TRUNC, 0600);
399       ASSERT_NE(-1, out_fd);
400       EXPECT_EQ(0, bl.write_fd_zero_copy(out_fd));
401       struct stat st;
402       memset(&st, 0, sizeof(st));
>>>     CID 1419854:    (RESOURCE_LEAK)
>>>     Handle variable "out_fd" going out of scope leaks the handle.
403       ASSERT_EQ(0, ::stat(FILENAME, &st));
404       EXPECT_EQ(len, st.st_size);
405       char buf[len + 1];
406       EXPECT_EQ((int)len, safe_read(out_fd, buf, len + 1));
407       EXPECT_EQ(0, memcmp(buf, "ABC\n", len));
408       ::close(out_fd);

** CID 1419855:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/db/compaction_iterator.cc: 109 in rocksdb::CompactionIterator::CompactionIterator(rocksdb::InternalIterator *, const rocksdb::Comparator *, rocksdb::MergeHelper *, unsigned long, std::vector<unsigned long, std::allocator<unsigned long>> *, unsigned long, const rocksdb::SnapshotChecker *, rocksdb::Env *, bool, rocksdb::RangeDelAggregator *, std::unique_ptr<rocksdb::CompactionIterator::CompactionProxy, std::default_delete<rocksdb::CompactionIterator::CompactionProxy>>, const rocksdb::CompactionFilter *, rocksdb::CompactionEventListener *, const std::atomic<bool> *)()


________________________________________________________________________________________________________
*** CID 1419855:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/db/compaction_iterator.cc: 109 in rocksdb::CompactionIterator::CompactionIterator(rocksdb::InternalIterator *, const rocksdb::Comparator *, rocksdb::MergeHelper *, unsigned long, std::vector<unsigned long, std::allocator<unsigned long>> *, unsigned long, const rocksdb::SnapshotChecker *, rocksdb::Env *, bool, rocksdb::RangeDelAggregator *, std::unique_ptr<rocksdb::CompactionIterator::CompactionProxy, std::default_delete<rocksdb::CompactionIterator::CompactionProxy>>, const rocksdb::CompactionFilter *, rocksdb::CompactionEventListener *, const std::atomic<bool> *)()
103           ignore_snapshots_ = true;
104         }
105       } else {
106         ignore_snapshots_ = false;
107       }
108       input_->SetPinnedItersMgr(&pinned_iters_mgr_);
>>>     CID 1419855:  Uninitialized members  (UNINIT_CTOR)
>>>     Non-static class member "current_key_committed_" is not initialized in this constructor nor in any functions that it calls.
109     }
110     
111     CompactionIterator::~CompactionIterator() {
112       // input_ Iteartor lifetime is longer than pinned_iters_mgr_ lifetime
113       input_->SetPinnedItersMgr(nullptr);
114     }

** CID 1419856:  Resource leaks  (RESOURCE_LEAK)
/home/brad/working/src/ceph/src/test/bufferlist.cc: 2601 in BufferList_write_fd_offset_Test::TestBody()()


________________________________________________________________________________________________________
*** CID 1419856:  Resource leaks  (RESOURCE_LEAK)
/home/brad/working/src/ceph/src/test/bufferlist.cc: 2601 in BufferList_write_fd_offset_Test::TestBody()()
2595       ::unlink(FILENAME);
2596     }
2597     
2598     TEST(BufferList, write_fd_offset) {
2599       ::unlink(FILENAME);
2600       int fd = ::open(FILENAME, O_WRONLY|O_CREAT|O_TRUNC, 0600);
>>>     CID 1419856:  Resource leaks  (RESOURCE_LEAK)
>>>     Handle variable "fd" going out of scope leaks the handle.
2601       ASSERT_NE(-1, fd);
2602       bufferlist bl;
2603       for (unsigned i = 0; i < IOV_MAX * 2; i++) {
2604         bufferptr ptr("A", 1);
2605         bl.push_back(ptr);
2606       }

** CID 1419857:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/options/db_options.cc: 237 in rocksdb::MutableDBOptions::MutableDBOptions()()


________________________________________________________________________________________________________
*** CID 1419857:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/options/db_options.cc: 237 in rocksdb::MutableDBOptions::MutableDBOptions()()
231           max_background_compactions(-1),
232           avoid_flush_during_shutdown(false),
233           delayed_write_rate(2 * 1024U * 1024U),
234           max_total_wal_size(0),
235           delete_obsolete_files_period_micros(6ULL * 60 * 60 * 1000000),
236           stats_dump_period_sec(600),
>>>     CID 1419857:  Uninitialized members  (UNINIT_CTOR)
>>>     Non-static class member "wal_bytes_per_sync" is not initialized in this constructor nor in any functions that it calls.
237           max_open_files(-1) {}
238     
239     MutableDBOptions::MutableDBOptions(const DBOptions& options)
240         : max_background_jobs(options.max_background_jobs),
241           base_background_compactions(options.base_background_compactions),
242           max_background_compactions(options.max_background_compactions),

** CID 1419858:  Resource leaks  (RESOURCE_LEAK)
/home/brad/working/src/ceph/src/test/bufferlist.cc: 2583 in BufferList_write_fd_Test::TestBody()()


________________________________________________________________________________________________________
*** CID 1419858:  Resource leaks  (RESOURCE_LEAK)
/home/brad/working/src/ceph/src/test/bufferlist.cc: 2583 in BufferList_write_fd_Test::TestBody()()
2577       ::unlink(FILENAME);
2578     }
2579     
2580     TEST(BufferList, write_fd) {
2581       ::unlink(FILENAME);
2582       int fd = ::open(FILENAME, O_WRONLY|O_CREAT|O_TRUNC, 0600);
>>>     CID 1419858:  Resource leaks  (RESOURCE_LEAK)
>>>     Handle variable "fd" going out of scope leaks the handle.
2583       ASSERT_NE(-1, fd);
2584       bufferlist bl;
2585       for (unsigned i = 0; i < IOV_MAX * 2; i++) {
2586         bufferptr ptr("A", 1);
2587         bl.push_back(ptr);
2588       }

** CID 1419859:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/db/compaction_iterator.cc: 55 in rocksdb::CompactionIterator::CompactionIterator(rocksdb::InternalIterator *, const rocksdb::Comparator *, rocksdb::MergeHelper *, unsigned long, std::vector<unsigned long, std::allocator<unsigned long>> *, unsigned long, const rocksdb::SnapshotChecker *, rocksdb::Env *, bool, rocksdb::RangeDelAggregator *, const rocksdb::Compaction *, const rocksdb::CompactionFilter *, rocksdb::CompactionEventListener *, const std::atomic<bool> *)()


________________________________________________________________________________________________________
*** CID 1419859:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/db/compaction_iterator.cc: 55 in rocksdb::CompactionIterator::CompactionIterator(rocksdb::InternalIterator *, const rocksdb::Comparator *, rocksdb::MergeHelper *, unsigned long, std::vector<unsigned long, std::allocator<unsigned long>> *, unsigned long, const rocksdb::SnapshotChecker *, rocksdb::Env *, bool, rocksdb::RangeDelAggregator *, const rocksdb::Compaction *, const rocksdb::CompactionFilter *, rocksdb::CompactionEventListener *, const std::atomic<bool> *)()
49         : CompactionIterator(
50               input, cmp, merge_helper, last_sequence, snapshots,
51               earliest_write_conflict_snapshot, snapshot_checker, env,
52               expect_valid_internal_key, range_del_agg,
53               std::unique_ptr<CompactionProxy>(
54                   compaction ? new CompactionProxy(compaction) : nullptr),
>>>     CID 1419859:  Uninitialized members  (UNINIT_CTOR)
>>>     Non-static class member "current_key_committed_" is not initialized in this constructor nor in any functions that it calls.
55               compaction_filter, compaction_listener, shutting_down) {}
56     
57     CompactionIterator::CompactionIterator(
58         InternalIterator* input, const Comparator* cmp, MergeHelper* merge_helper,
59         SequenceNumber last_sequence, std::vector<SequenceNumber>* snapshots,
60         SequenceNumber earliest_write_conflict_snapshot,

** CID 1419860:  Resource leaks  (RESOURCE_LEAK)
/home/brad/working/src/ceph/src/test/bufferlist.cc: 2558 in BufferList_read_fd_Test::TestBody()()


________________________________________________________________________________________________________
*** CID 1419860:  Resource leaks  (RESOURCE_LEAK)
/home/brad/working/src/ceph/src/test/bufferlist.cc: 2558 in BufferList_read_fd_Test::TestBody()()
2552       snprintf(cmd, sizeof(cmd), "echo ABC > %s", FILENAME);
2553       EXPECT_EQ(0, ::system(cmd));
2554       int fd = -1;
2555       bufferlist bl;
2556       EXPECT_EQ(-EBADF, bl.read_fd(fd, len));
2557       fd = ::open(FILENAME, O_RDONLY);
>>>     CID 1419860:  Resource leaks  (RESOURCE_LEAK)
>>>     Handle variable "fd" going out of scope leaks the handle.
2558       ASSERT_NE(-1, fd);
2559       EXPECT_EQ(len, (unsigned)bl.read_fd(fd, len));
2560       //EXPECT_EQ(CEPH_BUFFER_APPEND_SIZE - len, bl.front().unused_tail_length());
2561       EXPECT_EQ(len, bl.length());
2562       ::close(fd);
2563       ::unlink(FILENAME);

** CID 1419861:  Program hangs  (SLEEP)


________________________________________________________________________________________________________
*** CID 1419861:  Program hangs  (SLEEP)
/home/brad/working/src/ceph/src/msg/async/AsyncConnection.cc: 2365 in AsyncConnection::DelayedDelivery::do_request(unsigned long)()
2359         m = delay_queue.front().second;
2360         string delay_msg_type = msgr->cct->_conf->ms_inject_delay_msg_type;
2361         utime_t now = ceph_clock_now();
2362         if ((release > now &&
2363             (delay_msg_type.empty() || m->get_type_name() == delay_msg_type))) {
2364           utime_t t = release - now;
>>>     CID 1419861:  Program hangs  (SLEEP)
>>>     Call to "sleep" might sleep while holding lock "this->delay_lock".
2365           t.sleep();
2366         }
2367         delay_queue.pop_front();
2368       }
2369       if (msgr->ms_can_fast_dispatch(m)) {
2370         dispatch_queue->fast_dispatch(m);

** CID 1419862:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/db/write_batch.cc: 940 in rocksdb::MemTableInserter::MemTableInserter(unsigned long, rocksdb::ColumnFamilyMemTables *, rocksdb::FlushScheduler *, bool, unsigned long, rocksdb::DB *, bool, bool *, bool)()


________________________________________________________________________________________________________
*** CID 1419862:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/db/write_batch.cc: 940 in rocksdb::MemTableInserter::MemTableInserter(unsigned long, rocksdb::ColumnFamilyMemTables *, rocksdb::FlushScheduler *, bool, unsigned long, rocksdb::DB *, bool, bool *, bool)()
934             seq_per_batch_(seq_per_batch),
935             // Write after commit currently uses one seq per key (instead of per
936             // batch). So seq_per_batch being false indicates write_after_commit
937             // approach.
938             write_after_commit_(!seq_per_batch) {
939         assert(cf_mems_);
>>>     CID 1419862:  Uninitialized members  (UNINIT_CTOR)
>>>     Non-static class member "rebuilding_trx_seq_" is not initialized in this constructor nor in any functions that it calls.
940       }
941     
942       ~MemTableInserter() {
943         if (post_info_created_) {
944           reinterpret_cast<MemPostInfoMap*>
945             (&mem_post_info_map_)->~MemPostInfoMap();

** CID 1419863:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/db/compaction_job.cc: 304 in rocksdb::CompactionJob::CompactionJob(int, rocksdb::Compaction *, const rocksdb::ImmutableDBOptions &, rocksdb::EnvOptions, rocksdb::VersionSet *, const std::atomic<bool> *, rocksdb::LogBuffer *, rocksdb::Directory *, rocksdb::Directory *, rocksdb::Statistics *, rocksdb::InstrumentedMutex *, rocksdb::Status *, std::vector<unsigned long, std::allocator<unsigned long>>, unsigned long, const rocksdb::SnapshotChecker *, std::shared_ptr<rocksdb::Cache>, rocksdb::EventLogger *, bool, bool, const std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> &, rocksdb::CompactionJobStats *)()


________________________________________________________________________________________________________
*** CID 1419863:  Uninitialized members  (UNINIT_CTOR)
/home/brad/working/src/ceph/src/rocksdb/db/compaction_job.cc: 304 in rocksdb::CompactionJob::CompactionJob(int, rocksdb::Compaction *, const rocksdb::ImmutableDBOptions &, rocksdb::EnvOptions, rocksdb::VersionSet *, const std::atomic<bool> *, rocksdb::LogBuffer *, rocksdb::Directory *, rocksdb::Directory *, rocksdb::Statistics *, rocksdb::InstrumentedMutex *, rocksdb::Status *, std::vector<unsigned long, std::allocator<unsigned long>>, unsigned long, const rocksdb::SnapshotChecker *, std::shared_ptr<rocksdb::Cache>, rocksdb::EventLogger *, bool, bool, const std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> &, rocksdb::CompactionJobStats *)()
298       assert(log_buffer_ != nullptr);
299       const auto* cfd = compact_->compaction->column_family_data();
300       ThreadStatusUtil::SetColumnFamily(cfd, cfd->ioptions()->env,
301                                         db_options_.enable_thread_tracking);
302       ThreadStatusUtil::SetThreadOperation(ThreadStatus::OP_COMPACTION);
303       ReportStartedCompaction(compaction);
>>>     CID 1419863:  Uninitialized members  (UNINIT_CTOR)
>>>     Non-static class member "bottommost_level_" is not initialized in this constructor nor in any functions that it calls.
304     }
305     
306     CompactionJob::~CompactionJob() {
307       assert(compact_ == nullptr);
308       ThreadStatusUtil::ResetThreadStatus();
309     }


________________________________________________________________________________________________________
To view the defects in Coverity Scan visit, https://u2389337.ct.sendgrid.net/wf/click?upn=08onrYu34A-2BWcWUl-2F-2BfV0V05UPxvVjWch-2Bd2MGckcRaGCnxtQO9E3gxlB2GxVsWFENryh7bC5hIb-2FQBVM85YLQ-3D-3D_2sw0G7ICm9mxCh1lYW1t9y1lfDrIerWzLwB67LZ-2Bn8FFh10-2Fdq40-2FWwGIRvgJ7TlLS-2BzCkoP-2B9IdIBkJe92VJ1veYttNj8klI71oFxLvavCx0uov3kXkhI1AyrSWdLJv9k5AAtKbKM-2BiRB1ieGKg7btdOyyq-2FOgJNZM67lM-2BzWwOhQBD2HkpBVstDN3IrZqE1qI6M2IbxnDxFA5C8ZZbvz7GMHeDMp-2F3uF9gyfIIeww-3D

To manage Coverity Scan email notifications for "ceph-devel@vger.kernel.org", click https://u2389337.ct.sendgrid.net/wf/click?upn=08onrYu34A-2BWcWUl-2F-2BfV0V05UPxvVjWch-2Bd2MGckcRbVDbis712qZDP-2FA8y06Nq4Bco8jcmzhh7FSyvoR0E3-2BDgRcBCQ6OuthHBtaTCGNq9OVG2ZVnjrgThgf5hX3GVEkIxvBX-2BorwRZfOftSp7HPfCifRGGak1MlgNFVd3IIPA-3D_2sw0G7ICm9mxCh1lYW1t9y1lfDrIerWzLwB67LZ-2Bn8FFh10-2Fdq40-2FWwGIRvgJ7TlLS-2BzCkoP-2B9IdIBkJe92VJ8prbWzhKpt7jaAFGauPdv5fKXbonHjHe4du8Xynypzbsx-2F2NPNh2Bj0M7bDtrpnv-2FqneozwfUwlmeSB0Tv-2BojqrkO1d6yHof2L-2BeKTyM7HLC-2BvQvW73n1eKcp0YrqMGoFamb8P4xSc3O-2Bt60coZcBY-3D


             reply	other threads:[~2017-10-19  3:54 UTC|newest]

Thread overview: 124+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-19  3:54 scan-admin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-08-20 12:22 New Defects reported by Coverity Scan for ceph scan-admin
2022-08-20 13:17 ` Jeff Layton
2022-08-22  3:54   ` Brad Hubbard
2022-08-23 12:52     ` Jeff Layton
2018-01-04  3:32 scan-admin
2017-12-28  1:57 scan-admin
2017-12-21  1:54 scan-admin
2017-12-21  3:34 ` Jos Collin
2017-12-21  4:03   ` Brad Hubbard
2017-12-14  6:49 scan-admin
2017-12-01  2:25 scan-admin
2017-11-23  0:19 scan-admin
2017-11-16 11:35 scan-admin
2017-11-09 11:36 scan-admin
2017-11-02  2:11 scan-admin
2017-10-27  0:31 scan-admin
2017-10-12  5:54 scan-admin
2017-10-05  5:08 scan-admin
2017-09-28  5:09 scan-admin
2017-09-21  6:44 scan-admin
2017-09-14  7:19 scan-admin
2017-09-07  5:08 scan-admin
2017-08-31  6:39 scan-admin
2017-08-24 23:32 scan-admin
2017-08-17  3:29 scan-admin
2017-08-10  3:50 scan-admin
2017-08-03  4:57 scan-admin
2017-07-27  3:50 scan-admin
2017-07-28 18:42 ` Gregory Farnum
2017-07-28 22:22   ` Brad Hubbard
2017-07-20  4:08 scan-admin
2017-07-13  5:11 scan-admin
2017-07-06  5:03 scan-admin
2017-06-29  4:08 scan-admin
2017-06-22  4:27 scan-admin
2017-06-15  9:50 scan-admin
2017-06-11 23:46 scan-admin
2017-06-01  4:33 scan-admin
2017-05-25  6:22 scan-admin
2017-05-18  1:44 scan-admin
2017-05-11  5:32 scan-admin
2017-05-04  2:45 scan-admin
2017-04-27  2:22 scan-admin
2017-04-20  5:34 scan-admin
2017-04-13  6:25 scan-admin
2017-04-06  9:40 scan-admin
2017-03-31  1:25 scan-admin
2017-03-23  7:58 scan-admin
2017-03-16  7:37 scan-admin
2017-03-09  6:12 scan-admin
2017-03-02  7:44 scan-admin
2017-02-23  9:09 scan-admin
2017-02-17  2:29 scan-admin
     [not found] ` <CAJE9aOMoxWjhq=g+25hfhMhxSCnHAOwAyNhXvkxS1wwBEd3j+A@mail.gmail.com>
2017-02-17  5:19   ` kefu chai
2017-02-05 10:08 scan-admin
2017-01-27 13:22 scan-admin
2017-01-17  3:01 scan-admin
2017-01-09 10:05 scan-admin
2016-12-30  8:33 scan-admin
2016-12-23  9:16 scan-admin
2016-12-16  8:54 scan-admin
2016-12-09 11:29 scan-admin
2016-12-02 11:08 scan-admin
2016-11-25  7:55 scan-admin
2016-03-19 17:58 scan-admin
2016-03-13 17:40 scan-admin
2016-03-12 18:04 scan-admin
2016-03-05 17:55 scan-admin
2016-03-07 20:59 ` Gregory Farnum
2016-02-27 18:07 scan-admin
2016-02-20 18:26 scan-admin
2016-02-18 20:32 scan-admin
2016-02-13 17:47 scan-admin
2016-02-11 17:57 scan-admin
2016-02-11 22:01 ` Gregory Farnum
2016-02-12 16:36   ` Adam C. Emerson
2016-02-04 20:39 scan-admin
2016-02-03 20:40 scan-admin
2015-05-02 14:37 scan-admin
2015-01-21  1:41 scan-admin
2015-01-16 14:39 scan-admin
2015-01-16 15:17 ` Gregory Farnum
2015-01-16 16:00   ` John Spray
2015-01-16 16:08   ` Sage Weil
     [not found] <54b528bef1f63_1b74f3532c63410@scan.coverity.com.mail>
2015-01-13 14:34 ` Sage Weil
2015-01-13 14:16 scan-admin
2015-01-10 14:36 scan-admin
2015-01-10 15:48 ` Haomai Wang
2015-01-09 14:30 scan-admin
2015-01-09 15:26 ` Sage Weil
2015-01-09 15:32   ` Danny Al-Gaaf
2015-01-04 14:14 scan-admin
2014-12-27 14:13 scan-admin
2014-12-28  6:03 ` Sage Weil
2014-12-26 14:19 scan-admin
2014-12-23 14:37 scan-admin
2014-12-21 14:13 scan-admin
2014-12-18 14:19 scan-admin
2014-12-14 14:17 scan-admin
2014-12-07 20:36 scan-admin
2014-12-05 14:11 scan-admin
2014-12-02 14:09 scan-admin
2014-11-25 14:09 scan-admin
2014-11-23 14:08 scan-admin
2014-11-20 14:20 scan-admin
2014-11-14 14:21 scan-admin
2014-11-13 14:21 scan-admin
2014-11-11 20:40 scan-admin
2014-11-09 14:12 scan-admin
2014-10-30 13:19 scan-admin
2014-10-30 16:08 ` Sage Weil
2014-10-28 13:16 scan-admin
2014-10-28 18:26 ` Danny Al-Gaaf
2014-10-26 13:17 scan-admin
2014-10-24 17:55 scan-admin
2014-10-24 17:59 ` Sage Weil
2014-10-17 13:27 scan-admin
2014-10-09 13:23 scan-admin
2014-10-02 13:21 scan-admin
2014-09-25 13:18 scan-admin
2014-09-16 21:40 scan-admin
2014-08-16 21:31 scan-admin
2014-08-09 15:30 scan-admin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=59e821dcc29cc_381740932c353a1@ss1435.mail \
    --to=scan-admin@coverity.com \
    --cc=ceph-devel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox